/* ============================================================
   ANN HOLIDAYS – Design System & Stylesheet
   Modern coastal-luxury travel aesthetic
   ============================================================ */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
    /* Core palette */
    --clr-ocean:       #0F2C59;
    --clr-ocean-light: #1A3F7A;
    --clr-emerald:     #0E8388;
    --clr-emerald-dark:#0A6A6E;
    --clr-gold:        #F59E0B;
    --clr-gold-light:  #FCD34D;
    --clr-pearl:       #F8FAFC;
    --clr-white:       #FFFFFF;
    --clr-dark:        #0B1120;
    --clr-text:        #1E293B;
    --clr-muted:       #64748B;
    --clr-border:      #E2E8F0;
    --clr-danger:      #EF4444;

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(15,44,89,.08);
    --shadow-md:  0 4px 16px rgba(15,44,89,.10);
    --shadow-lg:  0 10px 40px rgba(15,44,89,.14);
    --shadow-glow:0 0 30px rgba(14,131,136,.25);

    /* Radii */
    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  20px;
    --radius-pill: 50px;
    --radius-full: 50%;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-body:    'Open Sans', sans-serif;

    /* Z-index layers */
    --z-topbar:  1000;
    --z-header:  999;
    --z-overlay: 998;
    --z-drawer:  1001;
    --z-floating:1050;
    --z-spinner: 9999;

    /* Transitions */
    --ease-smooth: cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background: var(--clr-pearl);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .3s var(--ease-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--clr-ocean);
    line-height: 1.3;
}


/* ============================================================
   SPINNER
   ============================================================ */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: var(--z-spinner);
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


 /* ---------- FIXED BAR HEIGHTS (pure CSS, no JS needed) ---------- */
        :root {
            --topbar-h: 44px;   /* topbar height: desktop / tablet (single row) */
            --header-h: 74px;   /* navbar height: desktop / tablet */
        }

        /* ---------- TOP BAR ---------- */
        .topbar {
            background: #0F2C59;
            color: #fff;
            font-size: 14px;
            padding: 8px 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1101;
        }
        .topbar-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            row-gap: 8px;
            column-gap: 20px;
        }
        .topbar-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .topbar-left span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        .topbar-left a,
        .topbar-right a {
            color: #fff !important;
            text-decoration: none;
        }
        .topbar-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .topbar-right a {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.14);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            transition: background 0.25s ease;
        }
        .topbar-right a:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        @media (max-width: 768px) {
            :root {
                --topbar-h: 72px; /* topbar now wraps to 2 fixed rows on mobile */
            }
            .topbar-inner {
                justify-content: center;
                text-align: center;
            }
            .topbar-left {
                justify-content: flex-start;
                width: 100%;
                flex-wrap: nowrap;       /* keep it to one row so the height is predictable */
                overflow-x: auto;        /* scroll sideways instead of wrapping */
                -webkit-overflow-scrolling: touch;
                gap: 12px 18px;
                font-size: 13px;
            }
            .topbar-right {
                width: 100%;
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            :root {
                --header-h: 58px; /* smaller logo/padding on small phones */
            }
        }
        @media (max-width: 380px) {
            .topbar-left span:first-child {
                display: none; /* hide email, keep phone visible on very small screens */
            }
        }

        /* ---------- HEADER / NAVBAR ---------- */
        .site-header {
            background: #fff;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            position: fixed;
            top: var(--topbar-h, 40px);
            left: 0;
            width: 100%;
            z-index: 1000;
        }

        /* Spacer that pushes page content below the fixed topbar + header.
           Pure CSS: height auto-tracks the --topbar-h / --header-h vars above. */
        #headerSpacer {
            width: 100%;
            height: calc(var(--topbar-h) + var(--header-h));
        }
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 14px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }
        .logo img {
            height: 46px;
            width: 46px;
            object-fit: cover;
            border-radius: 50%; 
        }
        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 20px;
            color: #0F2C59;
            white-space: nowrap;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 28px;
        }
        .main-nav a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            padding: 6px 0;
        }
        .main-nav a.active,
        .main-nav a:hover {
            color: #0F2C59;
        }
        .main-nav a.nav-cta {
            background: #25D366;
            color: #fff !important;
            padding: 10px 20px;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav a.nav-cta:hover {
            background: #1ea952;
        }

        /* Hamburger toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 20px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1100;
            flex-shrink: 0;
        }
        .nav-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background: #0F2C59;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        .nav-toggle.active span:nth-child(1) {
            transform: translateY(8.5px) rotate(45deg);
        }
        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle.active span:nth-child(3) {
            transform: translateY(-8.5px) rotate(-45deg);
        }

        /* Overlay behind mobile menu */
        .nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .nav-overlay.active {
            display: block;
            opacity: 1;
        }

        @media (max-width: 991px) {
            .nav-toggle {
                display: flex;
            }

            .main-nav {
                position: fixed;
                top: var(--topbar-h);
                right: -300px;
                height: calc(100vh - var(--topbar-h));
                width: 280px;
                max-width: 82%;
                background: #fff;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                gap: 0;
                padding: 90px 30px 30px;
                box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
                transition: right 0.35s ease;
                z-index: 1050;
                overflow-y: auto;
            }
            .main-nav.active {
                right: 0;
            }
            .main-nav a {
                width: 100%;
                padding: 14px 0;
                border-bottom: 1px solid #eee;
                font-size: 16px;
            }
            .main-nav a.nav-cta {
                margin-top: 16px;
                justify-content: center;
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo-text {
                font-size: 16px;
            }
            .logo img {
                height: 38px;
                width: 38px;
            }
            .header-inner {
                padding: 10px 16px;
            }
            .topbar {
                font-size: 12.5px;
            }
        }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.carousel-header {
    position: relative;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh;
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(11,17,32,.55) 0%, rgba(15,44,89,.7) 100%);
    padding: 40px 20px;
}

.carousel-caption h4,
.carousel-caption h5 {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-gold) !important;
    margin-bottom: 16px;
}

.carousel-caption h1 {
    color: var(--clr-white);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.carousel-caption p {
    color: rgba(255,255,255,.88);
    font-size: clamp(14px, 1.8vw, 18px);
    max-width: 750px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background-color: rgba(255,255,255,.15);
    background-size: 50% 50%;
    backdrop-filter: blur(6px);
    transition: background .3s;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel-header .carousel-control-next .carousel-control-next-icon:hover {
    background-color: var(--clr-emerald);
}

.carousel-header .carousel-indicators li,
.carousel-header .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    border: 2px solid var(--clr-white);
    background: transparent;
    opacity: .6;
    transition: .4s;
}

.carousel-header .carousel-indicators .active {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item {
        min-height: 75vh;
    }

    .carousel-header .carousel-control-prev,
    .carousel-header .carousel-control-next {
        display: none;
    }
}


/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-emerald);
    background: rgba(14,131,136,.08);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: clamp(26px, 4vw, 40px);
    margin-bottom: 14px;
    color: var(--clr-ocean);
}

.section-header p {
    color: var(--clr-muted);
    font-size: 16px;
    line-height: 1.7;
}


/* ============================================================
   BUTTONS (global)
   ============================================================ */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-white);
    background: linear-gradient(135deg, var(--clr-emerald), var(--clr-ocean-light));
    padding: 13px 30px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(14,131,136,.3);
    transition: transform .3s, box-shadow .3s;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(14,131,136,.4);
    color: var(--clr-white);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-emerald);
    background: transparent;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--clr-emerald);
    cursor: pointer;
    transition: background .3s, color .3s, transform .3s;
}

.btn-outline-custom:hover {
    background: var(--clr-emerald);
    color: var(--clr-white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-white);
    background: #25D366;
    padding: 11px 24px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,.35);
    color: var(--clr-white);
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-white);
    background: var(--clr-gold);
    padding: 11px 24px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,158,11,.35);
    color: var(--clr-white);
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: 90px 0;
    background: var(--clr-white);
}

.about-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.about-experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--clr-emerald), var(--clr-ocean-light));
    color: var(--clr-white);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-experience-badge .exp-number {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.about-experience-badge .exp-label {
    font-size: 13px;
    opacity: .9;
    margin-top: 4px;
}

.about-content h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    margin-bottom: 18px;
    line-height: 1.3;
}

.about-content > p {
    color: var(--clr-muted);
    font-size: 15.5px;
    margin-bottom: 28px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(14,131,136,.05);
    border-radius: var(--radius-sm);
    transition: transform .3s;
}

.about-highlight-item:hover {
    transform: translateY(-2px);
}

.about-highlight-item i {
    font-size: 20px;
    color: var(--clr-emerald);
    flex-shrink: 0;
}

.about-highlight-item span {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-text);
}

.about-contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-phone i {
    font-size: 24px;
    color: var(--clr-emerald);
}

.about-phone-details small {
    font-size: 12px;
    color: var(--clr-muted);
    display: block;
}

.about-phone-details a {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-ocean);
    letter-spacing: .5px;
}

.about-phone-details a:hover {
    color: var(--clr-emerald);
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-image-wrapper img {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .about-highlights {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   INQUIRY FORM
   ============================================================ */
.inquiry-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--clr-ocean) 0%, var(--clr-emerald-dark) 100%);
}

.inquiry-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.inquiry-card {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.inquiry-card h3 {
    font-size: 24px;
    color: var(--clr-white);
    text-align: center;
    margin-bottom: 28px;
}

.inquiry-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    align-items: end;
}

.inquiry-form .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    margin-bottom: 6px;
}

.inquiry-form .form-group input {
    width: 100%;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.12);
    color: var(--clr-white);
    font-size: 14px;
    outline: none;
    transition: border-color .3s, background .3s;
}

.inquiry-form .form-group input::placeholder {
    color: rgba(255,255,255,.5);
}

.inquiry-form .form-group input:focus {
    border-color: var(--clr-gold);
    background: rgba(255,255,255,.18);
}

.inquiry-form .form-submit {
    align-self: end;
}

.inquiry-form .form-submit button {
    width: 100%;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    border: none;
    background: var(--clr-gold);
    color: var(--clr-dark);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
}

.inquiry-form .form-submit button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,158,11,.4);
}

@media (max-width: 768px) {
    .inquiry-card {
        padding: 28px 20px;
    }
}


/* ============================================================
   EXPLORE / SERVICE SECTION (Destination Cards)
   ============================================================ */
.explore-section {
    padding: 90px 0;
    background: var(--clr-pearl);
}

.explore-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.explore-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--clr-white);
    transition: transform .4s var(--ease-smooth), box-shadow .4s;
}

.explore-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.explore-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.explore-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease-smooth);
}

.explore-card:hover .explore-card-img img {
    transform: scale(1.1);
}

.explore-card-body {
    padding: 20px;
    text-align: center;
}

.explore-card-body h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

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

@media (max-width: 576px) {
    .explore-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   PACKAGES SECTION
   ============================================================ */
.packages-section {
    padding: 90px 0;
    background: var(--clr-white);
}

.packages-section .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.package-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--clr-border);
    transition: transform .4s var(--ease-smooth), box-shadow .4s;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-card-img {
    position: relative;
    overflow: hidden;
    height: 230px;
}

.package-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease-smooth);
}

.package-card:hover .package-card-img img {
    transform: scale(1.08);
}

.package-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--clr-gold);
    color: var(--clr-dark);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.package-card-body {
    padding: 24px;
}

.package-card-body h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.package-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-emerald);
    margin-bottom: 12px;
}

.package-duration i {
    font-size: 14px;
}

.package-card-body > p {
    color: var(--clr-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-price {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-danger);
    margin-bottom: 16px;
}

.package-card-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


/* ============================================================
   POOVAR EXCLUSIVE SECTION
   ============================================================ */
.poovar-section {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.poovar-bg {
    position: relative;
    background: url('img/poovar.jpg') center/cover no-repeat;
    padding: 0;
}

.poovar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,44,89,.88) 0%, rgba(10,106,110,.85) 100%);
}

.poovar-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: var(--clr-white);
}

.poovar-badge {
    display: inline-block;
    background: var(--clr-gold);
    color: var(--clr-dark);
    padding: 8px 24px;
    border-radius: var(--radius-pill);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.poovar-content h2 {
    color: var(--clr-white);
    font-size: clamp(26px, 4vw, 40px);
    margin-bottom: 10px;
}

.poovar-content h3 {
    color: var(--clr-gold-light);
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 500;
    margin-bottom: 24px;
}

.poovar-content > p {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,.88);
}

.poovar-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.poovar-feature-box {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.12);
    padding: 28px 20px;
    border-radius: var(--radius-md);
    transition: transform .35s, background .35s, color .35s;
}

.poovar-feature-box:hover {
    transform: translateY(-6px);
    background: var(--clr-white);
    color: var(--clr-ocean);
}

.poovar-feature-box:hover i {
    color: var(--clr-emerald) !important;
}

.poovar-feature-box:hover h4,
.poovar-feature-box:hover p {
    color: var(--clr-text);
}

.poovar-feature-box i {
    font-size: 36px;
    color: var(--clr-gold);
    margin-bottom: 14px;
    transition: color .35s;
}

.poovar-feature-box h4 {
    font-size: 17px;
    color: var(--clr-white);
    margin-bottom: 8px;
    transition: color .35s;
}

.poovar-feature-box p {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
    transition: color .35s;
}

.poovar-attractions {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 36px;
    text-align: left;
    line-height: 2;
    font-size: 15px;
}

.poovar-attractions strong {
    color: var(--clr-gold);
}

.poovar-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-section {
    padding: 90px 0;
    background: var(--clr-pearl);
}

.testimonial-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: var(--radius-md);
    background: var(--clr-white);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    bottom: -10px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--clr-white);
    border-right: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -70px;
    right: 0;
    display: flex;
    font-size: 36px;
    color: var(--clr-ocean);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 30px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: .4s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--clr-emerald);
}

.testimonial-item .d-flex .rounded-circle img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--clr-emerald);
}

.testimonial-stars i {
    color: var(--clr-gold);
    font-size: 15px;
}

/* Gallery section testimonial images */
.testimonial-item img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}


/* ============================================================
   INTERNATIONAL PACKAGES
   ============================================================ */
.international-section {
    padding: 90px 0;
    background: var(--clr-white);
}

.international-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reuses .explore-grid & .explore-card styles */


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--clr-dark);
    color: rgba(255,255,255,.8);
    padding: 70px 0 0;
}

.site-footer .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h4 {
    font-size: 18px;
    color: var(--clr-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    line-height: 2;
    transition: color .3s, padding-left .3s;
}

.footer-col a:hover {
    color: var(--clr-gold);
    padding-left: 4px;
}

.footer-col a {
    display: block;
}

.footer-col i {
    color: var(--clr-emerald);
    margin-right: 8px;
    width: 18px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.75);
    font-size: 16px;
    transition: background .3s, color .3s, transform .3s;
    padding: 0;
}

.footer-social a:hover {
    background: var(--clr-emerald);
    color: var(--clr-white);
    transform: translateY(-2px);
    padding-left: 0;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06);
    color: var(--clr-white);
    font-size: 14px;
    outline: none;
    margin-bottom: 10px;
    transition: border-color .3s;
}

.footer-newsletter input::placeholder {
    color: rgba(255,255,255,.4);
}

.footer-newsletter input:focus {
    border-color: var(--clr-emerald);
}

.footer-newsletter button {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-pill);
    border: none;
    background: linear-gradient(135deg, var(--clr-emerald), var(--clr-ocean-light));
    color: var(--clr-white);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(14,131,136,.35);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
}

.footer-bottom a {
    color: var(--clr-gold);
    display: inline;
    padding: 0;
}

.footer-bottom a:hover {
    color: var(--clr-emerald);
    padding-left: 0;
}

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

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* ============================================================
   ADDITIONAL STYLISH UPGRADES & HERO CHIPS
   ============================================================ */
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-white);
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(255,255,255,.4);
    cursor: pointer;
    transition: background .3s, transform .3s, border-color .3s;
}

.btn-outline-white:hover {
    background: var(--clr-white);
    color: var(--clr-ocean);
    transform: translateY(-2px);
}

.hero-trust-chips {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-trust-chips span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    background: rgba(11,17,32,.45);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.18);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    margin-bottom: 10px;
}

.package-rating span {
    color: var(--clr-muted);
    font-size: 12px;
    margin-left: 6px;
}

.package-inclusions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.package-inclusions span {
    font-size: 12px;
    font-weight: 500;
    color: var(--clr-ocean);
    background: rgba(14,131,136,.08);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.explore-card-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.card-tag {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-white);
    background: rgba(15,44,89,.75);
    backdrop-filter: blur(6px);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    letter-spacing: .5px;
}

.inquiry-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.inquiry-card-header h3 {
    font-size: 26px;
    color: var(--clr-white);
    margin-bottom: 6px;
}

.inquiry-card-header p {
    color: rgba(255,255,255,.8);
    font-size: 14px;
}


/* ============================================================
   FLOATING ACTION STACK (PERFECT VERTICAL ALIGNMENT)
   ============================================================ */


/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-emerald { color: var(--clr-emerald); }
.text-gold    { color: var(--clr-gold); }
.text-ocean   { color: var(--clr-ocean); }
.text-muted-custom { color: var(--clr-muted); }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}

/* Smooth section scroll offset for sticky header */
[id] {
    scroll-margin-top: 80px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f7fb;
}

.gallery-section{
    padding:80px 7%;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#ff6b00;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:42px;
    margin:10px 0;
    color:#222;
}

.section-title p{
    color:#777;
    max-width:600px;
    margin:auto;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:220px;
    gap:18px;
}

.item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.overlay{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.7));
    opacity:0;
    transition:.4s;
}

.overlay h3{
    color:#fff;
    font-size:24px;
    transform:translateY(20px);
    transition:.4s;
}

.item:hover img{
    transform:scale(1.15) rotate(2deg);
}

.item:hover .overlay{
    opacity:1;
}

.item:hover .overlay h3{
    transform:translateY(0);
}

.tall{
    grid-row:span 2;
}

.wide{
    grid-column:span 2;
}

/* Tablet */

@media(max-width:992px){

.gallery{
grid-template-columns:repeat(2,1fr);
grid-auto-rows:220px;
}

.wide{
grid-column:span 1;
}

}

/* Mobile */

@media(max-width:576px){

.gallery{
grid-template-columns:1fr;
grid-auto-rows:260px;
}

.tall,
.wide{
grid-column:span 1;
grid-row:span 1;
}

.section-title h2{
font-size:32px;
}

.gallery-section{
padding:60px 20px;
}

}


.packages{
    padding:60px 8%;
}

.container h1{
    text-align:center;
    color:#0d3b66;
    font-size:42px;
    margin-bottom:10px;
}

.subtitle{
    text-align:center;
    color:#666;
    margin-bottom:40px;
    font-size:18px;
}

.card-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.content{
    padding:20px;
}

.content h2{
    color:#0d3b66;
    margin-bottom:10px;
}

.content p{
    color:#555;
    line-height:1.6;
    margin-bottom:20px;
}

.content a{
    display:inline-block;
    text-decoration:none;
    background:#ff6b35;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    transition:.3s;
}

.content a:hover{
    background:#0d3b66;
}