/* ===================================
   Vietnam Tour Package - Destination Pages
   City/region landing pages
   =================================== */

:root {
    --primary: #0D7377;
    --primary-dark: #095456;
    --primary-light: #14919B;
    --accent: #FF6B35;
    --accent-dark: #E55A2B;
    --accent-light: #FF8A5C;

    --text: #1A1A2E;
    --text-light: #4A4A5A;
    --text-muted: #6B6B7B;

    --bg: #FFFFFF;
    --bg-alt: #F8FAFC;
    --bg-dark: #0F172A;

    --border: #E2E8F0;
    --success: #10B981;
    --error: #EF4444;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);

    --transition: 200ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0 0 var(--space-md); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 var(--space-md); }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); color: white; }

.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-dark); color: white; }

.btn-outline-light { background: transparent; border-color: white; color: white; }
.btn-outline-light:hover { background: white; color: var(--text); }

.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn-full { width: 100%; }
.btn-nav { padding: 0.625rem 1.25rem; font-size: 0.9375rem; }

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    z-index: 10000;
}
.skip-link:focus { top: var(--space-md); }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition);
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header.scrolled .logo,
.header.scrolled .nav-center a,
.header.scrolled .nav-phone { color: var(--text); }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: var(--space-lg);
}

.logo { font-size: 1.125rem; font-weight: 700; color: white; }
.logo-sg { color: var(--primary); }
.header.scrolled .logo-sg { color: var(--primary); }

.nav-center { display: flex; gap: var(--space-xl); }
.nav-center a { color: white; font-weight: 500; font-size: 0.9375rem; }
.nav-center a:hover { opacity: 0.8; }

.nav-right { display: flex; align-items: center; gap: var(--space-lg); }
.nav-phone { display: flex; align-items: center; gap: var(--space-sm); color: white; font-weight: 600; }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: var(--space-sm); background: none; border: none; cursor: pointer; }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: white; }
.header.scrolled .mobile-menu-btn span { background: var(--text); }

/* Destination Hero */
.destination-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    padding: var(--space-4xl) 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    color: white;
    max-width: 800px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: 0.875rem;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.5); }

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.stat { text-align: center; }
.stat-value { display: block; font-size: 1.5rem; font-weight: 800; }
.stat-label { font-size: 0.8125rem; opacity: 0.8; }

.hero-cta { display: flex; gap: var(--space-md); flex-wrap: wrap; }

/* Section Header */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(13, 115, 119, 0.1);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-header p { color: var(--text-light); font-size: 1.0625rem; margin: 0; }

/* Intro Section */
.intro-section {
    padding: var(--space-4xl) 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: center;
}

.intro-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.intro-content p.intro-lead {
    font-size: 1.0625rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.intro-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.highlight {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    color: var(--text);
}

.check-icon { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; }

/* Intro Image */
.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.image-caption {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 0.8125rem;
    border-radius: var(--radius-md);
    text-align: center;
}

/* Tour Guides */
.tour-guides {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.guides-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.guides-avatars {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.guide-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    transition: transform var(--transition);
}

.guide-avatar:hover {
    transform: translateY(-4px);
}

.guide-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.guide-avatar:hover img {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(13, 115, 119, 0.3);
}

.guide-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .guides-avatars {
        gap: var(--space-sm);
    }

    .guide-avatar img {
        width: 48px;
        height: 48px;
    }
}

/* Packages Section */
.packages-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-alt);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.package-card {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.package-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    z-index: 10;
    padding: var(--space-xs) var(--space-md);
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.package-badge.badge-value { background: var(--primary); }

.package-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.package-content { padding: var(--space-xl); }

.package-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
    font-size: 0.8125rem;
}

.duration { color: var(--primary); font-weight: 600; }
.rating { color: var(--text-muted); }

.package-content h3 { margin-bottom: var(--space-sm); }
.package-content > p { color: var(--text-light); font-size: 0.9375rem; margin-bottom: var(--space-lg); }

.package-includes {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.package-includes li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-light);
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price { display: flex; flex-direction: column; }
.from { font-size: 0.75rem; color: var(--text-muted); }
.amount { font-size: 1.75rem; font-weight: 800; line-height: 1; }
.per { font-size: 0.8125rem; color: var(--text-muted); }

.packages-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    color: var(--text-light);
}

/* Things To Do Section */
.things-section {
    padding: var(--space-4xl) 0;
}

.things-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.thing-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.thing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.thing-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.thing-featured .thing-image { height: 100%; min-height: 280px; }

.thing-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.thing-content { padding: var(--space-xl); }

.thing-category {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(13, 115, 119, 0.1);
    color: var(--primary);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.thing-content h3 { margin-bottom: var(--space-sm); }
.thing-content p { color: var(--text-light); font-size: 0.9375rem; margin-bottom: var(--space-md); }

.thing-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Food Section */
.food-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-alt);
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.food-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

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

.food-image {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.food-content { padding: var(--space-lg); }
.food-content h3 { font-size: 1.125rem; margin-bottom: var(--space-xs); }
.food-content p { font-size: 0.875rem; color: var(--text-light); margin-bottom: var(--space-sm); }
.food-price { font-size: 0.875rem; color: var(--primary); font-weight: 600; }

.food-tip {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(13, 115, 119, 0.1);
    border-radius: var(--radius-lg);
}

.food-tip svg { width: 24px; height: 24px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.food-tip p { margin: 0; font-size: 0.9375rem; }

/* Neighborhoods Section */
.neighborhoods-section {
    padding: var(--space-4xl) 0;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.neighborhood-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.neighborhood-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.neighborhood-content { padding: var(--space-xl); }

.neighborhood-badge {
    display: inline-block;
    padding: 2px 10px;
    background: var(--accent);
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.neighborhood-badge.badge-budget { background: var(--success); }

.neighborhood-content h3 { margin-bottom: var(--space-sm); }
.neighborhood-content p { font-size: 0.9375rem; color: var(--text-light); margin-bottom: var(--space-md); }

.neighborhood-hotels {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

/* Practical Section */
.practical-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-alt);
}

.practical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.practical-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.practical-icon {
    width: 48px;
    height: 48px;
    background: rgba(13, 115, 119, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.practical-icon svg { width: 24px; height: 24px; color: var(--primary); }

.practical-card h3 { margin-bottom: var(--space-md); }

.practical-card li {
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* Weather Section */
.weather-section {
    padding: var(--space-4xl) 0;
}

.weather-section h2 {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-sm);
}

.weather-card {
    position: relative;
    padding: var(--space-lg) var(--space-sm);
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition);
}

.weather-card:hover { background: white; box-shadow: var(--shadow-md); }

.weather-card.best {
    background: rgba(13, 115, 119, 0.1);
    border: 2px solid var(--primary);
}

.best-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 8px;
    background: var(--primary);
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.month { display: block; font-weight: 600; margin-bottom: var(--space-sm); }
.temp { display: block; font-size: 0.8125rem; color: var(--text-light); margin-bottom: var(--space-sm); }

.condition {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.condition.dry { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.condition.wet { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }

/* CTA Section */
.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1E293B 100%);
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.cta-content { color: white; }
.cta-content h2 { color: white; }
.cta-content > p { color: rgba(255,255,255,0.8); font-size: 1.0625rem; }

.cta-benefits { margin: var(--space-xl) 0; }

.benefit {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: rgba(255,255,255,0.9);
}

.benefit .check-icon { color: #6EE7B7; }

.cta-contact {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-contact > p { color: rgba(255,255,255,0.6); margin-bottom: var(--space-md); }

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 500;
    margin-right: var(--space-md);
    margin-bottom: var(--space-sm);
    transition: all var(--transition);
}

.contact-link:hover { background: rgba(255,255,255,0.2); color: white; }
.contact-link.whatsapp { background: #25D366; }
.contact-link.whatsapp:hover { background: #20BD5A; }

.cta-form {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
}

.cta-form h3 { margin-bottom: var(--space-xl); }

.form-group { margin-bottom: var(--space-lg); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: var(--bg-alt);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    background: white;
    border-color: var(--primary);
    outline: none;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    cursor: pointer;
}

.checkbox input { width: auto; margin: 0; }

.form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Other Destinations */
.other-destinations {
    padding: var(--space-4xl) 0;
    background: var(--bg-alt);
}

.other-destinations h2 {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.destination-card {
    position: relative;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.destination-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    transition: all var(--transition);
}

.destination-card:hover::before {
    background: linear-gradient(to top, rgba(13, 115, 119, 0.8) 0%, rgba(0,0,0,0.2) 100%);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    color: white;
}

.destination-overlay h3 { color: white; margin-bottom: var(--space-xs); }
.destination-overlay span { font-size: 0.875rem; opacity: 0.9; }

/* Footer */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { color: white; font-size: 1.125rem; font-weight: 700; margin-bottom: var(--space-md); display: inline-block; }
.footer-brand p { font-size: 0.9375rem; margin-bottom: var(--space-lg); }

.footer-credentials { display: flex; gap: var(--space-sm); }
.footer-credentials span {
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 { color: white; font-size: 0.9375rem; margin-bottom: var(--space-lg); }
.footer-column li { margin-bottom: var(--space-sm); }
.footer-column a { color: rgba(255,255,255,0.6); font-size: 0.9375rem; }
.footer-column a:hover { color: white; }

.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
    .intro-grid { grid-template-columns: 1fr; }
    .intro-image { order: -1; }

    .packages-grid { grid-template-columns: 1fr; }

    .things-grid { grid-template-columns: 1fr; }
    .thing-featured { grid-column: span 1; grid-template-columns: 1fr; }

    .food-grid { grid-template-columns: repeat(2, 1fr); }

    .neighborhoods-grid { grid-template-columns: 1fr; }

    .practical-grid { grid-template-columns: 1fr; }

    .weather-grid { grid-template-columns: repeat(6, 1fr); }

    .cta-wrapper { grid-template-columns: 1fr; }

    .destinations-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-center, .nav-right .btn, .phone-text { display: none; }
    .mobile-menu-btn { display: flex; }

    .destination-hero { min-height: 60vh; }

    .hero-stats { gap: var(--space-lg); }
    .stat-value { font-size: 1.25rem; }

    .intro-highlights { grid-template-columns: 1fr; }
    .intro-image img { aspect-ratio: 4/3; }

    .food-grid { grid-template-columns: 1fr; }

    .weather-grid { grid-template-columns: repeat(4, 1fr); }

    .form-row { grid-template-columns: 1fr; }
    .checkbox-group { grid-template-columns: 1fr; }

    .destinations-grid { grid-template-columns: 1fr; }

    .footer-links { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .weather-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
}
