/* ============================================
   FLY TOURS - Main Stylesheet
   Brand Colors: Navy #01093A | Gold #D8A94D | Blue #0A4FA8
   ============================================ */

:root {
    --primary: #01093A;
    --secondary: #D8A94D;
    --accent: #0A4FA8;
    --gold-light: #F2C86A;
    --white: #FFFFFF;
    --text: #1A1A1A;
    --text-light: #666;
    --bg: #F8F9FC;
    --border: #E8ECF0;
    --shadow: 0 4px 24px rgba(1, 9, 58, 0.10);
    --shadow-hover: 0 12px 40px rgba(1, 9, 58, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --gradient: linear-gradient(135deg, #01093A 0%, #0A4FA8 100%);
    --gradient-gold: linear-gradient(135deg, #D8A94D 0%, #F2C86A 100%);
    --transition: all 0.3s ease;
    --font: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background: var(--secondary);
    box-shadow: 0 8px 24px rgba(216, 169, 77, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-dark:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--primary);
    padding: 8px 0;
    font-size: 13px;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left a,
.top-bar-right a {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left a:hover {
    color: var(--secondary);
}

.whatsapp-btn {
    background: #25D366;
    color: white !important;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 600;
}

.whatsapp-btn:hover {
    background: #1ebe5d !important;
    color: white;
}


/* ============================================================
   SITE HEADER + PROFESSIONAL MEGA MENU
   ============================================================ */

/* ---- Site Header Shell ---- */
.site-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 24px rgba(1, 9, 58, 0.10);
    transition: background 0.3s, box-shadow 0.3s;
    border-bottom: 2px solid var(--border);
}

.site-header.scrolled {
    box-shadow: 0 4px 36px rgba(1, 9, 58, 0.18);
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 20px;
    min-height: 70px;
}

.site-logo img {
    height: 56px;
    width: auto;
    display: block;
}

/* ---- Nav List ---- */
.primary-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-weight: 500;
    font-size: 13.5px;
    padding: 8px 11px;
    border-radius: 8px;
    white-space: nowrap;
    transition: color 0.25s, background 0.25s;
    letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: rgba(10, 79, 168, 0.07);
}

.nav-link.active {
    font-weight: 600;
}

.nav-arrow {
    font-size: 10px;
    margin-top: 1px;
    transition: transform 0.25s;
}

.has-mega:hover .nav-arrow {
    transform: rotate(180deg);
}

/* ---- Mega Panel ---- */
.mega-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(1, 9, 58, 0.16), 0 4px 16px rgba(1, 9, 58, 0.08);
    border-top: 3px solid var(--secondary);
    min-width: 620px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 9999;
    pointer-events: none;
}

.has-mega:hover .mega-panel,
.mega-panel:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Keep panel open when hovering it */
.has-mega:focus-within .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-inner {
    display: flex;
    gap: 0;
    padding: 24px 0 20px;
}

/* ---- Mega Columns ---- */
.mega-col {
    flex: 1;
    padding: 0 22px;
    border-right: 1px solid var(--border);
}

.mega-col:last-child {
    border-right: none;
}

.mega-col-head {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.mega-col-head i {
    color: var(--secondary);
    font-size: 13px;
}

.mega-col ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-col ul li a {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: #334;
    padding: 7px 10px;
    border-radius: 7px;
    font-weight: 400;
    transition: all 0.2s;
}

.mega-col ul li a i {
    width: 16px;
    text-align: center;
    color: var(--accent);
    font-size: 12px;
    flex-shrink: 0;
}

.mega-col ul li a:hover {
    background: var(--bg);
    color: var(--accent);
    padding-left: 15px;
}

/* ---- Featured col ---- */
.mega-featured {
    flex: 1.3;
}

.mega-card {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--bg);
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.22s;
    border: 1px solid transparent;
}

.mega-card:hover {
    background: #fff;
    border-color: var(--secondary);
    box-shadow: 0 4px 16px rgba(216, 169, 77, 0.18);
    transform: translateX(3px);
}

.mega-card-icon {
    width: 34px;
    height: 34px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

.mega-card span {
    flex: 1;
    line-height: 1.3;
}

.mega-card-arrow {
    color: var(--secondary);
    font-size: 11px;
}

.mega-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 4px;
    transition: all 0.2s;
    border: 1.5px solid rgba(10, 79, 168, 0.18);
    width: 100%;
    justify-content: center;
}

.mega-view-all:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.mega-info-box {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    border: 1px solid rgba(10, 79, 168, 0.1);
}

.mega-info-icon {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.mega-info-box h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.mega-info-box p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ---- Header Actions ---- */
.hdr-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.hdr-book-btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* ---- Hamburger ---- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ---- Mobile Overlay ---- */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(1, 9, 58, 0.55);
    z-index: 1001;
    backdrop-filter: blur(2px);
}

.mobile-overlay.show {
    display: block;
}

/* ---- RESPONSIVE MEGA MENU ---- */
@media (max-width: 1100px) {
    .nav-link {
        font-size: 12.5px;
        padding: 8px 8px;
    }

    .mega-panel {
        min-width: 480px;
    }
}

@media (max-width: 900px) {
    .hdr-book-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary);
        padding: 76px 0 30px;
        overflow-y: auto;
        transition: right 0.35s cubic-bezier(.4, 0, .2, 1);
        z-index: 1005;
        box-shadow: -6px 0 40px rgba(1, 9, 58, 0.3);
    }

    .primary-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.9);
        padding: 13px 22px;
        border-radius: 0;
        font-size: 14px;
        justify-content: space-between;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--secondary);
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-arrow {
        transition: transform 0.25s;
    }

    .nav-item.mob-open .nav-arrow {
        transform: rotate(180deg);
    }

    /* Mobile mega turns into accordion */
    .mega-panel {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        min-width: unset;
        border-radius: 0;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--secondary);
        margin-left: 22px;
        background: rgba(255, 255, 255, 0.05);
        display: none;
        pointer-events: auto;
    }

    .nav-item.mob-open .mega-panel {
        display: block;
    }

    .mega-inner {
        flex-direction: column;
        padding: 10px 0;
        gap: 0;
    }

    .mega-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 12px 14px;
    }

    .mega-col:last-child {
        border-bottom: none;
    }

    .mega-col-head {
        color: var(--gold-light);
    }

    .mega-col ul li a {
        color: rgba(255, 255, 255, 0.8);
    }

    .mega-col ul li a:hover {
        color: var(--secondary);
        background: rgba(255, 255, 255, 0.08);
    }

    .mega-col ul li a i {
        color: var(--gold-light);
    }

    .mega-card {
        background: rgba(255, 255, 255, 0.07);
        color: #fff;
    }

    .mega-card:hover {
        background: rgba(255, 255, 255, 0.14);
        border-color: var(--secondary);
    }

    .mega-view-all {
        color: var(--gold-light);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .mega-view-all:hover {
        background: var(--secondary);
        color: var(--primary);
        border-color: var(--secondary);
    }

    .mega-info-box {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .mega-info-box h4,
    .mega-info-box p {
        color: rgba(255, 255, 255, 0.85);
    }

    .mega-info-icon {
        color: var(--gold-light);
    }

    .mega-featured {
        flex: unset;
    }

    /* Has-mega doesn't auto-open on hover in mobile */
    .has-mega:hover .mega-panel {
        display: none;
    }

    .has-mega:hover .nav-arrow {
        transform: none;
    }

    .nav-item.mob-open:hover .mega-panel {
        display: block;
    }
}


/* ============================================================
   SITE HEADER + PROFESSIONAL MEGA MENU
   ============================================================ */

/* ---- Site Header Shell ---- */
.site-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 24px rgba(1, 9, 58, 0.10);
    transition: background 0.3s, box-shadow 0.3s;
    border-bottom: 2px solid var(--border);
}

.site-header.scrolled {
    box-shadow: 0 4px 36px rgba(1, 9, 58, 0.18);
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 20px;
    min-height: 70px;
}

.site-logo img {
    height: 56px;
    width: auto;
    display: block;
}

.primary-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-weight: 500;
    font-size: 13.5px;
    padding: 8px 11px;
    border-radius: 8px;
    white-space: nowrap;
    transition: color 0.25s, background 0.25s;
    letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: rgba(10, 79, 168, 0.07);
}

.nav-link.active {
    font-weight: 600;
}

.nav-arrow {
    font-size: 10px;
    margin-top: 1px;
    transition: transform 0.25s;
}

.has-mega:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Mega Panel */
.mega-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(1, 9, 58, 0.16), 0 4px 16px rgba(1, 9, 58, 0.08);
    border-top: 3px solid var(--secondary);
    min-width: 620px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 9999;
    pointer-events: none;
}

.has-mega:hover .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-inner {
    display: flex;
    gap: 0;
    padding: 24px 0 20px;
}

.mega-col {
    flex: 1;
    padding: 0 22px;
    border-right: 1px solid var(--border);
}

.mega-col:last-child {
    border-right: none;
}

.mega-col-head {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.mega-col ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-col ul li a {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: #334;
    padding: 7px 10px;
    border-radius: 7px;
    font-weight: 400;
    transition: all 0.2s;
}

.mega-col ul li a i {
    width: 16px;
    text-align: center;
    color: var(--accent);
    font-size: 12px;
    flex-shrink: 0;
}

.mega-col ul li a:hover {
    background: var(--bg);
    color: var(--accent);
    padding-left: 15px;
}

.mega-featured {
    flex: 1.3;
}

.mega-card {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--bg);
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.22s;
    border: 1px solid transparent;
}

.mega-card:hover {
    background: #fff;
    border-color: var(--secondary);
    box-shadow: 0 4px 16px rgba(216, 169, 77, 0.18);
    transform: translateX(3px);
}

.mega-card-icon {
    width: 34px;
    height: 34px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

.mega-card span {
    flex: 1;
    line-height: 1.3;
}

.mega-card-arrow {
    color: var(--secondary);
    font-size: 11px;
}

.mega-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 4px;
    transition: all 0.2s;
    border: 1.5px solid rgba(10, 79, 168, 0.18);
    width: 100%;
    justify-content: center;
}

.mega-view-all:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.mega-info-box {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    border: 1px solid rgba(10, 79, 168, 0.1);
}

.mega-info-icon {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.mega-info-box h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.mega-info-box p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.hdr-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.hdr-book-btn {
    padding: 10px 20px;
    font-size: 14px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(1, 9, 58, 0.55);
    z-index: 1001;
    backdrop-filter: blur(2px);
}

.mobile-overlay.show {
    display: block;
}

@media (max-width: 1100px) {
    .nav-link {
        font-size: 12px;
        padding: 8px 7px;
    }

    .mega-panel {
        min-width: 480px;
    }
}

@media (max-width: 900px) {
    .hdr-book-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary);
        padding: 76px 0 30px;
        overflow-y: auto;
        transition: right 0.35s cubic-bezier(.4, 0, .2, 1);
        z-index: 1005;
        box-shadow: -6px 0 40px rgba(1, 9, 58, 0.3);
    }

    .primary-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.9);
        padding: 13px 22px;
        border-radius: 0;
        font-size: 14px;
        justify-content: space-between;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--secondary);
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-item.mob-open .nav-arrow {
        transform: rotate(180deg);
    }

    .mega-panel {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        min-width: unset;
        border-radius: 0;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--secondary);
        margin-left: 22px;
        background: rgba(255, 255, 255, 0.05);
        display: none;
        pointer-events: auto;
    }

    .nav-item.mob-open .mega-panel {
        display: block;
    }

    .mega-inner {
        flex-direction: column;
        padding: 10px 0;
        gap: 0;
    }

    .mega-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 12px 14px;
    }

    .mega-col:last-child {
        border-bottom: none;
    }

    .mega-col-head {
        color: var(--gold-light);
    }

    .mega-col ul li a {
        color: rgba(255, 255, 255, 0.8);
    }

    .mega-col ul li a:hover {
        color: var(--secondary);
        background: rgba(255, 255, 255, 0.08);
    }

    .mega-col ul li a i {
        color: var(--gold-light);
    }

    .mega-card {
        background: rgba(255, 255, 255, 0.07);
        color: #fff;
    }

    .mega-view-all {
        color: var(--gold-light);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .mega-info-box {
        background: rgba(255, 255, 255, 0.07);
    }

    .mega-info-box h4,
    .mega-info-box p {
        color: rgba(255, 255, 255, 0.85);
    }

    .has-mega:hover .mega-panel {
        display: none;
    }

    .nav-item.mob-open .mega-panel {
        display: block;
    }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
   
    overflow: hidden;
    background: var(--gradient);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 9, 58, 0.82) 0%, rgba(10, 79, 168, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 820px;
    margin: 0 auto;
    padding: 50px 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(216, 169, 77, 0.2);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    z-index: 2;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stat {
    text-align: center;
    color: white;
}

.hero-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
}

.hero-stat span {
    font-size: 13px;
    opacity: 0.85;
}

/* Search Bar */
.search-bar-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0 20px;
}

.search-bar {
    background: white;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 20px 30px;
    box-shadow: 0 -4px 30px rgba(1, 9, 58, 0.15);
    display: flex;
    gap: 16px;
    align-items: flex-end;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.search-field {
    flex: 1;
    min-width: 200px;
}

.search-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.search-field select,
.search-field input {
    width: 100%;
    padding: 11px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: var(--transition);
}

.search-field select:focus,
.search-field input:focus {
    border-color: var(--accent);
}

/* ============ SECTIONS ============ */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(216, 169, 77, 0.12);
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(216, 169, 77, 0.3);
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-header h2 span {
    color: var(--secondary);
}

.section-header p {
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    font-size: 16px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 4px;
    margin: 14px auto 0;
}

/* ============ CARDS ============ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.tour-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.tour-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-img img {
    transform: scale(1.07);
}

.tour-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gradient-gold);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-badge.featured {
    background: var(--gradient);
    color: white;
}

.tour-card-body {
    padding: 22px;
}

.tour-location {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.tour-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.tour-card-body p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 10px;
}

.tour-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-light);
}

.tour-price .price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.tour-price .price span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
}

.tour-price .old-price {
    font-size: 12px;
    text-decoration: line-through;
    color: var(--text-light);
}

.tour-card-footer {
    padding: 0 22px 22px;
    display: flex;
    gap: 10px;
}

.tour-card-footer .btn {
    flex: 1;
    justify-content: center;
    padding: 10px 16px;
    font-size: 14px;
}

/* ============ WHY CHOOSE US ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(1, 9, 58, 0.08), rgba(10, 79, 168, 0.12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--accent);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient);
    color: white;
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ============ ABOUT SECTION ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: white;
    border-radius: var(--radius);
    padding: 16px 22px;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-img-badge .num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.about-img-badge p {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.about-content .section-tag {
    display: inline-block;
}

.about-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--primary);
    margin: 12px 0 16px;
}

.about-content h2 span {
    color: var(--secondary);
}

.about-content>p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.about-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.about-feat-item i {
    color: var(--secondary);
    font-size: 16px;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    background: var(--gradient);
    color: white;
}

.testimonials .section-header h2 {
    color: white;
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary);
    border-color: rgba(255, 255, 255, 0.2);
}

.swiper-testimonials {
    padding-bottom: 50px !important;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
}

.testimonial-card .stars {
    color: var(--secondary);
    margin-bottom: 16px;
    font-size: 18px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.testimonial-author h4 {
    font-size: 16px;
    color: white;
}

.testimonial-author span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============ CTA BANNER ============ */
.cta-banner {
    background: var(--gradient-gold);
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.cta-banner p {
    color: rgba(1, 9, 58, 0.75);
    margin-bottom: 28px;
    font-size: 16px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: var(--gradient);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.contact-info-card>p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item .icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.contact-info-item p a,
.contact-info-item p {
    color: white;
    font-size: 15px;
}

.contact-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 6px;
}

.contact-form-card>p {
    color: var(--text-light);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: var(--transition);
    background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(10, 79, 168, 0.08);
}

.form-group textarea {
    height: 130px;
    resize: vertical;
}

.form-success,
.form-error {
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 20px;
    display: none;
}

.form-success {
    background: #e8f8f0;
    color: #1a7a45;
    border: 1px solid #b6e8d0;
}

.form-error {
    background: #fff0f0;
    color: #c0392b;
    border: 1px solid #f5b7b1;
}

/* ============ PAGE HERO ============ */
.page-hero {
    background: var(--gradient);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a {
    color: var(--secondary);
}

.breadcrumb i {
    font-size: 11px;
}

/* ============ WEDDING ============ */
.wedding-hero-section {
    background: var(--gradient);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.wedding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.wedding-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.wedding-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.wedding-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.wedding-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.wedding-card:hover .wedding-card-img img {
    transform: scale(1.06);
}

.wedding-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 9, 58, 0.75) 0%, transparent 60%);
}

.wedding-card-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gradient-gold);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.wedding-card-body {
    padding: 24px;
}

.wedding-location {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wedding-card-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.wedding-card-body p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
}

.wedding-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.wedding-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
}

.wedding-price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 40px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-col ul li a i {
    font-size: 12px;
    color: var(--secondary);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 14px;
}

.footer-contact ul li i {
    color: var(--secondary);
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact ul li a:hover {
    color: var(--secondary);
}

.newsletter-box {
    margin-top: 20px;
}

.newsletter-box p {
    font-size: 13px;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    padding: 11px 14px;
    color: white;
    font-family: var(--font);
    font-size: 13px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: var(--secondary);
    border: none;
    padding: 11px 16px;
    color: var(--primary);
    cursor: pointer;
    font-size: 15px;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============ FLOATING BUTTONS ============ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 998;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 32px rgba(37, 211, 102, 0.8);
    }
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ============ SWIPER DOTS ============ */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
}

.swiper-pagination-bullet-active {
    background: var(--secondary) !important;
}

/* ============ ALERTS ============ */
.alert {
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: #e8f8f0;
    color: #1a7a45;
    border-left: 4px solid #1a7a45;
}

.alert-error {
    background: #fff0f0;
    color: #c0392b;
    border-left: 4px solid #c0392b;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .top-bar {
        display: none;
    }

    /* mobile nav handled by new mega menu CSS */
    .hero {
        min-height: 70vh;
    }

    .hero-stats {
        display: none;
    }

    .search-bar {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .wedding-grid {
        grid-template-columns: 1fr;
    }

    .about-img-badge {
        left: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   AUDIT FIXES — added components (June 2026)
   ============================================================ */

/* ---- Tour listing filter bar ---- */
.filter-bar {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 36px;
}

.filter-form {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-field.filter-grow {
    flex: 1;
    min-width: 200px;
}

.filter-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
}

.filter-field input,
.filter-field select {
    padding: 11px 14px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 14px;
    outline: none;
    background: #fff;
    min-width: 150px;
}

.filter-field input:focus,
.filter-field select:focus {
    border-color: var(--accent);
}

.filter-field .btn {
    padding: 11px 22px;
}

.filter-count {
    margin-top: 14px;
    color: var(--text-light);
    font-size: 14px;
}

@media (max-width: 600px) {
    .filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-field,
    .filter-field input,
    .filter-field select {
        width: 100%;
        min-width: 0;
    }
}

/* ---- Tour detail: enquiry card ---- */
.enquiry-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--border);
    margin-bottom: 24px;
}

.enquiry-title {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 14px;
}

.enquiry-title i {
    color: var(--secondary);
}

.enquiry-prefill {
    background: var(--bg);
    border-left: 3px solid var(--secondary);
    border-radius: 6px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 14px;
}

.enquiry-card label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    margin: 10px 0 4px;
}

.enquiry-card input,
.enquiry-card textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 14px;
    outline: none;
}

.enquiry-card input:focus,
.enquiry-card textarea:focus {
    border-color: var(--accent);
}

.enquiry-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.enquiry-note {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 12px;
    text-align: center;
}

.enquiry-note i {
    color: #1a7a45;
}

.enquiry-msg {
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 8px;
    margin-top: 12px;
}

.enquiry-msg.ok {
    background: #e7f6ed;
    color: #1a7a45;
}

.enquiry-msg.err {
    background: #fdeaea;
    color: #c0392b;
}

/* ---- FAQ accordion ---- */
.faq-section {
    margin-top: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 22px;
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--secondary);
    transition: transform 0.25s;
    flex-shrink: 0;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 22px 18px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 14px;
}

/* ---- Testimonials: rating summary + verified ---- */
.rating-summary {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 26px;
    max-width: 560px;
    margin: 0 auto 36px;
    box-shadow: var(--shadow);
}

.rating-score {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.rating-stars {
    color: var(--secondary);
    font-size: 18px;
    letter-spacing: 2px;
}

.rating-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
}

.rating-google {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 9px 14px;
    margin-left: auto;
}

.rating-google:hover {
    border-color: var(--accent);
}

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.verified-badge {
    font-size: 11px;
    font-weight: 600;
    color: #1a7a45;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 520px) {
    .rating-google {
        margin-left: 0;
    }
}

/* ---- Newsletter status message ---- */
.newsletter-msg {
    line-height: 1.5;
}

/* ---- Cancellation policy page ---- */
.policy-card {
    background: var(--bg);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.policy-h {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 32px 0 12px;
}

.policy-list {
    padding-left: 20px;
    line-height: 1.9;
    color: var(--text);
}

.policy-list li {
    margin-bottom: 8px;
}

.policy-table-wrap {
    overflow-x: auto;
    margin: 16px 0;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.policy-table th,
.policy-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.policy-table th {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-cta {
    background: var(--gradient);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-top: 40px;
}

.policy-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.policy-cta p {
    opacity: 0.85;
    margin-bottom: 20px;
}