/* =====================================================
   HOMEPAGE SECTIONS — Premium Travel Agency Redesign
   ===================================================== */

/* ─── Section Shared ─── */
.section-cta-row {
    text-align: center;
    margin-top: 3rem;
}
.section-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), #0284c7);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 24px rgba(14,165,233,0.3);
}
.section-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(14,165,233,0.4); }
.section-cta-btn--outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}
.section-cta-btn--outline:hover { background: var(--primary); color: #fff; }

/* ─── Why Us ─── */
.why-us-section {
    padding: 50px 5%;
    background: var(--background);
}
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}
.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #e8f0f7;
    box-shadow: 0 4px 20px rgba(14,165,233,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(14,165,233,0.14); }
.why-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--primary);
}
.why-icon i { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text); }
.why-card p { font-size: 0.9rem; color: #64748b; line-height: 1.6; }

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}
.stat-pill {
    background: #fff;
    border: 1px solid #e0f2fe;
    border-radius: 16px;
    padding: 0.6rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    box-shadow: 0 2px 12px rgba(14,165,233,0.08);
}
.stat-num { font-size: 1.15rem; font-weight: 800; color: var(--primary); font-family: var(--font-heading); }
.stat-lbl { font-size: 0.75rem; font-weight: 600; color: #64748b; }

@media (min-width: 560px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 600px) {
    .stats-row {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .stat-pill {
        border-radius: 999px;
        padding: 0.7rem 1.8rem;
        flex-direction: row;
        text-align: left;
        gap: 0.6rem;
    }
    .stat-num { font-size: 1.35rem; }
    .stat-lbl { font-size: 0.82rem; }
}

@media (min-width: 900px) {
    .why-us-section {
        padding: 90px 5%;
    }
    .why-us-grid {
        grid-template-columns: repeat(4, 1fr);
        margin: 3rem 0 2.5rem;
    }
}

/* ─── Packages Section ─── */
.packages-section { padding: 90px 5%; background: #fff; }

.pkg-filter-tabs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 1.5rem;
    justify-content: flex-start;
    padding: 0.25rem 1.5rem 0.75rem 1.5rem;
    margin: 0 -1.5rem;
}
.pkg-filter-tabs::-webkit-scrollbar {
    display: none;
}
.pkg-filter-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.8rem; font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.pkg-filter-btn i { width: 14px; height: 14px; }
.pkg-filter-btn:hover { border-color: var(--primary); color: var(--primary); background: #f0f9ff; }
.pkg-filter-btn.active {
    background: linear-gradient(135deg, var(--primary), #0284c7);
    color: #fff; border-color: transparent;
    box-shadow: 0 6px 18px rgba(14,165,233,0.3);
}

@media (min-width: 768px) {
    .pkg-filter-tabs {
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
        padding: 0;
        width: auto;
        margin-left: 0;
        overflow-x: visible;
        margin: 0 0 2.5rem 0;
    }
    .pkg-filter-btn {
        padding: 0.6rem 1.3rem;
        font-size: 0.88rem;
    }
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.pkg-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1px solid #f1f5f9;
    transition: transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275), box-shadow 0.35s ease;
    background: #fff;
}
.pkg-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); border-color: var(--primary); }
.pkg-card-link { display: block; text-decoration: none; color: inherit; height: 100%; }
.pkg-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.pkg-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pkg-card:hover .pkg-card-img img { transform: scale(1.08); }
.pkg-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.55) 100%);
}
.pkg-category-badge {
    position: absolute; top: 14px; right: 14px; left: auto;
    background: var(--accent); color: #fff;
    padding: 0.28rem 0.85rem; border-radius: 999px;
    font-size: 0.75rem; font-weight: 700; text-transform: capitalize;
}
.pkg-duration-badge {
    position: absolute; bottom: 14px; right: 14px;
    background: rgba(0,0,0,0.55); color: #fff;
    padding: 0.28rem 0.75rem; border-radius: 999px;
    font-size: 0.75rem; font-weight: 600;
    display: flex; align-items: center; gap: 4px;
    backdrop-filter: blur(6px);
}
.pkg-card-body { padding: 1.4rem 1.5rem 1.2rem; }
.pkg-location {
    font-size: 0.82rem; color: var(--primary); font-weight: 600;
    display: flex; align-items: center; gap: 4px; margin-bottom: 0.5rem;
}
.pkg-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.35; color: var(--text); }
.pkg-highlights {
    display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1rem;
}
.pkg-highlights span {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.74rem; color: #64748b; font-weight: 500;
    background: #f1f5f9; padding: 0.2rem 0.6rem; border-radius: 999px;
}
.pkg-highlights i { color: #22c55e; }
.pkg-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; }
.pkg-pricing { display: flex; align-items: baseline; gap: 0.4rem; }
.pkg-old-price { font-size: 0.85rem; color: #94a3b8; text-decoration: line-through; }
.pkg-new-price { font-size: 1.3rem; font-weight: 800; color: var(--text); }
.pkg-per { font-size: 0.75rem; color: #94a3b8; }
.pkg-view-btn {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.82rem; font-weight: 700;
    color: var(--primary);
    background: #f0f9ff;
    padding: 0.45rem 1rem; border-radius: 999px;
    transition: all 0.2s;
}
.pkg-card:hover .pkg-view-btn { background: var(--primary); color: #fff; }

@media (max-width: 1024px) { .packages-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .packages-grid { grid-template-columns: 1fr; } }

/* ─── Activities Section ─── */
.activities-section {
    padding: 90px 5%;
    background: linear-gradient(180deg, #f0f9ff 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.activities-bg-accent {
    position: absolute; top: -80px; right: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.act-filter-tabs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 1.5rem;
    justify-content: flex-start;
    padding: 0.25rem 1.5rem 0.75rem 1.5rem;
    margin: 0 -1.5rem;
}
.act-filter-tabs::-webkit-scrollbar {
    display: none;
}
.act-filter-btn {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    font-size: 0.8rem; font-weight: 600;
    cursor: pointer;
    transition: all 0.22s ease;
    flex-shrink: 0;
}
.act-filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.act-filter-btn.active {
    background: linear-gradient(135deg, var(--accent), #fb923c);
    color: #fff; border-color: transparent;
    box-shadow: 0 6px 18px rgba(249,115,22,0.28);
}

@media (min-width: 768px) {
    .act-filter-tabs {
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
        padding: 0;
        width: auto;
        margin-left: 0;
        overflow-x: visible;
        margin: 0 0 2.5rem 0;
    }
    .act-filter-btn {
        padding: 0.5rem 1.1rem;
        font-size: 0.85rem;
    }
}
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.act-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.act-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(0,0,0,0.11); }
.act-card-link { display: block; text-decoration: none; color: inherit; }
.act-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.act-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.act-card:hover .act-card-img img { transform: scale(1.07); }
.act-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5) 100%);
}
.act-type-pill {
    position: absolute; top: 12px; right: 12px; left: auto;
    background: rgba(249,115,22,0.9); color: #fff;
    padding: 0.22rem 0.7rem; border-radius: 999px;
    font-size: 0.72rem; font-weight: 700;
    display: flex; align-items: center; gap: 3px;
    text-transform: capitalize;
    backdrop-filter: blur(4px);
}
.act-card-body { padding: 1.1rem 1.25rem 1rem; }
.act-meta {
    display: flex; gap: 0.75rem; margin-bottom: 0.5rem;
}
.act-duration, .act-location {
    display: flex; align-items: center; gap: 4px;
    font-size: 0.76rem; color: #64748b; font-weight: 500;
}
.act-title { font-size: 0.98rem; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; line-height: 1.35; }
.act-card-footer { display: flex; align-items: center; justify-content: space-between; }
.act-price { display: flex; align-items: baseline; gap: 0.3rem; }
.act-old { font-size: 0.78rem; color: #94a3b8; text-decoration: line-through; }
.act-new { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.act-per { font-size: 0.72rem; color: #94a3b8; }
.act-book-btn {
    font-size: 0.78rem; font-weight: 700;
    background: linear-gradient(135deg, var(--accent), #fb923c);
    color: #fff;
    padding: 0.4rem 0.9rem; border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(249,115,22,0.25);
}
.act-card:hover .act-book-btn { transform: scale(1.05); box-shadow: 0 6px 18px rgba(249,115,22,0.4); }

@media (max-width: 1100px) { .activities-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px) { .activities-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .activities-grid { grid-template-columns: 1fr; } }

/* ─── Animate-in ─── */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ─── Filter Hidden States ─── */
.pkg-card-hidden, .act-card-hidden {
    display: none !important;
}

/* ==========================================================================
   MOBILE-FIRST CINEMATIC HERO & GLASSMORPHIC SEARCH DOCK
   ========================================================================== */

/* ── Hero Layout (Mobile Default) ── */
.hero {
    height: auto;
    min-height: 100svh;
    width: 100%;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding-top: calc(var(--header-offset) + 2.5rem);
    padding-bottom: 5rem;
}

.hero-inner {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    padding: 0 1.5rem;
    text-align: center;
}

/* ── Hero Search Dock (Mobile Default) ── */
.hero-search-dock {
    position: relative;
    z-index: 100;
    width: min(96%, 1060px);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18), 
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    padding: 6px;
    margin: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-search-dock:hover {
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.22), 
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.search-dock-tabs {
    display: flex;
    gap: 6px;
    background: transparent;
    border-bottom: none;
    padding: 8px 8px 0 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.search-dock-tabs::-webkit-scrollbar {
    display: none;
}

.dock-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-shrink: 0;
}

.dock-tab:hover {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.75);
    transform: translateY(-1px);
}

.dock-tab.active {
    color: #ffffff;
    background: #0284c7;
    border-color: #0284c7;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

.search-dock-body {
    padding: 12px;
}

.dock-panel {
    display: none;
}

.dock-panel.active {
    display: block;
}

.dock-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    min-height: auto;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 16px 14px;
    box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.02);
}

.dock-field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    min-width: 0;
}

.dock-field label {
    font-size: 0.68rem;
    font-weight: 800;
    color: #0284c7;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 4px;
    opacity: 0.9;
}

.dock-field select,
.dock-field input[type="date"] {
    display: block;
    width: 100%;
    height: 46px;
    padding: 10px 38px 10px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.dock-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230284c7' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
}

.dock-field input[type="date"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230284c7' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

.dock-field select:hover,
.dock-field input[type="date"]:hover {
    border-color: #38bdf8;
    box-shadow: 0 4px 18px rgba(14, 165, 233, 0.12);
    transform: translateY(-1px);
}

.dock-field select:focus,
.dock-field input[type="date"]:focus {
    border-color: #0284c7;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
    background-color: #ffffff;
}

.dock-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 0 32px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    height: 48px;
    margin-top: 6px;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
}

.dock-search-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.45);
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
}

.dock-search-btn:active {
    transform: translateY(0) scale(1);
}

.dock-sep {
    display: none;
}

.hero-proof-strip {
    position: relative;
    z-index: 5;
    margin-top: 1.5rem;
}

/* ── Sizing Overrides for Tablet and Desktop (min-width: 900px) ── */
@media (min-width: 900px) {
    .hero {
        height: 100vh;
        min-height: 600px;
        justify-content: center;
        padding-top: var(--header-offset);
        padding-bottom: 2rem;
        overflow: hidden;
    }
    .hero-search-dock {
        border-radius: 24px;
        padding: 8px;
        margin: 2rem 0;
    }
    .search-dock-tabs {
        gap: 8px;
        padding: 8px 12px 0 12px;
        overflow-x: visible;
        flex-wrap: wrap;
    }
    .dock-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex-shrink: 1;
    }
    .dock-form {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 12px 18px;
    }
    .dock-field {
        flex: 1;
        width: auto;
    }
    .dock-search-btn {
        width: auto;
        height: 46px;
        margin-top: 0;
    }
}

/* ==========================================================================
   MOBILE-FIRST HERO COMPACT SEARCH, CARDS AND ACCORDIANS
   ========================================================================== */

/* --- Mobile Compact Search Bar --- */
.hero-search-mobile {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: min(90%, 450px);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 14px;
    border-radius: 999px;
    margin: 1.5rem auto 0;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}
.hero-search-mobile:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}
.hero-search-mobile-placeholder {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-search-mobile-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* --- Search Modal --- */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #020617;
    display: none;
    flex-direction: column;
    padding: 1.5rem;
    overflow-y: auto;
}
.search-modal.active {
    display: flex;
}
.search-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.search-modal-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}
.search-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.search-modal-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.search-modal-tabs::-webkit-scrollbar {
    display: none;
}
.search-modal-tab {
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
}
.search-modal-tab.active {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}
.search-modal-body {
    flex: 1;
}
.search-modal-panel {
    display: none;
}
.search-modal-panel.active {
    display: block;
}
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.modal-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.modal-field label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 6px;
}
.modal-field select,
.modal-field input {
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 0 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    outline: none;
    width: 100%;
}
.modal-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230ea5e9' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px;
    padding-right: 2.5rem;
}
.modal-submit-btn {
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    border: none;
    margin-top: 1rem;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 767px) {
    .hero-search-mobile {
        display: flex;
    }
    .hero-search-dock {
        display: none !important;
    }
}
@media (min-width: 768px) {
    .hero-search-mobile {
        display: none;
    }
    .hero-search-dock {
        display: block;
    }
}

/* --- Section Padding adjustments --- */
.why-us-section, .packages-section, .activities-section, .hotels-section {
    padding: 48px 5% !important;
}
@media (min-width: 768px) {
    .why-us-section {
        padding: 90px 5% !important;
    }
    .packages-section {
        padding: 90px 5% !important;
    }
    .activities-section {
        padding: 90px 5% !important;
    }
    .hotels-section {
        padding: 90px 5% !important;
    }
}

/* --- Mobile Package Cards Horizontal Scroll --- */
@media (max-width: 640px) {
    .packages-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1.25rem !important;
        padding: 0.5rem 1.5rem 1.5rem !important;
        margin: 0 -1.5rem !important;
        scrollbar-width: none !important;
    }
    .packages-grid::-webkit-scrollbar {
        display: none !important;
    }
    .pkg-card {
        min-width: 290px !important;
        max-width: 290px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
        background: #fff;
    }
    .pkg-card-link {
        display: block !important;
        height: 100% !important;
    }
    .pkg-card-img {
        height: 190px !important;
    }
    .pkg-card-body {
        padding: 1.1rem 1.25rem 1rem !important;
    }
    .pkg-title {
        font-size: 1.05rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
    }
    .pkg-location {
        font-size: 0.8rem !important;
        margin-bottom: 0.4rem !important;
    }
    .pkg-highlights {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.35rem !important;
        margin-bottom: 0.75rem !important;
    }
    .pkg-highlights span {
        font-size: 0.7rem !important;
        padding: 0.15rem 0.5rem !important;
    }
    .pkg-card-footer {
        margin-top: 0.4rem !important;
    }
    .pkg-new-price {
        font-size: 1.2rem !important;
    }
    .pkg-old-price {
        font-size: 0.8rem !important;
    }
    .pkg-view-btn {
        padding: 0.4rem 0.9rem !important;
        font-size: 0.8rem !important;
    }
    .pkg-duration-badge {
        bottom: 10px !important;
        right: 10px !important;
        font-size: 0.7rem !important;
        padding: 0.25rem 0.6rem !important;
    }
    .pkg-category-badge {
        top: 10px !important;
        right: 10px !important;
        font-size: 0.7rem !important;
        padding: 0.25rem 0.6rem !important;
    }
    .card-discount-badge {
        top: 10px !important;
        left: 10px !important;
        font-size: 0.6rem !important;
        padding: 3px 6px !important;
    }
}

/* --- Mobile Activities Horizontal Scroll --- */
@media (max-width: 640px) {
    .activities-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1rem !important;
        padding: 0.5rem 1.5rem 1.5rem !important;
        margin: 0 -1.5rem !important;
        scrollbar-width: none !important;
    }
    .activities-grid::-webkit-scrollbar {
        display: none !important;
    }
    .act-card {
        min-width: 260px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
    }
}

/* --- Hotel Native Card Layout --- */
.hotels-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
@media (min-width: 768px) {
    .hotels-grid {
        gap: 2rem;
    }
}
.hotel-card {
    width: 100%;
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: var(--primary);
}
@media (min-width: 768px) {
    .hotel-card {
        width: 380px;
        border-radius: 2.5rem;
    }
}
.hotel-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.hotel-card-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .hotel-card-img-wrapper {
        height: 256px;
    }
}
.hotel-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.hotel-card:hover .hotel-card-img {
    transform: scale(1.1);
}
.hotel-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, transparent 100%);
}
.hotel-type-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hotel-meta-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    color: #fff;
}
.hotel-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #fbbf24;
    margin-bottom: 0.25rem;
}
.hotel-stars i {
    width: 12px;
    height: 12px;
    fill: currentColor;
}
.hotel-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}
.hotel-card-body {
    padding: 1.25rem;
}
@media (min-width: 768px) {
    .hotel-card-body {
        padding: 2rem;
    }
}
.hotel-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
}
.hotel-location i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}
.hotel-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}
.hotel-amenities {
    display: flex;
    gap: 0.5rem;
}
.hotel-amenity-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}
.hotel-amenity-icon i {
    width: 16px;
    height: 16px;
}
.hotel-view-btn {
    color: var(--primary);
    font-weight: 900;
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}
.hotel-card:hover .hotel-view-btn {
    transform: translateX(4px);
}

