@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;600;700&display=swap');

:root {
    /* Refined Color Palette — Warm Safari Luxe */
    --primary: #B8860B;         /* Safari Gold (DarkGoldenrod) */
    --primary-light: #D4A855;
    --primary-dark: #8B6914;
    --accent: #2D5016;          /* Deep Savanna Green */
    --bg-dark: #141418;         /* Rich Ebony */
    --bg-warm: #F9F7F2;         /* Warm Sand */
    --bg-cream: #FDFCF9;        /* Lighter Cream */
    --bg-light: #F5F0E8;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;       /* Deep Ebony */
    --text-body: #3D3D3D;       /* Softer body text */
    --text-muted: #7A7A7A;
    --border-subtle: rgba(0, 0, 0, 0.06);
    --overlay: rgba(0, 0, 0, 0.4);
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 50px rgba(0,0,0,0.12);
    
    /* Spacing & Sizing */
    --container-width: 1240px;
    --header-height: 80px;
    --section-pad: 8rem;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-warm);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-weight: 600;
}

ul {
    list-style: none;
}

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

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

nav.scrolled {
    background: rgba(253, 252, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    height: 68px;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1;
    display: flex;
    align-items: center;
}

nav.scrolled .logo {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
    height: 100%;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
    line-height: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

nav.scrolled .nav-links a {
    color: var(--text-dark);
    text-shadow: none;
}

/* --- Menu Toggle --- */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

nav.scrolled .menu-toggle {
    color: var(--text-dark);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center; /* Changed from flex-end to center for better overall alignment */
    justify-content: flex-start;
    background: var(--bg-dark);
    color: var(--white);
    text-align: left;
    padding-top: var(--header-height); /* Ensure space for fixed header */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.05) 40%,
        rgba(0,0,0,0.4) 70%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    padding: 2rem 2.5rem;
}

.hero-tagline {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    background: rgba(184, 134, 11, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    border-left: 3px solid var(--primary);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--white);
    text-transform: none;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
    max-width: 480px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

/* --- Section Styling --- */
section {
    padding: var(--section-pad) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* --- Destination Grid --- */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.country-card {
    position: relative;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    background-color: #2D2D2D;
}

.country-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    color: var(--white);
    z-index: 2;
    transition: var(--transition-smooth);
}

.country-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.attractions {
    font-size: 0.85rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.country-card:hover .attractions {
    opacity: 1;
    max-height: 180px;
    margin-top: 0.5rem;
}

/* --- Experiences Section --- */
.experiences {
    background-color: var(--bg-cream);
    overflow: hidden;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 1rem 0;
}

.experience-card {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.experience-card:hover img {
    transform: scale(1.15);
}

.exp-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.experience-card:hover .exp-overlay {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.15);
}

.exp-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    display: block;
    margin-bottom: 0.8rem;
}

.experience-card h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.experience-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.experience-card:hover p {
    opacity: 1;
    max-height: 100px;
}

.exp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exp-link i {
    transition: transform 0.3s ease;
}

.exp-link:hover i {
    transform: translateX(5px);
}

/* --- Facts Section --- */
.facts {
    background: var(--bg-dark);
    color: var(--white);
}

.facts h2 {
    color: var(--white);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.fact-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.fact-item p {
    font-size: 1.1rem;
    font-weight: 300;
}

/* --- Interactive Itineraries --- */
.itineraries {
    background: var(--bg-cream);
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.itinerary-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.itinerary-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.itinerary-header {
    margin-bottom: 2.5rem;
}

.itinerary-tag {
    font-size: 0.75rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    display: inline-block;
}

.itinerary-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.itinerary-header p {
    color: var(--text-muted);
    font-weight: 500;
}

.timeline {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(0,0,0,0.1);
}

.timeline-step {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-num {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-num {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.2);
}

.step-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.step-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    text-align: center;
    border-radius: 100px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

/* --- Hero Tagline --- */
.hero-tagline {
    display: inline-block;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-light);
    border: 1px solid rgba(212, 168, 85, 0.4);
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
}

/* ==============================================
   TRAVELER UTILITY HUB — Premium Dashboard
   ============================================== */
.utility-hub {
    background: linear-gradient(165deg, #0F0F12 0%, #1A1A20 50%, #12120F 100%);
    color: var(--white);
}
.utility-hub .section-header h2 { color: var(--white); }
.utility-hub .section-header p { color: rgba(255,255,255,0.6); }
.utility-hub .section-header h2::after { background: var(--primary-light); }

/* Hub Grid — Bento Layout */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Card Base */
.hub-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
}
.hub-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}
.hub-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.hub-card-header h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin: 0;
}
.hub-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(184,134,11,0.15);
    border-radius: 10px;
    color: var(--primary-light);
    font-size: 1rem;
}
.hub-icon--red {
    background: rgba(220,60,60,0.15);
    color: #FF6B6B;
}

/* --- 1. Currency Converter --- */
.hub-input-row {
    display: flex; gap: 1rem; margin-bottom: 1.2rem;
}
.hub-input-group {
    flex: 1; display: flex; flex-direction: column; gap: 0.4rem;
}
.hub-input-group label {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
}
.hub-input-group input,
.hub-input-group select {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
}
.hub-input-group input:focus,
.hub-input-group select:focus {
    outline: none;
    border-color: var(--primary);
}
.hub-currency-results {
    display: flex; flex-direction: column; gap: 0;
}
.hub-cur-row {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.55rem 0.7rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.85rem;
    transition: background 0.2s;
}
.hub-cur-row:hover { background: rgba(255,255,255,0.04); border-radius: 8px; }
.hub-cur-row:last-child { border-bottom: none; }
.hub-flag { font-size: 1.1rem; }
.hub-cur-name { flex: 1; color: rgba(255,255,255,0.7); }
.hub-cur-val { font-weight: 700; color: var(--primary-light); font-variant-numeric: tabular-nums; }
.hub-converter-note {
    margin-top: 0.8rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    text-align: right;
}

/* --- 2. Visa & Health Matrix --- */
.hub-search {
    position: relative; margin-bottom: 1rem;
}
.hub-search i {
    position: absolute; left: 0.8rem; top: 50%; transform: translateY(-50%);
    color: rgba(255,255,255,0.3); font-size: 0.8rem;
}
.hub-search input {
    width: 100%; padding: 0.65rem 0.8rem 0.65rem 2.2rem;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--white); font-family: inherit; font-size: 0.85rem;
}
.hub-search input:focus { outline: none; border-color: var(--primary); }
.hub-matrix { max-height: 320px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--primary) transparent; }
.hub-matrix-head {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 0.5rem; padding: 0.5rem 0.7rem;
    font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px;
    color: rgba(255,255,255,0.4); border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky; top: 0; background: #15151a;
}
.hub-matrix-row {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 0.5rem; padding: 0.6rem 0.7rem;
    align-items: center; font-size: 0.82rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
}
.hub-matrix-row:hover { background: rgba(255,255,255,0.04); }

/* Color-coded Badges */
.badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}
.badge--green { background: rgba(34,197,94,0.15); color: #4ADE80; }
.badge--yellow { background: rgba(234,179,8,0.15); color: #FACC15; }
.badge--red { background: rgba(239,68,68,0.15); color: #F87171; }

/* --- 3. Best Time to Visit --- */
.hub-legend {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.7rem; color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}
.legend-dot {
    width: 10px; height: 10px; border-radius: 3px; display: inline-block;
}
.legend-peak { background: #4ADE80; }
.legend-shoulder { background: #FACC15; }
.legend-off { background: rgba(255,255,255,0.15); }

.hub-season-grid { display: flex; flex-direction: column; gap: 0; }
.season-head, .season-row {
    display: grid; grid-template-columns: 60px repeat(12, 1fr); gap: 3px;
    align-items: center;
}
.season-head {
    font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px;
    color: rgba(255,255,255,0.4); padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.season-head span { text-align: center; }
.season-head span:first-child { text-align: left; }
.season-row { padding: 0.35rem 0; }
.season-row span:first-child {
    font-size: 0.75rem; font-weight: 500;
}
.s-peak, .s-shoulder, .s-off {
    height: 14px; border-radius: 3px;
}
.s-peak { background: rgba(74,222,128,0.7); }
.s-shoulder { background: rgba(250,204,21,0.5); }
.s-off { background: rgba(255,255,255,0.08); }

/* --- 4. Weather Dashboard --- */
.hub-weather-grid { display: flex; flex-direction: column; gap: 0; }
.weather-city {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.5rem 0.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.85rem;
    transition: background 0.2s;
}
.weather-city:hover { background: rgba(255,255,255,0.04); border-radius: 8px; }
.weather-city:last-child { border-bottom: none; }
.weather-flag { font-size: 1.1rem; }
.weather-name { flex: 1; color: rgba(255,255,255,0.7); }
.weather-temp { font-weight: 700; color: var(--white); font-variant-numeric: tabular-nums; }
.weather-icon { font-size: 1.2rem; }

/* --- 5. Emergency Contacts --- */
.hub-emergency-list { display: flex; flex-direction: column; gap: 0; }
.emg-row {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.5rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.82rem;
}
.emg-row:last-child { border-bottom: none; }
.emg-flag { font-size: 1rem; }
.emg-country { font-weight: 600; min-width: 90px; color: rgba(255,255,255,0.85); }
.emg-nums { color: rgba(255,255,255,0.5); font-size: 0.75rem; }

/* --- 6. Packing Wizard --- */
.hub-pack-tabs {
    display: flex; gap: 0.5rem; margin-bottom: 1rem; flex-wrap: wrap;
}
.hub-tab {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.2s;
}
.hub-tab:hover { background: rgba(255,255,255,0.12); }
.hub-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.hub-pack-progress { margin-bottom: 1rem; }
.hub-progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}
.hub-progress-fill {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 100px;
    transition: width 0.3s ease;
}
.hub-progress-text {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
}
.hub-pack-list { display: flex; flex-direction: column; gap: 0.5rem; }
.hub-pack-item {
    display: flex; align-items: center; gap: 0.7rem;
    cursor: pointer; font-size: 0.85rem;
    padding: 0.3rem 0;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
}
.hub-pack-item:hover { color: var(--white); }
.hub-pack-item input[type="checkbox"] { accent-color: var(--primary); }

/* --- Newsletter --- */
.newsletter {
    background: linear-gradient(to right, #2D5016, #1A1A2E);
    color: var(--white);
    padding: 6rem 0;
}

.newsletter .container {
    max-width: 700px;
    text-align: center;
}

.newsletter h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.signup-form {
    display: flex;
    gap: 1rem;
}

.signup-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border-radius: 5px;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

/* --- Footer --- */
footer {
    padding: 5rem 0 2rem;
    background: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about .logo {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-col h4 {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .destinations-grid, .itinerary-grid, .utility-grid {
        grid-template-columns: 1fr;
    }
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    .experience-card {
        height: 400px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .planner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .experience-card {
        height: 350px;
    }
    .exp-overlay {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 1.5rem;
    }
    .experience-card h3 {
        font-size: 1.5rem;
    }
    .itinerary-card, .utility-card {
        padding: 2rem 1.5rem;
    }
    .itinerary-header h3 {
        font-size: 1.5rem;
    }
    .timeline {
        padding-left: 2rem;
    }
    nav {
        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(20px);
        height: auto;
        padding: 0.8rem 0;
    }
    nav .container {
        flex-direction: column;
        gap: 0.8rem;
    }
    .logo {
        font-size: 1.1rem;
    }
    .nav-links {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }
    .nav-links a {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }
    .hero h1 {
        font-size: 2.2rem;
        margin-top: 1rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .destinations-grid {
        grid-template-columns: 1fr !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    .country-card {
        height: 350px;
    }
}

/* --- Destinations & Insights --- */
.btn-explore {
    margin-top: 1.5rem;
    background: var(--white);
    color: var(--bg-dark);
    font-weight: 700;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(10px);
}

.country-card:hover .btn-explore {
    opacity: 1;
    transform: translateY(0);
}

.btn-explore:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    background: #1A1A2E;
    color: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.modal-header {
    padding: 3rem 3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

#modal-country-name {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--white), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#modal-tagline {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 2rem;
}

.modal-tabs {
    display: flex;
    gap: 2rem;
}

.modal-tab {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 1rem 0;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.6;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
}

.modal-tab.active {
    opacity: 1;
    border-color: var(--primary);
}

.modal-body {
    padding: 3rem;
    overflow-y: auto;
    flex-grow: 1;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.insight-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.insight-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.insight-col p {
    line-height: 1.8;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.insight-col.full {
    grid-column: span 2;
}

/* Destinations, Activities & Routes Tabs */
.spots-list, .activities-list, .routes-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.spot-card {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.spot-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.spot-card p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Advice Tab */
.advice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.advice-item {
    background: rgba(255,255,255,0.03);
    padding: 1.5rem;
    border-radius: 12px;
}

.advice-item strong {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Conversion Layer MVP Styles */
.card-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-email {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-email:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.modal-sticky-cta {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    bottom: 0;
    z-index: 100;
    border-radius: 0 0 20px 20px;
}

.cta-text {
    display: flex;
    flex-direction: column;
}

.cta-text strong {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
}

.cta-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.btn-book-now {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-book-now:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 160, 85, 0.4);
}

/* --- EXPERIENCES MARKETPLACE LAYER --- */
.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.market-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.market-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.market-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.market-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.market-card:hover .market-img img {
    transform: scale(1.05);
}

.market-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.market-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.market-info h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.market-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.market-meta i {
    color: var(--primary);
}

.market-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.market-meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.m-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.m-rating {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.m-rating i {
    color: #FFD700;
    margin-right: 0.3rem;
}

.market-action .btn-inquire {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
    padding: 0.8rem;
    background: #25D366;
    color: white;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.market-action .btn-inquire:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .modal-container {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    .modal-header { padding: 2rem 2rem 0; }
    .modal-body { padding: 2rem; }
    #modal-country-name { font-size: 2rem; }
    .insight-row, .spots-list, .activities-list, .routes-list { grid-template-columns: 1fr; gap: 2rem; }
    .insight-col.full { grid-column: span 1; }
}

/* --- Trust Bar --- */
.trust-bar {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-subtle);
}
.trust-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}
.trust-stat {
    text-align: center;
}
.trust-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.trust-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 500;
}
.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

@media (max-width: 768px) {
    .trust-stats { gap: 1.5rem; flex-wrap: wrap; }
    .trust-number { font-size: 2rem; }
    .trust-divider { display: none; }
    .trust-stat { flex: 1; min-width: 100px; }
}

/* ==============================================
   SAVANNA EXPLORER V2 — NEW SECTIONS
   ============================================== */

/* --- DID YOU KNOW TICKER --- */
.ticker-bar {
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
    white-space: nowrap;
    padding: 0;
    position: relative;
    z-index: 10;
}
.ticker-label {
    background: var(--primary);
    color: var(--bg-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.9rem 1.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ticker-track {
    overflow: hidden;
    flex: 1;
}
.ticker-content {
    display: inline-flex;
    animation: marquee 60s linear infinite;
}
.ticker-item {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 0.9rem 3rem;
    display: inline-block;
    letter-spacing: 0.5px;
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-bar:hover .ticker-content {
    animation-play-state: paused;
}

/* --- JOURNEY ENGINE (enhanced itinerary grid) --- */
.itineraries .itinerary-grid {
    grid-template-columns: repeat(3, 1fr);
}
.itinerary-card .btn-outline .fab.fa-whatsapp {
    margin-left: 0.5rem;
    color: #25D366;
}

/* --- CULTURAL MOSAIC --- */
.cultural-mosaic {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
}
.cultural-mosaic .section-header h2,
.cultural-mosaic .section-header p {
    color: var(--white);
}
.cultural-mosaic .section-header p {
    opacity: 0.7;
}
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.culture-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
    cursor: default;
}
.culture-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    border-color: var(--primary);
}
.culture-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}
.culture-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}
.culture-region {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.culture-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.culture-greeting {
    font-size: 0.8rem;
    color: var(--primary);
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-style: italic;
}

/* --- NATIONAL PARKS HUB --- */
.parks-hub {
    padding: 5rem 0;
    background: var(--bg-light);
}
.parks-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.park-filter {
    background: transparent;
    border: 2px solid rgba(0,0,0,0.15);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-dark);
}
.park-filter:hover,
.park-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.parks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.park-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.park-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: var(--transition-smooth);
}
.park-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.park-card:hover::before {
    opacity: 1;
}
.park-badge {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.park-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--bg-dark);
}
.park-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.park-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}
.park-meta i {
    margin-right: 0.3rem;
}
.park-card.hidden {
    display: none;
}

/* --- GASTRONOMY JOURNEY --- */
.gastronomy {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2D1B00 0%, #1A1A2E 100%);
}
.gastronomy .section-header h2,
.gastronomy .section-header p {
    color: var(--white);
}
.gastronomy .section-header p {
    opacity: 0.7;
}
.gastro-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255,255,255,0.1);
}
.gastro-scroll::-webkit-scrollbar {
    height: 6px;
}
.gastro-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}
.gastro-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
.gastro-card {
    flex: 0 0 280px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    scroll-snap-align: start;
    transition: var(--transition-smooth);
}
.gastro-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    border-color: var(--primary);
}
.gastro-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}
.gastro-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}
.gastro-country {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.gastro-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    line-height: 1.5;
}


/* ==========================================================================
   CONSOLIDATED RESPONSIVE DESIGN (Consolidated Mar 2026)
   ========================================================================== */

@media (max-width: 1024px) {
    :root { --section-pad: 6rem; }
    .container { padding: 0 1.5rem; }
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.72rem; letter-spacing: 0.5px; }
    .hub-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-pad: 4rem; }

    /* Navigation Overlay */
    .menu-toggle { 
        display: block; 
        z-index: 1001; 
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-warm);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 4rem 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-dark) !important;
        font-size: 1.2rem;
        text-shadow: none !important;
        width: 100%;
        border-bottom: 1px solid var(--border-subtle);
        padding-bottom: 1rem;
    }

    nav { height: 70px; }
    .logo { font-size: 1.3rem; }

    /* Hero */
    .hero { height: auto; min-height: 85vh; padding-top: 120px; }
    .hero-content { padding: 0 1.5rem 4rem; max-width: 100%; }
    .hero h1 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 1rem; }
    .hero p { font-size: 1rem; margin-bottom: 2rem; max-width: 100%; }

    /* Sections */
    .section-header { margin-bottom: 3rem; }
    .section-header h2 { font-size: 2.2rem; }
    
    /* Grid Adjustments */
    .itineraries .itinerary-grid,
    .culture-grid,
    .parks-grid,
    .destinations-grid { grid-template-columns: 1fr !important; }

    /* Ticker */
    .ticker-label { display: none; }
    
    /* Utility Hub Responsive */
    .hub-input-row { flex-direction: column; }
    .hub-matrix-head, .hub-matrix-row { grid-template-columns: 1.2fr 1fr 1fr; }
    .hub-matrix-head span:last-child, .hub-matrix-row span:last-child { display: none; }
    .season-head, .season-row { grid-template-columns: 45px repeat(12, 1fr); gap: 2px; }
    .season-row span:first-child { font-size: 0.6rem; }
}

@media (max-width: 480px) {
    .logo { font-size: 1.1rem; }
    .nav-links { gap: 0.6rem; }
    .nav-links a { font-size: 0.6rem; letter-spacing: 0; }
    
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 0.95rem; }
    
    .ticker-item { font-size: 0.75rem; }
    .btn { padding: 0.8rem 1.8rem; font-size: 0.75rem; }
    
    .gastro-card { flex: 0 0 250px; }
}
