/* =============================================
   ZAYORA HOLIDAY TOURISM – SITE STYLESHEET
   Brand: Deep Navy #1A2F5E | Orange #F5821F | White
   ============================================= */

:root {
    --navy: #1A2F5E;
    --navy-dark: #0f1e3e;
    --navy-light: #2a4a8e;
    --orange: #F5821F;
    --orange-dark: #d46910;
    --orange-light: #ffa04e;
    --white: #ffffff;
    --light: #f4f7fb;
    --gray: #6b7280;
    --gray-light: #e5e9f0;
    --text: #1f2937;
    --green: #10b981;
    --shadow: 0 4px 24px rgba(26,47,94,0.10);
    --shadow-lg: 0 8px 40px rgba(26,47,94,0.18);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: all 0.28s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

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

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange); color: var(--white);
    padding: 13px 28px; border-radius: 50px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.92rem;
    border: none; cursor: pointer; transition: var(--transition);
    box-shadow: 0 4px 14px rgba(245,130,31,0.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,130,31,0.45); color: var(--white); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white);
    padding: 12px 28px; border-radius: 50px; border: 2px solid rgba(255,255,255,0.7);
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.92rem;
    cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-outline-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white);
    padding: 12px 28px; border-radius: 50px; border: 2px solid var(--white);
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.92rem; cursor: pointer; transition: var(--transition);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px; justify-content: center;
    background: #25D366; color: var(--white);
    padding: 13px 28px; border-radius: 50px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.92rem;
    transition: var(--transition); box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: #1db954; transform: translateY(-2px); color: var(--white); }

.btn-full { justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ─── TOP BAR ─── */
.topbar {
    background: var(--navy-dark); color: rgba(255,255,255,0.85);
    padding: 8px 0; font-size: 0.82rem;
    position:sticky;
    top:0px;
    z-index:1001;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--orange); }
.topbar i { color: var(--white); font-size: 0.6rem }
.b2b-badge {
    background: var(--orange); color: var(--white);
    padding: 3px 10px; border-radius: 20px; font-weight: 700; font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
}

/* ─── NAVBAR ─── */
.navbar {
    position: sticky; top: 36px; z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(26,47,94,0.08);
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(26,47,94,0.15); }
.nav-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.3rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: 'Montserrat', sans-serif; font-weight: 900; 
             font-size: 1.5rem; color: var(--navy); letter-spacing: 2px; }
.logo-main-footer {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #325d87;
    letter-spacing: 2px;
}
.logo-sub { font-size: 0.68rem; color: var(--orange); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.nav-links {
    display: flex; align-items: center; gap: 4px;
    margin: 0; padding: 0; margin-left: auto;
}
.nav-links li { position: relative; }
.nav-links a {
    padding: 8px 14px; border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.88rem;
    color: var(--navy); display: flex; align-items: center; gap: 5px;
}
.nav-links a:hover { color: var(--orange); background: var(--light); }
.nav-links a i { font-size: 0.7rem; }
.nav-links li.active > a {
        color: #ff6600; /* text color */
        font-weight: bold;
        border-bottom: 2px solid #ff6600;
    }
/* Dropdown */
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--white); border-radius: var(--radius); padding: 8px;
    min-width: 220px; box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(-8px); transition: var(--transition);
    border: 1px solid var(--gray-light);
}
.dropdown li a { font-size: 0.85rem; border-radius: var(--radius-sm); display: block; }
.dropdown li a:hover { background: var(--light); color: var(--orange); }

.btn-book-nav {
    display: inline-flex; align-items: center;
    background: var(--orange); color: var(--white);
    padding: 10px 20px; border-radius: 50px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem;
    white-space: nowrap; box-shadow: 0 3px 10px rgba(245,130,31,0.3);
    flex-shrink: 0;
}
.btn-book-nav:hover { background: var(--orange-dark); color: var(--white); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    order: 3;
}.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

 /* ─── HERO CAROUSEL ─── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 60px;
}
.hero-title, .hero-sub, .hero-badge {
    animation: heroFadeUp 1s ease-out both;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.35s;
}

.hero-sub {
    animation-delay: 0.7s;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-carousel {
    position: absolute;
    inset: 0;

}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
    transform: none !important; /* ← add this */
}

    .carousel-slide.active {
        opacity: 1;
        z-index: 1;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(10,20,50,0.5) 0%, rgba(15,30,70,0.5) 50%, rgba(20,40,90,0.5) 100%);
}

/* Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .carousel-btn:hover {
        background: var(--orange);
        border-color: var(--orange);
    }

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all .3s;
    border: 2px solid rgba(255,255,255,0.6);
}

    .dot.active {
        background: var(--orange);
        border-color: var(--orange);
        width: 28px;
        border-radius: 5px;
    }

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    color: var(--white);
}
/* ─── BENEFITS STRIP ─── */
.benefits-strip {
    background: var(--orange);
    padding: 18px 0;
}
.benefits-inner {
    display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 16px;
}
.benefit {
    display: flex; align-items: center; gap: 10px;
    color: var(--white); font-weight: 600; font-family: 'Montserrat', sans-serif; font-size: 0.88rem;
}
.benefit i { font-size: 1.1rem; }

/* ─── SECTION COMMONS ─── */
.section { padding: 80px 0; }
.bg-light { background: var(--light); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem;
    color: var(--orange); text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 8px;
}
.section-header h2 { color: var(--navy); margin-bottom: 12px; }
.section-header p { color: var(--gray); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 48px; }
.hl-dubai {
    color: #F5821F;
}
/* orange */
.hl-abudhabi {
    color: #4fc3f7;
}
/* ─── CATEGORY GRID ─── */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}
.category-card {
    display: flex; flex-direction: column; align-items: flex-start;
    padding: 28px 22px; border-radius: var(--radius);
    position: relative; overflow: hidden; transition: var(--transition);
    color: var(--white); cursor: pointer;
    box-shadow: var(--shadow);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: var(--white); }
.cat-orange { background: linear-gradient(135deg, #e65c00, #f9a800); }
.cat-blue   { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.cat-teal   { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.cat-green  { background: linear-gradient(135deg, #166534, #16a34a); }
.cat-gold   { background: linear-gradient(135deg, #92400e, #d97706); }
.cat-purple { background: linear-gradient(135deg, #4c1d95, #7c3aed); }

.cat-icon { font-size: 2.2rem; margin-bottom: 12px; }
.category-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 4px; line-height: 1.2; }
.cat-count { font-size: 0.78rem; opacity: 0.8; }
.cat-arrow {
    position: absolute; bottom: 18px; right: 18px;
    width: 32px; height: 32px; background: rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.category-card:hover .cat-arrow { background: rgba(255,255,255,0.35); }

/* ─── PACKAGE CARDS ─── */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.packages-grid.three-col { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.pkg-card {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); overflow: hidden;
    display: flex; flex-direction: column;
    transition: var(--transition); border: 1px solid transparent;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gray-light); }

.pkg-icon-wrap {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 28px 24px 20px;
    display: flex; align-items: flex-start; justify-content: space-between;
}
.pkg-emoji { font-size: 2.8rem; display: block; }
.pkg-badge {
    padding: 4px 10px; border-radius: 20px; font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
}
.pkg-badge.popular { background: rgba(245,130,31,0.9); color: var(--white); }

.pkg-body { padding: 20px; flex: 1; }
.pkg-cat {
    display: inline-block; font-size: 0.72rem; font-weight: 700;
    color: var(--orange); text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 6px;
}
.pkg-body h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.1rem; }
.pkg-body p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; margin-bottom: 14px; }

.pkg-includes { margin-bottom: 14px; }
.pkg-includes li {
    font-size: 0.82rem; color: var(--gray); display: flex; align-items: center; gap: 6px;
    margin-bottom: 4px;
}
.pkg-includes li i { color: var(--green); font-size: 0.75rem; }
.pkg-includes li.more { color: var(--navy); font-weight: 600; font-size: 0.8rem; }

.pkg-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.pkg-meta span { font-size: 0.8rem; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.pkg-meta i { color: var(--navy); }

.pkg-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--gray-light);
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    flex-wrap: wrap;
}
.pkg-price { display: flex; flex-direction: column; }
.price-label { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }
.price-b2b { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.4rem; color: var(--navy); }
.price-retail { font-size: 0.78rem; color: var(--gray); text-decoration: line-through; }

.pkg-actions { display: flex; gap: 8px; }
.btn-details {
    padding: 8px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--navy);
    color: var(--navy); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem;
    transition: var(--transition);
}
.btn-details:hover { background: var(--navy); color: var(--white); }
.btn-book {
    padding: 8px 14px; border-radius: var(--radius-sm);
    background: var(--orange); color: var(--white);
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem;
    transition: var(--transition);
}
.btn-book:hover { background: var(--orange-dark); color: var(--white); }

/* ─── WHY SECTION ─── */
.why-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.why-card {
    background: var(--white); border-radius: var(--radius);
    padding: 32px 28px; text-align: center;
    box-shadow: var(--shadow); transition: var(--transition);
    border: 1px solid var(--gray-light);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.why-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; font-size: 1.4rem; color: var(--white);
}
.why-card h4 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.why-card p { color: var(--gray); font-size: 0.88rem; }

/* ─── CTA BANNER ─── */
.cta-banner {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 70px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(245,130,31,0.2) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: var(--white); margin-bottom: 14px; }
.cta-content p { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 1rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── PAGE HEADER ─── */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 60px 0; color: var(--white); position: relative; overflow: hidden;
}
.page-header::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(245,130,31,0.15) 0%, transparent 60%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 0.65rem; }

/* ─── FILTER BAR ─── */
.filter-bar { margin-bottom: 28px; display: flex; flex-direction: column; gap: 16px; }
.search-form { display: flex; gap: 10px; align-items: center; }
.search-wrap {
    display: flex; align-items: center; gap: 10px; position:relative;
    background: var(--white); border: 1.5px solid var(--gray-light);
    border-radius: 50px; padding: 10px 18px; flex: 1; max-width: 360px;
}
.search-wrap i { color: var(--gray); }
.search-input { border: none; outline: none; font-size: 0.9rem; width: 100%; background: transparent; }
@media (max-width: 576px) {
    .search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .search-btn {
        width: 100%;
        max-width: none;
        display: block;
    }
}
.cat-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
    padding: 7px 16px; border-radius: 50px; font-size: 0.82rem;
    font-family: 'Montserrat', sans-serif; font-weight: 600;
    border: 1.5px solid var(--gray-light); color: var(--gray);
    background: var(--white); cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.results-info { font-size: 0.85rem; color: var(--gray); margin-bottom: 16px; }

/* ─── DETAIL PAGE ─── */
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.detail-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.detail-card h2 { color: var(--navy); margin-bottom: 14px; }
.detail-card > p { color: var(--gray); margin-bottom: 24px; font-size: 0.95rem; }
.detail-card h3 { color: var(--navy); margin: 24px 0 14px; font-size: 1rem; }
.detail-meta-row { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; padding: 20px; background: var(--light); border-radius: var(--radius-sm); }
.meta-item { display: flex; align-items: center; gap: 12px; }
.meta-item i { font-size: 1.2rem; color: var(--orange); }
.meta-item span { font-size: 0.75rem; color: var(--gray); display: block; }
.meta-item strong { color: var(--navy); font-size: 0.9rem; display: block; }
.includes-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.includes-list li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--gray); }
.includes-list li i { color: var(--green); }

.price-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg); border: 2px solid var(--gray-light); position: sticky; top: 100px; }
.price-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.saving-badge { background: var(--green); color: var(--white); padding: 4px 10px; border-radius: 20px; font-size: 0.78rem; }
.price-display { margin-bottom: 14px; }
.price-from { font-size: 0.78rem; color: var(--gray); display: block; }
.price-main { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2.5rem; color: var(--navy); display: block; line-height: 1; }
.price-per { font-size: 0.78rem; color: var(--gray); }
.price-retail-line { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--gray); margin-bottom: 20px; flex-wrap: wrap; }
.strikethrough { text-decoration: line-through; }
.save-text { color: var(--green); font-weight: 700; }
.price-card .btn-primary, .price-card .btn-whatsapp { margin-bottom: 10px; }
.price-note { font-size: 0.78rem; color: var(--gray); margin-top: 14px; display: flex; gap: 6px; align-items: flex-start; }
.price-note i { color: var(--navy); margin-top: 2px; flex-shrink: 0; }
.related-section { margin-top: 60px; }
.related-section h2 { color: var(--navy); margin-bottom: 28px; }

/* ─── BOOKING FORM ─── */
.booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    white-space: nowrap; /* keep one line */
}

@media (max-width: 360px) {
    .booking-btn {
        white-space: normal; /* wrap only on very small screens */
    }
}
.booking-grid { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.booking-form-wrap { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.booking-form h2 { color: var(--navy); margin-bottom: 22px; font-size: 1.3rem; }
.booking-form h2:not(:first-child) { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--gray-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm);
    font-size: 0.9rem; color: var(--text); background: var(--white);
    transition: var(--transition); font-family: 'Open Sans', sans-serif;
}
.form-control:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,47,94,0.1); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-disclaimer { font-size: 0.8rem; color: var(--gray); text-align: center; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-disclaimer i { color: var(--green); }

.booking-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.sidebar-card h3 { color: var(--navy); margin-bottom: 12px; font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.sidebar-card h3 i { color: var(--orange); }
.sidebar-card p { font-size: 0.85rem; color: var(--gray); margin-bottom: 14px; }
.process-list { list-style: decimal; padding-left: 18px; }
.process-list li { font-size: 0.85rem; color: var(--gray); margin-bottom: 8px; }
.contact-list li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--gray); margin-bottom: 8px; }
.contact-list li i { color: var(--orange); width: 14px; text-align: center; }

/* ─── CONFIRMATION ─── */
.confirmation-section { min-height: 60vh; display: flex; align-items: center; }
.confirmation-card { background: var(--white); border-radius: var(--radius); padding: 56px; box-shadow: var(--shadow-lg); text-align: center; max-width: 600px; margin: 0 auto; }
.confirm-icon { font-size: 4rem; margin-bottom: 16px; }
.confirmation-card h1 { color: var(--navy); margin-bottom: 12px; font-size: 1.8rem; }
.ref-number { background: var(--light); padding: 10px 20px; border-radius: var(--radius-sm); font-family: 'Montserrat', sans-serif; font-size: 0.9rem; margin-bottom: 16px; display: inline-block; color: var(--navy); }
.confirm-msg { color: var(--gray); font-size: 0.95rem; margin-bottom: 28px; }
.confirm-steps { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.step { padding: 10px 18px; border-radius: 50px; font-size: 0.82rem; font-family: 'Montserrat', sans-serif; font-weight: 600; background: var(--light); color: var(--gray); display: flex; align-items: center; gap: 6px; }
.step.done { background: rgba(16,185,129,0.1); color: var(--green); }
.confirm-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h2 { color: var(--navy); margin-bottom: 14px; }
.contact-info > p { color: var(--gray); margin-bottom: 28px; }
.contact-methods { margin-bottom: 24px; }
.contact-method { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.cm-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: var(--light); display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--navy);
}
.cm-icon.whatsapp { background: rgba(37,211,102,0.1); color: #25D366; }
.contact-method h4 { color: var(--navy); margin-bottom: 2px; font-size: 0.9rem; }
.contact-method p { color: var(--gray); font-size: 0.85rem; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-text { }
.about-text h2 { color: var(--navy); margin-bottom: 16px; }
.about-text p { color: var(--gray); margin-bottom: 16px; font-size: 0.95rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.astat { text-align: center; padding: 20px; background: var(--light); border-radius: var(--radius-sm); }
.astat span { display: block; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2rem; color: var(--orange); }
.astat label { font-size: 0.8rem; color: var(--gray); font-weight: 600; }
.about-highlights { display: flex; flex-direction: column; gap: 16px; }
.highlight-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: flex-start; gap: 8px; border-left: 4px solid var(--orange); }
.highlight-card i { font-size: 1.4rem; color: var(--orange); }
.highlight-card h4 { color: var(--navy); font-size: 0.95rem; }
.highlight-card p { color: var(--gray); font-size: 0.85rem; margin: 0; }

/* ─── ALERT ─── */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 24px; font-size: 0.9rem; }
.alert-success { background: rgba(16,185,129,0.1); color: #065f46; border: 1px solid rgba(16,185,129,0.3); }

/* ─── EMPTY STATE ─── */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { color: var(--navy); margin-bottom: 8px; }
.empty-state p { color: var(--gray); margin-bottom: 24px; }

/* ─── FOOTER ─── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 60px 0 0; position: relative; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer-col h4 { color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 16px; font-size: 0.95rem; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75);
    display: flex; align-items: center; justify-content: center; font-size: 0.88rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--orange); color: var(--white); }
.footer-col .contact-list li i { color: var(--orange); }
.footer-bottom {
    background: rgba(0,0,0,0.25); padding: 16px 20px; text-align: center;
    font-size: 0.8rem; color: rgba(255,255,255,0.45);
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); color: var(--white); }
.wa-tooltip {
    position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
    background: var(--navy-dark); color: var(--white);
    padding: 6px 12px; border-radius: var(--radius-sm); font-size: 0.8rem;
    white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .detail-grid { grid-template-columns: 1fr; }
    .price-card { position: static; }
    .booking-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 12px;
        box-shadow: var(--shadow-lg);
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links li {
            width: 100%;
        }

        .nav-links a {
            width: 100%;
        }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 12px;
    }

    .nav-toggle {
        display: flex;
    }

    .btn-book-nav {
        display: none;
    }

    .nav-inner {
        position: relative;
    }

    .nav-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    .nav-brand {
        order: 1;
    }

    .btn-book-nav {
        display: none;
    }

    .nav-links {
        order: 2;
    }




    .hero { min-height: 80vh; padding: 60px 0 80px; }
    .hero-stats {
        display: flex;
        align-items: center;
        gap: 0;
        margin-bottom: 36px;
        background: rgba(255,255,255,0.10);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: var(--radius);
        padding: 16px 28px;
        width: fit-content;
    }
    .hero-title {
        font-size: clamp(3rem, 11vw, 4.2rem);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 18px;
        text-shadow: 0 2px 20px rgba(0,0,0,0.4);
        letter-spacing: -0.5px;
    }
    
    /* sky blue */
    .hero-sub {
        font-size: 1.05rem;
        color: rgba(255,255,255,0.85);
        margin-bottom: 32px;
        max-width: 540px;
        line-height: 1.7;
        text-shadow: 0 1px 8px rgba(0,0,0,0.3);
    }

    .hero-badge {
        display: inline-block;
        background: rgba(245,130,31,0.25);
        border: 1px solid rgba(245,130,31,0.6);
        color: #ffc07a;
        padding: 6px 18px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 22px;
        letter-spacing: 0.5px;
    }
    .hero-title, .hero-sub, .hero-badge {
        animation: heroFadeUp 1s ease-out both;
    }

    .hero-badge {
        animation-delay: 0.1s;
    }

    .hero-title {
        animation-delay: 0.35s;
    }

    .hero-sub {
        animation-delay: 0.7s;
    }

    @keyframes heroFadeUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .stat { padding: 0 14px; }
    .section { padding: 56px 0; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .includes-list { grid-template-columns: 1fr; }
    .topbar-right .b2b-badge { display: none; }
    .benefits-inner { gap: 10px; justify-content: flex-start; }
}

@media (max-width: 480px) {
    .category-grid { grid-template-columns: 1fr; }
    .hero-stats { display: none; }
    .confirmation-card { padding: 32px 20px; }
    .booking-form-wrap { padding: 24px; }
}

/* ─── PACKAGE IMAGE STYLES (added for real images) ─── */
.pkg-img-wrap { position: relative; overflow: hidden; }
.pkg-img {
    width: 100%; height: 180px; object-fit: cover; display: block;
    background: var(--light); transition: transform .4s ease;
}
.pkg-card:hover .pkg-img { transform: scale(1.04); }
.pkg-img-wrap .pkg-badge {
    position: absolute; top: 10px; right: 10px;
}

/* Detail page full image */
.detail-hero-img {
    width: 100%; height: 260px; object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0; display: block;
}

/* Why card emoji icon */
.why-icon { font-size: 2rem; margin-bottom: 14px; }

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index:50;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 30px;
}

.whatsapp-menu {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
}
    .whatsapp-menu a {
        display: flex;
        align-items: center;
        gap: 8px;
        color: black; /* Phone number color */
        font-size: 12px; /* Phone number size */
        text-decoration: none;
        padding: 6px 10px;
    }
        .whatsapp-menu a:hover {
            background-color: #f0f0f0;
            color: gray;
            border-radius: 4px;
        }
        .whatsapp-menu a .whatsapp-icon {
            color: #25D366; /* WhatsApp green */
            font-size: 20px; /* Icon size */
        }
.whatsapp-icon {
    color: #25D366; /* Official WhatsApp green */
    font-size: 12px;
}
.hero-stats {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 16px 28px;
    width: fit-content;
    margin-bottom: 36px;
    gap: 0;
}

.stat {
    text-align: center;
    padding: 0 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: #F5821F;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}
/* ─── MOBILE HERO & CAROUSEL FIXES ─── */
@media (max-width: 768px) {

    /* Carousel stays within screen */
    .hero {
        min-height: 100svh;
        height: auto;
        padding: 80px 16px 100px;
        overflow: visible;
        display: flex;
        align-items: flex-start;
    }

    .hero-carousel {
        position: absolute;
        inset: 0;
        width: 100%;
        overflow: hidden;
    }

    .carousel-slide {
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
    }
    .carousel-dots {
        bottom: 12px;
        position: absolute;
    }

    /* Push content up so buttons are visible */
   
    /* Text fits screen */
    .hero-content {
        max-width: 100%;
        padding: 0;
        text-align: center;
        margin-top: 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .hero-sub {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 13px;
        margin-bottom: 14px;
    }
    .hero-title, .hero-sub, .hero-badge {
        animation: heroFadeUp 1.4s ease-out both;
    }

    .hero-badge {
        animation-delay: 0.1s;
    }

    .hero-title {
        animation-delay: 0.35s;
    }

    .hero-sub {
        animation-delay: 0.7s;
    }

    @keyframes heroFadeUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* Stats wrap and shrink */
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        padding: 12px 16px;
        gap: 0;
        margin-bottom: 22px;
    }

    .stat {
        padding: 6px 12px;
    }

    .stat-num {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.62rem;
    }

    .stat-divider {
        height: 28px;
    }

    /* Buttons stack */
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Arrow buttons smaller */
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }

    /* Dots closer to bottom */
    .carousel-dots {
        bottom: 16px;
    }

    /* Topbar hide on mobile */
    .topbar {
        display: none;
    }

    /* Navbar back to top:0 since topbar hidden */
    .navbar {
        top: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        background: rgba(255,255,255,0.1);
    }

    .stat-divider {
        display: none;
    }

    .stat {
        border-right: none;
        padding: 10px;
    }
}