/* ============================================================
   TOUR EXPERT – Main Stylesheet
   Brand Colors: Navy #0d1f3c | Orange #e84118 | Green #1a7a3c | Gold #f4c430
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --navy:        #0d1f3c;
    --navy-dark:   #060f1e;
    --navy-mid:    #132a4e;
    --navy-light:  #1a3660;
    --orange:      #e84118;
    --orange-dark: #c4330f;
    --orange-light:#ff5733;
    --green:       #1a7a3c;
    --green-dark:  #145e2e;
    --green-light: #22a050;
    --gold:        #f4c430;
    --gold-dark:   #d4a017;
    --white:       #ffffff;
    --off-white:   #f8f9fc;
    --light-gray:  #eef1f6;
    --gray:        #8899aa;
    --dark-text:   #1a2640;
    --body-text:   #3d4f66;
    --border:      #dde3ee;

    --font-primary: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-script:  'Dancing Script', cursive;

    --shadow-sm:  0 2px 8px rgba(13,31,60,0.08);
    --shadow-md:  0 6px 24px rgba(13,31,60,0.14);
    --shadow-lg:  0 16px 48px rgba(13,31,60,0.18);
    --shadow-xl:  0 24px 64px rgba(13,31,60,0.22);

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--body-text);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--navy-dark);
    padding: 8px 0;
    border-bottom: 2px solid var(--orange);
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-link {
    color: #b0bfd0;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.top-link:hover { color: var(--orange); }
.top-link i { color: var(--orange); }

.top-badge {
    color: #8899aa;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.top-badge i { color: var(--gold); }

.top-whatsapp {
    background: #25D366;
    color: var(--white) !important;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}
.top-whatsapp:hover { background: #1ebe5b; color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
}

.navbar { padding: 10px 0; }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: var(--dark-text);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: calc(100% - 28px); }
.nav-link:hover, .nav-link.active { color: var(--orange); }
.nav-link i { font-size: 0.65rem; transition: var(--transition); }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 999;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .nav-link i { transform: rotate(180deg); }

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--body-text);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}
.dropdown-item:hover {
    background: var(--off-white);
    color: var(--orange);
    padding-left: 24px;
}
.dropdown-item i {
    width: 16px;
    color: var(--orange);
    font-size: 0.8rem;
}

.nav-cta {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232,65,24,0.35);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232,65,24,0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}
.btn-secondary:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-green {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(26,122,60,0.35);
}
.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26,122,60,0.45);
    color: var(--white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    box-shadow: 0 4px 20px rgba(244,196,48,0.35);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(244,196,48,0.5);
    color: var(--navy-dark);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    box-shadow: 0 4px 20px rgba(255,255,255,0.25);
}
.btn-white:hover {
    background: var(--off-white);
    color: var(--orange);
    transform: translateY(-2px);
}

.btn-lg { padding: 15px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
    background: #1ebe5b;
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 110px 0; }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy-dark { background: var(--navy-dark); color: var(--white); }
.bg-light { background: var(--off-white); }
.bg-white { background: var(--white); }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,65,24,0.1);
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(232,65,24,0.2);
    margin-bottom: 12px;
}
.bg-navy .section-badge,
.bg-navy-dark .section-badge {
    background: rgba(244,196,48,0.12);
    color: var(--gold);
    border-color: rgba(244,196,48,0.25);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-text);
    margin-bottom: 16px;
}
.bg-navy .section-title,
.bg-navy-dark .section-title { color: var(--white); }

.section-title span { color: var(--orange); }
.bg-navy .section-title span,
.bg-navy-dark .section-title span { color: var(--gold); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--body-text);
    max-width: 600px;
}
.bg-navy .section-subtitle,
.bg-navy-dark .section-subtitle { color: rgba(255,255,255,0.7); }

.section-header { margin-bottom: 50px; }
.section-header.text-center { text-align: center; }
.section-header.text-center .section-subtitle { margin: 0 auto; }
.section-header.text-center .section-badge { margin-left: auto; margin-right: auto; display: flex; width: fit-content; }

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    border-radius: 4px;
    margin: 16px 0;
}
.text-center .divider { margin: 16px auto; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-dark);
}

.hero-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease-out;
    will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(
        135deg,
        rgba(6,15,30,0.88) 0%,
        rgba(13,31,60,0.72) 40%,
        rgba(13,31,60,0.45) 70%,
        rgba(6,15,30,0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 120px 0 100px;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244,196,48,0.15);
    color: var(--gold);
    border: 1px solid rgba(244,196,48,0.4);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    animation: fadeInDown 0.8s ease both;
}
.hero-badge i { color: var(--gold); }

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title .script {
    font-family: var(--font-script);
    font-size: 0.65em;
    font-weight: 700;
    color: var(--gold);
    display: block;
}
.hero-title .highlight { color: var(--orange); }

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 28px;
    max-width: 540px;
    animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
    animation: fadeInUp 0.9s ease 0.3s both;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-tag i { color: var(--gold); }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
    animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.5s both;
}
.hero-stat {
    text-align: center;
}
.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.hero-stat .stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.hero-stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.2);
    align-self: stretch;
}

/* Hero Floating Card */
.hero-package-card {
    position: absolute;
    right: 60px;
    bottom: 80px;
    width: 280px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 20px;
    color: var(--white);
    animation: fadeInRight 1s ease 0.6s both;
    z-index: 3;
}
.hero-package-card .card-badge {
    background: var(--orange);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    display: inline-block;
}
.hero-package-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--gold);
}
.hero-package-card p { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin-bottom: 10px; }
.hero-package-card .price-tag {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
}
.hero-package-card .price-tag span { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.65); }
.hero-package-card .card-meta {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.hero-package-card .card-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
}
.hero-package-card .card-meta-item i { color: var(--gold); }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}
.scroll-indicator .scroll-dot {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 14px;
    position: relative;
}
.scroll-indicator .scroll-dot::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}

/* ============================================================
   FEATURES / WHY CHOOSE US BAR
   ============================================================ */
.features-bar {
    background: var(--orange);
    padding: 0;
    position: relative;
    z-index: 10;
}

.features-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-right: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(0,0,0,0.1); }

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}
.feature-text p { font-size: 0.78rem; color: rgba(255,255,255,0.8); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,65,24,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }

.service-icon.orange { background: rgba(232,65,24,0.1); color: var(--orange); }
.service-icon.green  { background: rgba(26,122,60,0.1); color: var(--green); }
.service-icon.navy   { background: rgba(13,31,60,0.1); color: var(--navy); }
.service-icon.gold   { background: rgba(244,196,48,0.15); color: var(--gold-dark); }
.service-icon.purple { background: rgba(100,50,180,0.1); color: #6432b4; }
.service-icon.teal   { background: rgba(20,150,140,0.1); color: #14968c; }

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.88rem;
    color: var(--body-text);
    line-height: 1.6;
}

/* ============================================================
   PACKAGES SECTION
   ============================================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.package-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.package-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.package-card:hover .package-img-wrap img { transform: scale(1.08); }

.package-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}
.package-badge.green { background: var(--green); }
.package-badge.gold { background: var(--gold); color: var(--navy-dark); }

.package-duration {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(13,31,60,0.85);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 5px;
}
.package-duration i { color: var(--gold); }

.package-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.package-destination {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.package-destination i { font-size: 0.75rem; }

.package-body h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.package-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.include-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--off-white);
    color: var(--body-text);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}
.include-tag i { color: var(--green); font-size: 0.65rem; }

.package-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.package-price {
    display: flex;
    flex-direction: column;
}
.package-price .starting { font-size: 0.72rem; color: var(--gray); }
.package-price .amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}
.package-price .per-person { font-size: 0.72rem; color: var(--gray); }

/* ============================================================
   DESTINATIONS SECTION
   ============================================================ */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 260px;
    cursor: pointer;
    display: block;
    transition: var(--transition);
}
.dest-card:hover { transform: scale(1.02); box-shadow: var(--shadow-xl); }

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.dest-card:hover img { transform: scale(1.1); }

.dest-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to top, rgba(6,15,30,0.85) 0%, rgba(6,15,30,0.2) 60%, transparent 100%);
    transition: var(--transition);
}
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(6,15,30,0.9) 0%, rgba(6,15,30,0.4) 60%, transparent 100%); }

.dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: var(--white);
}
.dest-info h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.dest-info p { font-size: 0.78rem; color: rgba(255,255,255,0.75); }

.dest-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--green);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-color: var(--orange);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(232,65,24,0.4);
}

.pricing-card:hover:not(.featured) {
    background: rgba(255,255,255,0.08);
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.2);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.pricing-pax {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
}
.pricing-card.featured .pricing-pax { color: rgba(255,255,255,0.8); }

.pricing-card .price {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-card .per-person {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
}
.pricing-card.featured .per-person { color: rgba(255,255,255,0.85); }

.pricing-features {
    text-align: left;
    margin-bottom: 28px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.95); }
.pricing-card.featured .pricing-features li i { color: var(--white); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image-wrap {
    position: relative;
}
.why-image-wrap img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.why-badge-float {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 140px;
}
.why-badge-float .big-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}
.why-badge-float p { font-size: 0.78rem; color: var(--gray); font-weight: 500; }

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    background: var(--white);
}
.why-item:hover {
    border-color: rgba(232,65,24,0.2);
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
}

.why-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.why-icon.orange { background: rgba(232,65,24,0.1); color: var(--orange); }
.why-icon.green  { background: rgba(26,122,60,0.1); color: var(--green); }
.why-icon.navy   { background: rgba(13,31,60,0.08); color: var(--navy); }
.why-icon.gold   { background: rgba(244,196,48,0.15); color: var(--gold-dark); }

.why-text h4 { font-size: 1rem; font-weight: 700; color: var(--dark-text); margin-bottom: 4px; }
.why-text p  { font-size: 0.85rem; color: var(--body-text); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}
.stars i { color: var(--gold); font-size: 0.9rem; }

.testimonial-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.author-info h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.author-info p  { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 40%, #8b0000 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}
.cta-inner h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 14px;
}
.cta-inner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: rgba(232,65,24,0.2); }

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-card-icon.green { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.contact-card-icon.navy  { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); }
.contact-card-icon.gold  { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy-dark); }

.contact-card-body h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark-text); margin-bottom: 4px; }
.contact-card-body p, .contact-card-body a {
    font-size: 0.88rem;
    color: var(--body-text);
    line-height: 1.5;
}
.contact-card-body a:hover { color: var(--orange); }

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.contact-form-wrap h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark-text); }

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--dark-text);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232,65,24,0.1);
}
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }

.form-submit {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.form-success {
    display: none;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 14px;
    border-radius: var(--radius-md);
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #a5d6a7;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,65,24,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; color: var(--white); }
.page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 14px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { color: var(--gold); font-size: 0.6rem; }
.breadcrumb .current { color: var(--gold); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 220px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(13,31,60,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 1.8rem; }

/* ============================================================
   FLOAT BUTTONS
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    z-index: 998;
    transition: var(--transition);
    animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    background: #1ebe5b;
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy-dark);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--navy-dark);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.call-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 24px rgba(232,65,24,0.5);
    z-index: 998;
    transition: var(--transition);
    animation: pulse-orange 2.5s infinite 0.5s;
}
.call-float:hover { transform: scale(1.1); color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.75);
    position: relative;
}

.footer-wave { line-height: 0; margin-bottom: -2px; background: var(--off-white); }
.footer-wave svg { width: 100%; height: 50px; }

.footer-main { padding: 70px 0 40px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 40px;
}

.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 10px;
}
.footer-tagline em { color: var(--gold); font-style: normal; }

.footer-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.trust-badge i { color: var(--gold); }

.footer-heading {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-links a i { color: var(--orange); font-size: 0.65rem; }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-contact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.footer-contact-list li > i {
    color: var(--orange);
    font-size: 1rem;
    margin-top: 2px;
    width: 16px;
    flex-shrink: 0;
}
.footer-contact-list div strong {
    display: block;
    font-size: 0.8rem;
    color: var(--white);
    margin-bottom: 3px;
}
.footer-contact-list div span,
.footer-contact-list div a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}
.footer-contact-list div a:hover { color: var(--gold); }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
}
.social-btn:hover { transform: translateY(-3px) scale(1.1); color: var(--white); }
.social-btn.fb { background: #1877F2; }
.social-btn.ig { background: linear-gradient(45deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn.wa { background: #25D366; }
.social-btn.yt { background: #FF0000; }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 18px 0;
    text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-bottom strong { color: var(--white); }
.footer-sub { margin-top: 4px; }
.footer-sub a { color: var(--orange); }
.footer-sub a:hover { color: var(--gold); }

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: var(--navy-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { height: 70px; width: auto; }
.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.12);
    border-radius: 3px;
    overflow: hidden;
}
.loader-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    border-radius: 3px;
    animation: loaderSlide 1.2s ease-in-out infinite;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes scrollDot {
    0% { top: 6px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}
@keyframes pulse-green {
    0% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 36px rgba(37,211,102,0.75), 0 0 0 12px rgba(37,211,102,0.1); }
    100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
}
@keyframes pulse-orange {
    0% { box-shadow: 0 6px 24px rgba(232,65,24,0.5); }
    50% { box-shadow: 0 6px 36px rgba(232,65,24,0.75), 0 0 0 12px rgba(232,65,24,0.1); }
    100% { box-shadow: 0 6px 24px rgba(232,65,24,0.5); }
}
@keyframes loaderSlide {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

/* Scroll-reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.mt-auto { margin-top: auto; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.mb-0 { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE – TABLETS (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .nav-links { gap: 2px; }
    .nav-link { padding: 8px 10px; font-size: 0.85rem; }
    .hero-package-card { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
    .why-grid { grid-template-columns: 1fr; }
    .why-image-wrap { max-width: 500px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .features-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-lg { padding: 70px 0; }

    /* Top bar */
    .top-bar-right .top-badge { display: none; }

    /* Navigation mobile */
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 40px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-links.open { transform: translateX(0); }

    .nav-link {
        color: var(--white);
        width: 100%;
        padding: 14px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        border-radius: 0;
    }
    .nav-link::after { display: none; }
    .nav-link.active { color: var(--gold); }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 0 16px;
    }
    .dropdown-item { color: rgba(255,255,255,0.6); padding: 10px 0; font-size: 0.9rem; }
    .dropdown-item:hover { background: transparent; color: var(--gold); padding-left: 8px; }

    /* Hero */
    .hero { min-height: auto; }
    .hero-content { padding: 100px 0 60px; max-width: 100%; }
    .hero-stats { gap: 20px; }
    .hero-stat-divider { display: none; }

    /* Grids */
    .services-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .destinations-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .features-bar-inner { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .why-badge-float { display: none; }
}

@media (max-width: 480px) {
    .destinations-grid { grid-template-columns: 1fr; }
    .features-bar-inner { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .gallery-grid { grid-template-columns: 1fr; }
}
