/* ══════════════════════════════════════════════════════════════════════════════
   Coastal Bengal Tours — Main Stylesheet
   A modern, clean, mobile-first design for a travel website.
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ────────────────────────────────────────────────────────── */
:root {
    --primary: #0077b6;
    --primary-dark: #005f8d;
    --primary-light: #00b4d8;
    --secondary: #e76f51;
    --accent: #2d6a4f;
    --text: #1a1a2e;
    --text-light: #555;
    --text-muted: #888;
    --bg: #ffffff;
    --bg-alt: #f7f8fc;
    --bg-dark: #0f172a;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --container: 1200px;
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

.lead-text { font-size: 1.125rem; line-height: 1.8; color: var(--text-light); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    gap: 0.5rem;
    text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--text); border-color: #fff; }
.btn-white:hover { background: rgba(255,255,255,0.9); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.6rem 0;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}
.logo-icon { font-size: 1.5rem; }
.logo-text { color: #fff; transition: var(--transition); }
.navbar.scrolled .logo-text { color: var(--text); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
}
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link:hover { background: rgba(255,255,255,0.15); }
.navbar.scrolled .nav-link:hover { background: var(--bg-alt); color: var(--primary); }

.nav-cta {
    background: #fff;
    color: var(--primary) !important;
    font-weight: 600;
}
.navbar.scrolled .nav-cta {
    background: var(--primary);
    color: #fff !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: var(--text);
    font-size: 0.9rem;
}
.dropdown-menu li a:hover { background: var(--bg-alt); color: var(--primary); }

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--text); }

/* ── Flash Messages ───────────────────────────────────────────────────────── */
.flash-container { position: fixed; top: 80px; right: 1.5rem; z-index: 2000; max-width: 420px; }
.flash-message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    animation: slideIn 0.3s ease;
    box-shadow: var(--shadow);
}
.flash-success { background: #d1fae5; color: #065f46; border-left: 4px solid #059669; }
.flash-error { background: #fee2e2; color: #991b1b; border-left: 4px solid #dc2626; }
.flash-close { background: none; border: none; cursor: pointer; font-size: 1rem; opacity: 0.6; }
.flash-close:hover { opacity: 1; }

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ── Hero Section ─────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #0077b6 100%);
    overflow: hidden;
    padding-top: 5rem;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.wave {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50% 50% 0 0;
    animation: wave 8s ease-in-out infinite;
}
.wave-1 { bottom: 0; animation-delay: 0s; }
.wave-2 { bottom: 20px; animation-delay: -2s; opacity: 0.5; }
.wave-3 { bottom: 40px; animation-delay: -4s; opacity: 0.3; }

@keyframes wave {
    0%, 100% { transform: translateX(-25%) scaleY(1); }
    50% { transform: translateX(-20%) scaleY(1.3); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.highlight-text {
    background: linear-gradient(135deg, #00b4d8, #f4a261);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); }
.hero-actions .btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
}
.section-badge {
    display: inline-block;
    background: rgba(0,119,182,0.08);
    color: var(--primary);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ── Destination Cards (Home Page) ────────────────────────────────────────── */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}
.dest-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.dest-card-visual {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.dest-icon { font-size: 5rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); z-index: 1; transition: var(--transition); }
.dest-card:hover .dest-icon { transform: scale(1.15); }
.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.dest-card:hover .dest-card-overlay { opacity: 1; }
.dest-explore { color: #fff; font-weight: 600; font-size: 1.1rem; }

.dest-card-body { padding: 1.5rem; flex: 1; }
.dest-card-body h3 { margin-bottom: 0.25rem; }
.dest-tagline { color: var(--primary); font-weight: 500; font-size: 0.85rem; margin-bottom: 0.75rem; }
.dest-desc { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; }
.dest-highlights-mini { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.mini-tag {
    background: var(--bg-alt);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── Features Grid ────────────────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--primary-light); }
.feature-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.feature-card h3 { margin-bottom: 0.5rem; font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; }
.feature-card p { color: var(--text-light); font-size: 0.9rem; }

/* ── Package Cards ────────────────────────────────────────────────────────── */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.packages-grid-full {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.package-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.package-header {
    padding: 1.75rem 1.5rem;
    color: #fff;
    position: relative;
}
.package-dest {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.package-header h3 { color: #fff; font-size: 1.25rem; margin-bottom: 0.25rem; }
.package-duration { font-size: 0.85rem; opacity: 0.85; }

.package-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.package-price { margin-bottom: 1rem; }
.price-amount { font-size: 1.75rem; font-weight: 800; color: var(--text); font-family: var(--font-heading); }
.price-per { color: var(--text-muted); font-size: 0.9rem; }

.package-includes {
    flex: 1;
    margin-bottom: 1.5rem;
}
.package-includes li {
    padding: 0.35rem 0;
    font-size: 0.875rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}
.package-includes li:last-child { border-bottom: none; }

/* ── Filter Bar ───────────────────────────────────────────────────────────── */
.filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    justify-content: center;
}
.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    font-family: var(--font-body);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card p { color: var(--text-light); font-style: italic; font-size: 0.95rem; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1rem;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ── CTA Section ──────────────────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    padding: 5rem 0;
}
.cta-content { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-content h2 { color: #fff; margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-actions .btn-outline:hover { background: #fff; color: var(--text); border-color: #fff; }

/* ── Page Hero (inner pages) ──────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    padding: 8rem 0 4rem;
    text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.page-hero .section-badge { margin-bottom: 1rem; }

/* ── Destination Detail Page ──────────────────────────────────────────────── */
.dest-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}
.dest-hero-content { position: relative; z-index: 1; }
.dest-hero-icon { font-size: 4rem; display: block; margin-bottom: 1rem; }
.dest-hero h1 { color: #fff; margin-bottom: 0.5rem; font-size: clamp(2.5rem, 6vw, 4rem); }
.dest-hero-tagline { color: rgba(255,255,255,0.85); font-size: 1.2rem; margin-bottom: 1rem; }
.dest-hero-meta { display: flex; gap: 2rem; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; flex-wrap: wrap; }

.dest-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}
.dest-detail-main h2 { margin-bottom: 1rem; margin-top: 2.5rem; }
.dest-detail-main h2:first-child { margin-top: 0; }
.dest-detail-main h3 { margin-top: 2rem; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 600; }

.highlights-list { display: flex; flex-direction: column; gap: 0.5rem; }
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    font-size: 0.95rem;
}
.highlight-check { color: var(--primary); font-weight: bold; }

.activities-list { display: flex; flex-direction: column; gap: 1rem; }
.activity-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.activity-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.activity-number {
    width: 40px; height: 40px; min-width: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}
.activity-content h4 { margin-bottom: 0.25rem; font-family: var(--font-body); font-weight: 600; font-size: 1rem; }
.activity-content p { color: var(--text-light); font-size: 0.9rem; }

/* Sidebar */
.dest-detail-sidebar { position: sticky; top: 100px; }
.sidebar-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.sidebar-card h4 { margin-bottom: 1rem; font-family: var(--font-body); font-weight: 600; }
.info-item { margin-bottom: 1rem; }
.info-label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--primary); margin-bottom: 0.25rem; }
.info-value { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

.sidebar-package {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.sidebar-package:last-child { border-bottom: none; }
.sidebar-package:hover { color: var(--primary); }
.sidebar-package strong { display: block; font-size: 0.9rem; }
.sidebar-pkg-duration { font-size: 0.8rem; color: var(--text-muted); }
.sidebar-pkg-price { font-weight: 700; color: var(--primary); font-size: 0.95rem; }

.sidebar-cta { color: #fff; border: none; }
.sidebar-cta h4 { color: #fff; }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* Other destinations */
.other-dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.other-dest-card {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    color: #fff;
    text-align: center;
    transition: var(--transition);
}
.other-dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.other-dest-icon { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.other-dest-card h3 { color: #fff; margin-bottom: 0.5rem; }
.other-dest-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; }

/* ── Package Detail Page ──────────────────────────────────────────────────── */
.package-hero { padding: 8rem 0 4rem; text-align: center; }
.package-hero-dest {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 1rem;
}
.package-hero h1 { color: #fff; margin-bottom: 1rem; }
.package-hero-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    flex-wrap: wrap;
}

.pkg-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}
.pkg-section { margin-bottom: 3rem; }
.pkg-section h2 { margin-bottom: 1.25rem; }

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.75rem;
}
.inclusion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    font-size: 0.9rem;
}
.inclusion-check { color: #059669; font-weight: bold; font-size: 1.1rem; }

/* Itinerary Timeline */
.itinerary-timeline { display: flex; flex-direction: column; }
.itinerary-day { display: flex; gap: 1.25rem; }
.itinerary-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 20px;
}
.marker-dot {
    width: 16px; height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--primary-light);
    flex-shrink: 0;
}
.marker-line {
    width: 2px;
    flex: 1;
    background: var(--primary-light);
    margin: 4px 0;
}
.itinerary-content {
    padding-bottom: 2rem;
}
.itinerary-content h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.itinerary-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

.notes-list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    padding-left: 1.25rem;
    position: relative;
}
.notes-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Booking Card (sidebar) */
.pkg-detail-sidebar { position: sticky; top: 100px; }
.booking-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
    margin-bottom: 1.5rem;
}
.booking-card h3 { margin-bottom: 0.75rem; font-family: var(--font-body); font-weight: 700; }
.booking-price { margin-bottom: 0.25rem; }
.booking-duration { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.booking-highlights { margin-bottom: 1.5rem; text-align: left; }
.booking-highlights li { padding: 0.35rem 0; font-size: 0.85rem; color: var(--text-light); }
.booking-card .btn { margin-bottom: 0.5rem; }
.booking-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; }

/* ── Services Page ────────────────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.5rem; font-family: var(--font-body); font-weight: 600; }
.service-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; }
.service-features li {
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.step-card { text-align: center; padding: 2rem 1.5rem; }
.step-number {
    width: 60px; height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    font-family: var(--font-heading);
}
.step-card h3 { margin-bottom: 0.5rem; font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; }
.step-card p { color: var(--text-light); font-size: 0.9rem; }

/* ── Contact Page ─────────────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-weight: 500; font-size: 0.85rem; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,119,182,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-sidebar { position: sticky; top: 100px; }
.contact-info-card { margin-bottom: 1.5rem; }
.contact-info-card h3 { margin-bottom: 1.25rem; }
.contact-info-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.ci-icon { font-size: 1.25rem; }
.contact-info-item strong { display: block; font-size: 0.85rem; }
.contact-info-item p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* FAQ */
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    font-family: var(--font-body);
    color: var(--text);
    gap: 1rem;
}
.faq-toggle {
    font-size: 1.25rem;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.25rem 1rem;
}
.faq-answer p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ── About Page ───────────────────────────────────────────────────────────── */
.about-content { max-width: 850px; margin: 0 auto; }
.about-text h2 { margin-top: 2rem; margin-bottom: 1rem; }
.about-text h2:first-child { margin-top: 0; }
.about-text p { color: var(--text-light); margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.8; }

.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.5rem; margin-top: 1rem; }
.about-value {
    padding: 1.5rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.about-value h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; margin-bottom: 0.5rem; }
.about-value p { font-size: 0.9rem; margin-bottom: 0; }

.about-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    justify-content: center;
}
.about-stat {
    text-align: center;
    padding: 1.5rem 2rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    min-width: 160px;
}
.about-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}
.about-stat span { font-size: 0.85rem; color: var(--text-muted); }

/* ── 404 Page ─────────────────────────────────────────────────────────────── */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}
.error-content { max-width: 500px; margin: 0 auto; }
.error-icon { font-size: 4rem; display: block; margin-bottom: 1rem; }
.error-content h1 { font-size: 6rem; color: var(--primary); margin-bottom: 0.5rem; }
.error-content h2 { font-family: var(--font-body); font-weight: 600; margin-bottom: 1rem; font-size: 1.3rem; }
.error-content p { color: var(--text-light); margin-bottom: 2rem; }
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer h3 { color: #fff; font-size: 1.15rem; margin-bottom: 1rem; }
.footer h4 { color: #fff; font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 1rem; }
.footer p { font-size: 0.9rem; line-height: 1.7; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul li a { font-size: 0.9rem; transition: var(--transition); }
.footer ul li a:hover { color: var(--primary-light); }
.contact-list li { font-size: 0.85rem; }

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ══════════════════════════════════════════════════════════════════════════════
   DESTINATION V2 — Interactive Destination Page Styles
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Destination Hero V2 ──────────────────────────────────────────────────── */
.dest-hero-v2 {
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-particle {
    position: absolute;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}
@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) scale(1.5); opacity: 0.7; }
}
.dest-hero-v2-content { position: relative; z-index: 2; }
.dest-hero-icon-v2 { font-size: 5rem; display: block; margin-bottom: 1rem; animation: iconBounce 3s ease-in-out infinite; }
@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.dest-hero-v2 h1 { color: #fff; font-size: clamp(3rem, 7vw, 5rem); margin-bottom: 0.5rem; }
.dest-hero-tagline-v2 { color: rgba(255,255,255,0.9); font-size: 1.3rem; margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.dest-hero-chips { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-chip {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
}
.dest-hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: #fff; color: var(--text); border-color: #fff; }

.hero-wave-bottom { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave-bottom svg { width: 100%; height: 80px; }

/* ── Sticky Tab Navigation ────────────────────────────────────────────────── */
.dest-tabs-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    z-index: 50;
    transition: var(--transition);
}
.dest-tabs-nav.tabs-sticky {
    position: fixed;
    left: 0; right: 0;
    box-shadow: var(--shadow-sm);
    z-index: 990;
}
.tabs-scroll {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0;
}
.tabs-scroll::-webkit-scrollbar { display: none; }
.tab-link {
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
    transition: var(--transition);
    border: 1px solid transparent;
}
.tab-link:hover { background: var(--bg-alt); color: var(--primary); }
.tab-link.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ── Overview Grid ────────────────────────────────────────────────────────── */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}
.overview-main .section-badge { margin-bottom: 0.5rem; }
.overview-main h2 { margin-bottom: 1.5rem; }
.overview-para { color: var(--text-light); font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.25rem; }
.highlights-grid-v2 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem; }
.highlight-chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.1rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--text-light);
    transition: var(--transition);
    border: 1px solid transparent;
}
.highlight-chip:hover { border-color: var(--primary-light); background: #fff; box-shadow: var(--shadow-sm); }
.hlc-dot {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Quick Facts Card */
.overview-sidebar { position: sticky; top: 140px; }
.quick-facts-card {
    background: #fff;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.quick-facts-card h4 { margin-bottom: 1.25rem; font-family: var(--font-body); font-weight: 700; }
.qf-item {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.qf-item:last-child { border-bottom: none; }
.qf-label { font-weight: 600; font-size: 0.78rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; }
.qf-value { font-size: 0.9rem; color: var(--text-light); }

.mini-cta-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    color: #fff;
    text-align: center;
}
.mini-cta-card h4 { color: #fff; margin-bottom: 0.5rem; font-family: var(--font-body); font-weight: 700; }
.mini-cta-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 1rem; }

/* ── Activities Grid V2 ──────────────────────────────────────────────────── */
.activities-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}
.activity-card-v2 {
    background: #fff;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}
.activity-card-v2:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.ac-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; }
.ac-icon { font-size: 2rem; }
.ac-meta { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.ac-tag {
    background: var(--bg-alt);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
}
.activity-card-v2 h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; margin-bottom: 0.5rem; }
.activity-card-v2 p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }
.ac-number {
    position: absolute;
    bottom: -10px; right: 10px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0,119,182,0.06);
    font-family: var(--font-heading);
    line-height: 1;
    pointer-events: none;
}

/* ── Nearby Places ────────────────────────────────────────────────────────── */
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1rem;
}
.nearby-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.nearby-card:hover { box-shadow: var(--shadow); border-color: var(--primary-light); transform: translateY(-3px); }
.nearby-icon { font-size: 2rem; flex-shrink: 0; }
.nearby-top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.25rem; flex-wrap: wrap; }
.nearby-top h4 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin: 0; }
.nearby-distance {
    background: var(--primary);
    color: #fff;
    padding: 0.15rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
}
.nearby-content p { color: var(--text-light); font-size: 0.88rem; margin: 0; }

/* ── Food Grid ────────────────────────────────────────────────────────────── */
.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.food-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}
.food-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.food-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.food-veg { background: #d1fae5; color: #065f46; }
.food-nonveg { background: #fee2e2; color: #991b1b; }
.food-card h4 { font-family: var(--font-body); font-weight: 600; margin-bottom: 0.5rem; }
.food-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ── Weather Table ────────────────────────────────────────────────────────── */
.weather-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: #fff;
}
.weather-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.weather-table th {
    padding: 1rem 1.25rem;
    background: var(--bg-dark);
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}
.weather-table td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border);
}
.weather-row { transition: var(--transition); }
.weather-row:hover { background: var(--bg-alt); }
.weather-best td:first-child { border-left: 4px solid #059669; }
.weather-ok td:first-child { border-left: 4px solid #f59e0b; }
.weather-avoid td:first-child { border-left: 4px solid #dc2626; }

.rain-indicator {
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 500;
}
.rain-none { background: #d1fae5; color: #065f46; }
.rain-low { background: #e0f2fe; color: #075985; }
.rain-medium { background: #fef3c7; color: #92400e; }
.rain-high { background: #fee2e2; color: #991b1b; }
.rain-very-high { background: #fecaca; color: #7f1d1d; }

.star-rating { display: flex; gap: 1px; }
.star-on { color: #f59e0b; }
.star-off { color: #e5e7eb; }

.weather-legend {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.wl-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--text-muted); }
.wl-dot { width: 12px; height: 12px; border-radius: 3px; }
.wl-best { background: #059669; }
.wl-ok { background: #f59e0b; }
.wl-avoid { background: #dc2626; }

/* ── Transport Grid ───────────────────────────────────────────────────────── */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.transport-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}
.transport-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.transport-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.transport-card h4 { font-family: var(--font-body); font-weight: 600; margin-bottom: 0.5rem; }
.transport-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; }
.transport-meta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.map-container { margin-top: 3rem; }
.map-container h3 { text-align: center; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 600; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }

/* ── Gallery Grid V2 ─────────────────────────────────────────────────────── */
.gallery-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.gallery-card-v2 {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.gallery-card-v2:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.gallery-visual {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.gallery-num {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.25);
    font-family: var(--font-heading);
}
.gallery-info { padding: 1.25rem; }
.gallery-info h4 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin-bottom: 0.35rem; }
.gallery-info p { color: var(--text-light); font-size: 0.88rem; }

/* ── Tips Grid ────────────────────────────────────────────────────────────── */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}
.tip-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    align-items: flex-start;
}
.tip-card:hover { box-shadow: var(--shadow-sm); border-color: var(--primary-light); }
.tip-number {
    width: 32px; height: 32px; min-width: 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}
.tip-card p { color: var(--text-light); font-size: 0.9rem; margin: 0; line-height: 1.6; }

/* Other Dest Arrow */
.other-dest-arrow {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(5px);
    transition: var(--transition);
}
.other-dest-card:hover .other-dest-arrow { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════════════════════
   IMAGE & INTERACTIVE ENHANCEMENTS
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Hero Slideshow (Home + Destination) ──────────────────────────────────── */
.hero-slideshow,
.dest-hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 8s ease-out;
    transform: scale(1.08);
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.75) 0%, rgba(30,58,95,0.6) 40%, rgba(0,119,182,0.5) 100%);
    z-index: 1;
}
.dest-hero-v2 {
    position: relative;
    overflow: hidden;
}

/* ── Page Hero with Background Image (Packages, Services) ────────────────── */
.page-hero-img {
    position: relative;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.page-hero-img:hover .page-hero-bg {
    transform: scale(1.03);
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.8), rgba(30,58,95,0.65));
    z-index: 1;
}
.page-hero-content {
    position: relative;
    z-index: 2;
}

/* ── Destination Card Images ──────────────────────────────────────────────── */
.dest-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.dest-card:hover .dest-card-img {
    transform: scale(1.1);
}
.dest-card-visual {
    position: relative;
    overflow: hidden;
}
.dest-card-overlay {
    z-index: 2;
}

/* ── Package Card Image Headers ───────────────────────────────────────────── */
.package-header {
    position: relative;
    overflow: hidden;
}
.package-header-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.package-card:hover .package-header-img {
    transform: scale(1.1);
}
.package-header-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.package-header-content {
    position: relative;
    z-index: 2;
}

/* ── Service Card with Image ──────────────────────────────────────────────── */
.service-card-img {
    overflow: hidden;
}
.service-card-visual {
    position: relative;
    height: 180px;
    margin: -2rem -2rem 1.5rem -2rem;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card-img:hover .service-card-visual img {
    transform: scale(1.1);
}
.service-card-icon-overlay {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    transition: transform 0.3s ease;
}
.service-card-img:hover .service-card-icon-overlay {
    transform: scale(1.15) rotate(10deg);
}

/* ── Interactive Hover Parallax on Cards ──────────────────────────────────── */
.dest-card,
.package-card,
.service-card,
.feature-card,
.testimonial-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

/* ── Scroll Reveal Animation ──────────────────────────────────────────────── */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.reveal-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.reveal-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .dest-detail-grid,
    .pkg-detail-grid,
    .contact-grid,
    .overview-grid {
        grid-template-columns: 1fr;
    }
    .dest-detail-sidebar,
    .pkg-detail-sidebar,
    .contact-sidebar,
    .overview-sidebar {
        position: static;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        gap: 0;
        z-index: 999;
    }
    .nav-menu.open { right: 0; }
    .nav-link { color: var(--text) !important; padding: 0.75rem 0; border-bottom: 1px solid var(--border); width: 100%; }
    .nav-cta { background: var(--primary) !important; color: #fff !important; text-align: center; margin-top: 1rem; border-radius: var(--radius); padding: 0.75rem !important; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        background: var(--bg-alt);
        border-radius: var(--radius);
        margin-top: 0.5rem;
    }

    .hero { min-height: auto; padding: 8rem 0 4rem; }
    .dest-hero-v2 { min-height: auto; padding: 8rem 0 5rem; }
    .dest-hero-v2 h1 { font-size: 2.25rem; }
    .dest-hero-chips { flex-direction: column; align-items: center; }
    .tabs-scroll { gap: 0.15rem; }
    .hero-stats { gap: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: 1fr; }
    .activities-grid-v2 { grid-template-columns: 1fr; }
    .nearby-grid { grid-template-columns: 1fr; }
    .food-grid { grid-template-columns: 1fr; }
    .transport-grid { grid-template-columns: 1fr; }
    .gallery-grid-v2 { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.75rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .packages-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
}
