/* WANDERHAWAII - FRED'S COUSIN STYLE */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sunset-red: #FF4E50;
    --sunset-orange: #FC913A;
    --sunset-yellow: #F9D423;
    --beach-sand: #FFE5B4;
    --palm-green: #2ECC71;
    --sky-blue: #3498DB;
    --deep-purple: #8B4789;
    --white: #FFFFFF;
    --dark: #2C3E50;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: linear-gradient(180deg, #FDB99B 0%, #F9D423 30%, #FC913A 60%, #FF4E50 100%);
    min-height: 100vh;
}

/* ===== ROTATING BACKGROUND IMAGES ===== */
.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.bg-slide.active {
    opacity: 1;
}

.bg-slide:nth-child(1) { background-image: url('https://cdn.filestackcontent.com/hKSwAu3TTN68DPTl0sdz'); } /* Manta Ray Sunset */
.bg-slide:nth-child(2) { background-image: url('https://cdn.filestackcontent.com/oroTk75fSlywq5xG2GZq'); } /* Snorkel Sail */
.bg-slide:nth-child(3) { background-image: url('https://cdn.filestackcontent.com/mG3nBVaRD6MCJROqcS5A'); } /* Volcano */
.bg-slide:nth-child(4) { background-image: url('https://cdn.filestackcontent.com/uoa7multR022xrCyagWz'); } /* Manta Dive */
.bg-slide:nth-child(5) { background-image: url('https://cdn.filestackcontent.com/D9WDnEUCQ12DtOwCtEmQ'); } /* Dolphin */
.bg-slide:nth-child(6) { background-image: url('https://cdn.filestackcontent.com/aG3xnD8yTfKQE9WIrE37'); } /* Boat Charter */
.bg-slide:nth-child(7) { background-image: url('https://cdn.filestackcontent.com/93lMtiLfQtiuZL2Wpw4s'); } /* Kayak */
.bg-slide:nth-child(8) { background-image: url('https://cdn.filestackcontent.com/Vxwa6d5jQ8GE3L8ndzMQ'); } /* Zipline */

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.25) 40%,
        rgba(252,145,58,0.6) 70%,
        rgba(252,145,58,0.95) 100%
    );
    z-index: 1;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.98);
    padding: 1rem 2rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    border-bottom: 5px solid var(--sunset-orange);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    text-decoration: none;
}

.logo {
    font-family: 'Passion One', cursive;
    font-size: 2.2rem;
    color: var(--sunset-orange);
    text-shadow: 2px 2px 0px var(--sunset-red), 4px 4px 0px var(--sunset-yellow);
    line-height: 1;
}

.slogan {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--sunset-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--sunset-red);
}

.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    z-index: 10;
    padding: 180px 2rem 100px;
    text-align: center;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-logo {
    font-family: 'Passion One', cursive;
    font-size: 6rem;
    color: var(--white);
    text-shadow: 4px 4px 0px var(--sunset-red), 8px 8px 0px var(--sunset-orange);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero .subtitle {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ===== SEARCH BOX ===== */
.search-container {
    max-width: 850px;
    margin: 0 auto;
}

.search-box {
    background: var(--white);
    border-radius: 60px;
    padding: 1.2rem 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 5px solid var(--sunset-yellow);
    align-items: center;
}

.search-box input {
    flex: 1;
    border: none;
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    font-weight: 600;
}

.search-box input::placeholder {
    color: #999;
}

.search-box button {
    background: linear-gradient(135deg, var(--sunset-red), var(--deep-purple));
    color: var(--white);
    border: none;
    padding: 1.3rem 3rem;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255,78,80,0.4);
    transition: all 0.3s;
}

.search-box button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255,78,80,0.5);
}

/* ===== CAROUSEL - 90 SECONDS ===== */
.carousel-container {
    margin-top: 2.5rem;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.carousel-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: carousel-scroll 90s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes carousel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-pill {
    background: rgba(255,255,255,0.95);
    padding: 1rem 2rem;
    border-radius: 60px;
    font-weight: 900;
    font-size: 1rem;
    border: 4px solid var(--sunset-yellow);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.carousel-pill:hover {
    background: var(--sunset-red);
    color: var(--white);
    border-color: var(--sunset-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,78,80,0.4);
}

/* ===== FILTERS ===== */
.filters-section {
    position: relative;
    z-index: 10;
    background: var(--white);
    padding: 2rem;
    margin: 0 2rem;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    border: 5px solid var(--sunset-orange);
}

.filters-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.filter-group label {
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark);
    letter-spacing: 1px;
}

.filter-group select {
    padding: 0.8rem 1.5rem;
    border: 4px solid var(--sunset-orange);
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    min-width: 160px;
    outline: none;
    background: var(--white);
}

.filter-group select:focus {
    border-color: var(--sunset-red);
}

.clear-btn {
    background: var(--sunset-red);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s;
}

.clear-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,78,80,0.4);
}

/* ===== TOURS SECTION - SUNSET GRADIENT BACKGROUND ===== */
.featured-section {
    position: relative;
    z-index: 10;
    padding: 4rem 2rem;
    background: transparent;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 2.5rem;
}

.section-header h2 {
    font-family: 'Passion One', cursive;
    font-size: 3rem;
    color: var(--white);
    text-shadow: 3px 3px 0px var(--sunset-red);
}

.section-header p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.shuffle-btn {
    background: var(--white);
    color: var(--sunset-red);
    border: 4px solid var(--sunset-yellow);
    padding: 1rem 2rem;
    border-radius: 60px;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.shuffle-btn:hover {
    transform: scale(1.05);
    background: var(--sunset-yellow);
}

/* ===== TOUR CARDS WITH YELLOW BORDER ===== */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tour-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.4s;
    border: 5px solid var(--sunset-yellow);
}

.tour-card:hover {
    transform: translateY(-12px) rotate(-1deg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    border-color: var(--sunset-red);
}

.tour-image {
    height: 250px;
    background: linear-gradient(135deg, var(--sunset-red), var(--sunset-orange), var(--sunset-yellow));
    position: relative;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    padding: 0.6rem 1.2rem;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid var(--white);
}

.tour-badge.hot { background: var(--sunset-red); }
.tour-badge.top { background: var(--deep-purple); }
.tour-badge.popular { background: var(--palm-green); }
.tour-badge.vip { background: linear-gradient(135deg, #f1c40f, #e67e22); }

.tour-price {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    background: rgba(0,0,0,0.85);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.1rem;
}

.tour-content {
    padding: 1.8rem;
}

.tour-island {
    display: inline-block;
    background: var(--sunset-yellow);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-content h3 {
    font-family: 'Passion One', cursive;
    font-size: 1.7rem;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.tour-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.tour-tag {
    background: var(--beach-sand);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark);
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-info {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.book-btn {
    background: linear-gradient(135deg, var(--palm-green), var(--sky-blue));
    color: var(--white);
    border: none;
    padding: 1rem 1.8rem;
    border-radius: 60px;
    font-weight: 900;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.book-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(46,204,113,0.4);
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 25px;
    border: 5px solid var(--sunset-orange);
}

.no-results h3 {
    font-family: 'Passion One', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.suggestion-pill {
    background: var(--white);
    border: 3px solid var(--sunset-orange);
    padding: 0.6rem 1.5rem;
    border-radius: 60px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.suggestion-pill:hover {
    background: var(--sunset-orange);
    color: var(--white);
}

/* Load More */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    background: var(--white);
    color: var(--sunset-red);
    border: 5px solid var(--sunset-yellow);
    padding: 1.2rem 4rem;
    border-radius: 60px;
    font-size: 1.3rem;
    font-weight: 900;
    cursor: pointer;
    font-family: 'Passion One', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.load-more-btn:hover {
    transform: scale(1.05);
    background: var(--sunset-yellow);
}

/* ===== ISLANDS SECTION ===== */
.islands-section {
    position: relative;
    z-index: 10;
    padding: 4rem 2rem;
    background: transparent;
}

.islands-section .section-header {
    justify-content: center;
    margin-bottom: 2.5rem;
}

.islands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.island-card {
    position: relative;
    height: 300px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border: 5px solid var(--sunset-yellow);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: all 0.4s;
}

.island-card[data-island="Oahu"] { background-image: url('https://images.unsplash.com/photo-1507876466758-bc54f384809c?w=600&q=80'); }
.island-card[data-island="Maui"] { background-image: url('https://images.unsplash.com/photo-1542259009477-d625272157b7?w=600&q=80'); }
.island-card[data-island="Big Island"] { background-image: url('https://images.unsplash.com/photo-1547483238-2cbf881a559f?w=600&q=80'); }
.island-card[data-island="Kauai"] { background-image: url('https://images.unsplash.com/photo-1505852679233-d9fd70aff56d?w=600&q=80'); }

.island-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: var(--sunset-red);
}

.island-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
}

.island-content {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    color: var(--white);
}

.island-content h3 {
    font-family: 'Passion One', cursive;
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.island-count { font-weight: 900; font-size: 1.1rem; }
.island-desc { font-size: 0.9rem; opacity: 0.9; }

/* ===== WHY SECTION ===== */
.why-section {
    position: relative;
    z-index: 10;
    padding: 4rem 2rem;
    background: transparent;
}

.why-section .section-header { justify-content: center; margin-bottom: 2.5rem; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 25px;
    border: 5px solid var(--sunset-yellow);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--sunset-red);
}

.why-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.why-card h3 { font-family: 'Passion One', cursive; font-size: 1.8rem; margin-bottom: 0.5rem; color: var(--dark); text-transform: uppercase; }
.why-card p { color: #666; font-size: 1rem; line-height: 1.5; font-weight: 600; }

/* ===== EMAIL SECTION ===== */
.email-section {
    position: relative;
    z-index: 10;
    background: var(--white);
    padding: 4rem 2rem;
    margin: 2rem;
    border-radius: 30px;
    border: 5px solid var(--sunset-orange);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.email-container h2 { font-family: 'Passion One', cursive; font-size: 3rem; color: var(--sunset-red); margin-bottom: 0.5rem; text-transform: uppercase; }
.email-container > p { color: var(--dark); margin-bottom: 2rem; font-size: 1.2rem; font-weight: 700; }

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 550px;
    margin: 0 auto;
}

.email-form input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: 4px solid var(--sunset-orange);
    border-radius: 60px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    outline: none;
}

.email-form button {
    background: linear-gradient(135deg, var(--sunset-red), var(--deep-purple));
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 60px;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    position: relative;
    z-index: 10;
    padding: 4rem 2rem;
    background: transparent;
}

.faq-section .section-header { justify-content: center; margin-bottom: 2rem; }
.faq-grid { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 4px solid var(--sunset-yellow);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item:hover { border-color: var(--sunset-orange); }
.faq-item summary { padding: 1.5rem 2rem; font-weight: 900; font-size: 1.1rem; cursor: pointer; list-style: none; }
.faq-item summary::after { content: '+'; float: right; font-size: 1.8rem; color: var(--sunset-orange); font-weight: 900; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 2rem 1.5rem; color: #666; line-height: 1.7; font-weight: 600; }

/* ===== NOTIFICATION ===== */
.notification {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    padding: 1.2rem 1.8rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 380px;
    border: 4px solid var(--sunset-orange);
    transition: all 0.4s ease;
}

.notification-icon { font-size: 2.5rem; }
.notification-text { font-size: 1rem; font-weight: 600; }
.notification-name { color: var(--sunset-red); font-weight: 900; }

/* ===== FOOTER ===== */
footer {
    position: relative;
    z-index: 10;
    background: var(--dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-section h3 { font-family: 'Passion One', cursive; font-size: 2rem; color: var(--sunset-orange); margin-bottom: 1rem; }
.footer-section h4 { font-weight: 900; margin-bottom: 1rem; text-transform: uppercase; font-size: 1rem; letter-spacing: 1px; }
.footer-section p { font-size: 1rem; line-height: 1.6; opacity: 0.9; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.6rem; }
.footer-section ul a { color: var(--white); text-decoration: none; font-size: 1rem; opacity: 0.8; font-weight: 600; }
.footer-section ul a:hover { opacity: 1; color: var(--sunset-orange); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.95rem; opacity: 0.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Header */
    header {
        padding: 0.8rem 1rem;
    }
    .logo {
        font-size: 1.6rem;
    }
    .slogan {
        font-size: 0.55rem;
    }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    
    /* Hero */
    .hero {
        padding: 120px 1rem 60px;
        min-height: 80vh;
        width: 100%;
        overflow: hidden;
    }
    .hero-logo { 
        font-size: 2.8rem; 
        text-shadow: 2px 2px 0px var(--sunset-red), 4px 4px 0px var(--sunset-orange);
    }
    .hero .subtitle { 
        font-size: 1rem; 
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }
    
    /* Search - FIX OVERFLOW */
    .search-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    .search-box { 
        flex-direction: column; 
        border-radius: 20px; 
        padding: 1rem;
        border-width: 3px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .search-box input { 
        text-align: center; 
        font-size: 1rem;
        padding: 0.8rem;
        width: 100%;
    }
    .search-box button { 
        width: 100%; 
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Carousel - FIX OVERFLOW */
    .carousel-container {
        margin-top: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .carousel-pill {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Filters */
    .filters-section { 
        padding: 1rem;
        width: 100%;
        overflow: hidden;
    }
    .filters-container { 
        flex-direction: column; 
        align-items: stretch;
        gap: 0.8rem;
        width: 100%;
    }
    .filter-group {
        width: 100%;
    }
    .filter-group select { 
        width: 100%; 
    }
    .clear-btn {
        width: 100%;
    }
    
    /* Tours */
    .featured-section {
        padding: 1.5rem 1rem;
        overflow: hidden;
    }
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .tours-grid { 
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .tour-card {
        border-radius: 15px;
    }
    .tour-image {
        height: 200px;
    }
    .tour-content h3 {
        font-size: 1.3rem;
    }
    
    /* Islands */
    .islands-section {
        padding: 2rem 1rem;
        overflow: hidden;
    }
    .islands-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .island-card {
        height: 200px;
    }
    
    /* Why section */
    .why-section {
        padding: 2rem 1rem;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .why-card {
        padding: 1.2rem;
    }
    .why-icon {
        font-size: 2rem;
    }
    .why-card h3 {
        font-size: 1.1rem;
    }
    .why-card p {
        font-size: 0.8rem;
    }
    
    /* Email */
    .email-section {
        padding: 2rem 1rem;
    }
    .email-container h2 {
        font-size: 1.8rem;
    }
    .email-form { 
        flex-direction: column;
        gap: 0.5rem;
    }
    .email-form input,
    .email-form button {
        width: 100%;
    }
    
    /* FAQ */
    .faq-section {
        padding: 2rem 1rem;
    }
    .faq-item summary {
        font-size: 0.9rem;
        padding: 1rem;
    }
    .faq-item p {
        font-size: 0.85rem;
        padding: 0 1rem 1rem;
    }
    
    /* Notification */
    .notification { 
        left: 0.5rem; 
        right: 0.5rem; 
        max-width: none;
        padding: 0.8rem 1rem;
    }
    .notification-icon {
        font-size: 1.5rem;
    }
    .notification-text {
        font-size: 0.8rem;
    }
    
    /* Footer */
    footer {
        padding: 2rem 1rem 1rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .hero-logo {
        font-size: 2.2rem;
    }
    .hero .subtitle {
        font-size: 0.9rem;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
}
