/* ============================================================
   TravelWyn - Complete Stylesheet
   Design tokens: sand, deep, teal, coral, cream, slate
   ============================================================ */

:root {
    --sand: #F5F0E8;
    --deep: #1A1A2E;
    --teal: #16697A;
    --coral: #DB6C3B;
    --cream: #FFF8F0;
    --slate: #4A4A5A;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--deep);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; }
a { color: var(--teal); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--coral); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* UTILITY */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.section-padding { padding: 6rem 0; }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem;
    padding: 0.85rem 2rem; border-radius: 12px; border: 2px solid transparent;
    cursor: pointer; transition: all 0.3s ease; text-decoration: none; line-height: 1;
}
.btn-coral { background: var(--coral); color: white; border-color: var(--coral); }
.btn-coral:hover { background: #c45e31; border-color: #c45e31; color: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(219,108,59,0.35); }
.btn-teal { background: var(--teal); color: white; border-color: var(--teal); }
.btn-teal:hover { background: #125a68; border-color: #125a68; color: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,105,122,0.35); }
.btn-outline { background: transparent; color: var(--deep); border-color: rgba(26,26,46,0.15); }
.btn-outline:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-2px); }
.btn-sm { font-size: 0.85rem; padding: 0.55rem 1.2rem; border-radius: 10px; }
.btn-full { width: 100%; margin-bottom: 0.75rem; }
.btn-full:last-child { margin-bottom: 0; }

/* NAV */
nav {
    position: fixed; top: 0; width: 100%; padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; background: rgba(255,248,240,0.98);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--teal);
    box-shadow: 0 2px 12px rgba(26,26,46,0.08);
}
.logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--deep); letter-spacing: -0.5px; text-decoration: none; }
.logo span { color: var(--coral); }
.nav-links { display: flex; align-items: center; gap: 0.75rem; }
.nav-links a {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 600;
    color: var(--deep); text-decoration: none; position: relative;
    padding: 0.6rem 1.2rem; border-radius: 8px;
    transition: all 0.25s ease;
    background: rgba(26,26,46,0.04);
    border: 1.5px solid transparent;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 0;
    background: transparent; transition: none;
}
.nav-links a:hover {
    background: rgba(219,108,59,0.1);
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-2px);
}
.nav-links a.active {
    background: var(--teal);
    color: white;
    border-color: var(--teal);
}
.nav-hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    padding: 4px; background: none; border: none; z-index: 1001;
}
.nav-hamburger span {
    display: block; width: 24px; height: 2px; background: var(--deep);
    border-radius: 2px; transition: all 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 8rem 2rem 4rem; position: relative;
}
.hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
}
.hero-text h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem); line-height: 1.05;
    letter-spacing: -2px; color: var(--deep); margin-bottom: 1.5rem;
}
.hero-text h1 em { font-style: normal; color: var(--teal); }
.hero-text p { font-size: 1.2rem; line-height: 1.7; color: var(--slate); max-width: 480px; }

/* SEARCH WIDGET */
.search-widget {
    background: white; border-radius: 24px;
    box-shadow: 0 30px 80px rgba(26,26,46,0.12), 0 4px 12px rgba(26,26,46,0.04);
    overflow: hidden;
}

/* Trip Type Toggle */
.trip-type-toggle {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 2rem 0;
    border-bottom: 1px solid rgba(26,26,46,0.08);
    margin-bottom: 0;
}
.trip-type-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--slate);
    transition: color 0.2s;
}
.trip-type-label:hover {
    color: var(--navy);
}
.trip-type-label input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(26,26,46,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.trip-type-label input[type="radio"]:checked {
    border-color: var(--coral);
    background: var(--coral);
}
.trip-type-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}
.search-tabs {
    display: flex; border-bottom: 1px solid rgba(26,26,46,0.08);
    background: rgba(245,240,232,0.4);
}
.search-tab {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 1.15rem 0.75rem; font-family: 'Space Grotesk', sans-serif;
    font-weight: 600; font-size: 0.85rem; color: var(--slate);
    cursor: pointer; border: none; background: transparent;
    position: relative; transition: color 0.25s, background 0.25s;
}
.search-tab svg { flex-shrink: 0; }
.search-tab:hover { color: var(--deep); background: rgba(245,240,232,0.6); }
.search-tab.active { color: var(--deep); background: white; }
.search-tab.active::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--coral); border-radius: 3px 3px 0 0;
}

.search-form { padding: 2rem 2rem 2.5rem; display: none; }
.search-form.active { display: block; }
.search-fields { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.search-fields .field { flex: 1; min-width: 140px; display: flex; flex-direction: column; gap: 0.4rem; }
.search-fields .field-lg { flex: 2; min-width: 200px; }
.search-fields .field-sm { flex: 0.5; min-width: 80px; }
.search-fields label {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 600;
    color: var(--slate); text-transform: uppercase; letter-spacing: 0.8px;
}
.search-fields input, .search-fields select {
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--deep);
    padding: 0.85rem 1rem; border: 1.5px solid rgba(26,26,46,0.1); border-radius: 12px;
    background: var(--cream); outline: none; transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
}
.search-fields input::placeholder { color: rgba(74,74,90,0.45); }
.search-fields input:focus, .search-fields select:focus {
    border-color: var(--teal); box-shadow: 0 0 0 3px rgba(22,105,122,0.1);
}
.search-btn {
    width: 100%; padding: 1rem 2rem; font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; font-size: 1.05rem; color: white; background: var(--coral);
    border: none; border-radius: 14px; cursor: pointer; transition: all 0.3s;
}
.search-btn:hover { background: #c45e31; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(219,108,59,0.4); }

/* MULTI-CITY FLIGHT FORM */
#multi-city-section { padding: 0; }

.mc-leg {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid rgba(26,26,46,0.08);
}
.mc-leg:last-child { border-bottom: none; }

.mc-leg-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 0.75rem;
}
.mc-leg-num {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; font-weight: 700;
    color: var(--teal); text-transform: uppercase; letter-spacing: 0.8px;
}
.mc-remove-btn {
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 8px;
    background: rgba(219,108,59,0.1); border: none; cursor: pointer;
    color: var(--coral); transition: all 0.2s;
}
.mc-remove-btn:hover { background: var(--coral); color: white; }

.mc-leg-fields {
    display: flex; gap: 1rem; flex-wrap: wrap;
}
.mc-leg-fields .field {
    flex: 1; min-width: 140px; display: flex; flex-direction: column; gap: 0.4rem;
}
.mc-leg-fields label {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 600;
    color: var(--slate); text-transform: uppercase; letter-spacing: 0.8px;
}
.mc-leg-fields input {
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--deep);
    padding: 0.85rem 1rem; border: 1.5px solid rgba(26,26,46,0.1); border-radius: 12px;
    background: var(--cream); outline: none; transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
}
.mc-leg-fields input::placeholder { color: rgba(74,74,90,0.45); }
.mc-leg-fields input:focus {
    border-color: var(--teal); box-shadow: 0 0 0 3px rgba(22,105,122,0.1);
}

.mc-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 2rem; gap: 1rem; flex-wrap: wrap;
    border-top: 1px solid rgba(26,26,46,0.06);
}
.mc-add-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; font-weight: 600;
    color: var(--teal); background: rgba(22,105,122,0.08); border: 1.5px solid rgba(22,105,122,0.2);
    border-radius: 10px; padding: 0.6rem 1.2rem; cursor: pointer; transition: all 0.2s;
}
.mc-add-btn:hover { background: rgba(22,105,122,0.15); border-color: var(--teal); }

.mc-pax-field { flex: 0; min-width: 110px; }
.mc-pax-field label {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 600;
    color: var(--slate); text-transform: uppercase; letter-spacing: 0.8px;
}
.mc-pax-field select {
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--deep);
    padding: 0.85rem 1rem; border: 1.5px solid rgba(26,26,46,0.1); border-radius: 12px;
    background: var(--cream); outline: none; transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
}
.mc-pax-field select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(22,105,122,0.1); }

/* Multi-city results panel */
#mc-results {
    margin: 0 1.5rem 1.5rem;
    background: white; border: 1.5px solid rgba(22,105,122,0.2); border-radius: 16px;
    overflow: hidden; box-shadow: 0 4px 20px rgba(26,26,46,0.08);
}
.mc-results-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.9rem 1.25rem; background: var(--deep); color: white;
}
.mc-results-title {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 700;
    letter-spacing: 0.3px;
}
#mc-results-close {
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.1);
    border: none; cursor: pointer; color: white; transition: background 0.2s;
}
#mc-results-close:hover { background: rgba(255,255,255,0.2); }

.mc-result-row {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 0.9rem 1.25rem; border-bottom: 1px solid rgba(26,26,46,0.07);
    flex-wrap: wrap;
}
.mc-result-row:last-child { border-bottom: none; }
.mc-result-info { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; flex: 1; min-width: 0; }
.mc-result-leg-num {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.72rem; font-weight: 700;
    color: var(--teal); text-transform: uppercase; letter-spacing: 0.8px;
    background: rgba(22,105,122,0.1); padding: 0.2rem 0.6rem; border-radius: 6px;
    white-space: nowrap;
}
.mc-result-route {
    display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem;
    color: var(--deep); flex-wrap: wrap;
}
.mc-result-route strong { font-weight: 600; }
.mc-arrow { color: var(--slate); flex-shrink: 0; }
.mc-result-date { font-size: 0.82rem; color: var(--slate); white-space: nowrap; }
.mc-book-btn {
    font-size: 0.8rem !important; padding: 0.5rem 1rem !important;
    border-radius: 10px !important; white-space: nowrap; flex-shrink: 0;
}
.mc-result-missing { font-size: 0.8rem; color: rgba(74,74,90,0.5); font-style: italic; }
.mc-tip {
    padding: 0.75rem 1.25rem; font-size: 0.8rem; color: var(--slate);
    background: rgba(22,105,122,0.04); border-top: 1px solid rgba(22,105,122,0.1);
}

/* STRIP */
.strip {
    background: var(--deep); color: var(--sand); padding: 2.5rem 2rem; text-align: center;
    font-family: 'Space Grotesk', sans-serif; font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    font-weight: 500; letter-spacing: 0.5px;
}
.strip span { opacity: 0.4; margin: 0 1rem; }

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -1.5px; color: var(--deep); margin-bottom: 0.75rem; }
.section-header h2 em { font-style: normal; color: var(--coral); }
.section-subtitle { font-size: 1.1rem; color: var(--slate); max-width: 520px; margin: 0 auto; line-height: 1.7; }
.section-cta { text-align: center; margin-top: 3rem; }

/* DESTINATION CARDS */
.destinations-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.destinations-grid-full { grid-template-columns: repeat(3, 1fr); }
.dest-card {
    position: relative; border-radius: 20px; overflow: hidden; height: 320px;
    cursor: pointer; text-decoration: none; color: white; display: block;
    transition: transform 0.3s;
}
.dest-card:hover { transform: translateY(-6px); color: white; }
.dest-card-featured { grid-column: span 2; grid-row: span 2; height: auto; min-height: 320px; }
.dest-img {
    position: absolute; inset: 0; transition: transform 0.5s;
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
.dest-card:hover .dest-img { transform: scale(1.08); }
.dest-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
    background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.15) 60%, transparent 100%);
    z-index: 1;
}
.dest-tag {
    display: inline-block; font-family: 'Space Grotesk', sans-serif; font-size: 0.7rem;
    font-weight: 600; padding: 0.25rem 0.65rem; border-radius: 20px; text-transform: uppercase;
    letter-spacing: 0.5px; background: rgba(255,255,255,0.2); color: white;
    backdrop-filter: blur(4px); margin-right: 0.4rem; margin-bottom: 0.5rem;
}
.dest-overlay h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 0.2rem; }
.dest-overlay p { font-size: 0.88rem; opacity: 0.8; }
.dest-price {
    display: inline-block; font-family: 'Space Grotesk', sans-serif; font-weight: 700;
    font-size: 0.85rem; margin-top: 0.6rem; background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px); padding: 0.35rem 0.9rem; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* FILTER BAR */
.dest-filter-bar { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-pill {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 600;
    padding: 0.6rem 1.5rem; border-radius: 30px; border: 2px solid rgba(26,26,46,0.1);
    background: white; color: var(--slate); cursor: pointer; transition: all 0.25s;
}
.filter-pill:hover { border-color: var(--coral); color: var(--coral); }
.filter-pill.active { background: var(--coral); color: white; border-color: var(--coral); }

/* EVENT CARDS */
.events-preview { background: var(--deep); padding: 6rem 0; color: white; }
.events-preview .section-header h2 { color: white; }
.events-preview .section-header h2 em { color: var(--coral); }
.events-preview .section-subtitle { color: rgba(255,255,255,0.5); }
.events-preview .btn-outline { color: white; border-color: rgba(255,255,255,0.2); }
.events-preview .btn-outline:hover { border-color: var(--coral); color: var(--coral); }
.events-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.event-card {
    display: flex; gap: 1.25rem; align-items: center;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 1.5rem; transition: background 0.3s;
}
.event-card:hover { background: rgba(255,255,255,0.1); }
.event-date {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-width: 60px; height: 60px; background: rgba(219,108,59,0.15); border-radius: 14px; flex-shrink: 0;
}
.event-month {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; color: var(--coral);
}
.event-day {
    font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; line-height: 1;
}
.event-info { flex: 1; }
.event-info h3 { font-size: 1rem; font-weight: 600; letter-spacing: -0.3px; margin-bottom: 0.25rem; }
.event-venue { font-size: 0.85rem; opacity: 0.6; }
.event-location { font-size: 0.8rem; opacity: 0.45; }
.event-category {
    display: inline-block; font-family: 'Space Grotesk', sans-serif; font-size: 0.65rem;
    font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 20px; text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 0.4rem;
}
.event-category.festival { background: rgba(168,85,247,0.2); color: #c084fc; }
.event-category.sports { background: rgba(34,197,94,0.2); color: #4ade80; }
.event-category.concert { background: rgba(59,130,246,0.2); color: #60a5fa; }
.event-category.theater { background: rgba(251,191,36,0.2); color: #fbbf24; }
.event-card .btn-coral { flex-shrink: 0; white-space: nowrap; }

/* Non-dark-bg event cards (for events.html) */
body > section:not(.events-preview) .event-card,
.events-grid .event-card {
    background: white; color: var(--deep);
    box-shadow: 0 4px 16px rgba(26,26,46,0.05);
}
body > section:not(.events-preview) .event-card:hover,
.events-grid .event-card:hover {
    transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,26,46,0.1);
}
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.events-grid .event-day { color: var(--deep); }
.events-grid .event-venue { color: var(--slate); opacity: 1; }
.events-grid .event-location { color: var(--slate); opacity: 0.65; }
.events-grid .event-category.festival { background: rgba(168,85,247,0.12); color: #7c3aed; }
.events-grid .event-category.sports { background: rgba(34,197,94,0.12); color: #16a34a; }
.events-grid .event-category.concert { background: rgba(59,130,246,0.12); color: #2563eb; }
.events-grid .event-category.theater { background: rgba(251,191,36,0.12); color: #d97706; }

/* PHILOSOPHY */
.philosophy { padding: 7rem 2rem; max-width: 900px; margin: 0 auto; }
.philosophy h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 2rem; }
.philosophy h2 em { font-style: normal; color: var(--coral); }
.philosophy p { font-size: 1.15rem; line-height: 1.8; color: var(--slate); margin-bottom: 1.5rem; }
.credential {
    margin-top: 2.5rem; padding: 1.5rem 2rem; background: rgba(22,105,122,0.05);
    border-left: 4px solid var(--teal); border-radius: 0 12px 12px 0;
    font-size: 1rem; color: var(--deep); line-height: 1.6;
}
.credential strong { font-family: 'Space Grotesk', sans-serif; }

/* SERVICES */
.services { background: var(--deep); padding: 7rem 2rem; color: white; }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); letter-spacing: -1px; margin-bottom: 1rem; }
.services .subtitle { color: rgba(255,255,255,0.5); font-size: 1.1rem; margin-bottom: 3.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 2.5rem; transition: background 0.3s;
}
.service-card:hover { background: rgba(255,255,255,0.07); }
.service-icon { margin-bottom: 1rem; color: var(--coral); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; letter-spacing: -0.5px; }
.service-card p { color: rgba(255,255,255,0.55); line-height: 1.6; font-size: 0.95rem; }

/* NEWSLETTER */
.newsletter-section { padding: 6rem 0; background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%); }
.newsletter-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.newsletter-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -1px; margin-bottom: 1rem; }
.newsletter-inner p { font-size: 1.05rem; color: var(--slate); line-height: 1.7; margin-bottom: 2rem; }
.newsletter-form {
    display: flex; gap: 0.75rem; max-width: 460px; margin: 0 auto;
}
.newsletter-form input[type="email"] {
    flex: 1; font-family: 'DM Sans', sans-serif; font-size: 1rem; padding: 0.85rem 1.25rem;
    border: 2px solid rgba(26,26,46,0.1); border-radius: 12px; background: white;
    outline: none; transition: border-color 0.25s;
}
.newsletter-form input[type="email"]:focus { border-color: var(--teal); }
.newsletter-note { margin-top: 1rem; font-size: 0.9rem; min-height: 1.4em; }

/* FOOTER */
footer {
    background: var(--deep); color: rgba(255,255,255,0.6); padding: 4rem 2rem 2rem;
}
.footer-inner {
    max-width: 1100px; margin: 0 auto; display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem;
}
.footer-col .logo { margin-bottom: 1rem; color: white; }
.footer-col .logo span { color: var(--coral); }
.footer-col p { font-size: 0.9rem; line-height: 1.6; opacity: 0.6; }
.footer-col h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: white; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-bottom: 0.6rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
    text-align: center; font-size: 0.85rem; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom a { color: var(--coral); }

/* PAGE HERO (for destinations listing, events) */
.page-hero {
    padding: 10rem 2rem 4rem; text-align: center;
    background: linear-gradient(135deg, var(--deep) 0%, #2a2a4e 100%); color: white;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); letter-spacing: -1.5px; margin-bottom: 1rem; }
.page-hero h1 em { font-style: normal; color: var(--coral); }
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* FEATURED EVENT HERO */
.featured-event {
    background: linear-gradient(135deg, var(--teal) 0%, #1a4a5e 100%);
    border-radius: 24px; padding: 3rem; color: white; margin-bottom: 3rem;
}
.featured-event .event-category { margin-bottom: 1rem; }
.featured-event h2 { font-size: 2rem; letter-spacing: -1px; margin-bottom: 0.5rem; }
.featured-event .featured-meta { font-size: 1.1rem; opacity: 0.7; margin-bottom: 1rem; }
.featured-event p { font-size: 1rem; opacity: 0.8; line-height: 1.7; margin-bottom: 1.5rem; max-width: 600px; }
.featured-event .btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* PARTNERS STRIP (events page) */
.partners-strip { text-align: center; padding: 3rem 2rem; }
.partners-strip p { font-size: 0.95rem; color: var(--slate); }
.partners-strip .partner-names { font-family: 'Space Grotesk', sans-serif; font-weight: 600; letter-spacing: 0.5px; }

/* EVENT FILTER BAR */
.event-filter-bar { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 3rem; flex-wrap: wrap; }
.event-filter {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 600;
    padding: 0.6rem 1.5rem; border-radius: 30px; border: 2px solid rgba(26,26,46,0.1);
    background: white; color: var(--slate); cursor: pointer; transition: all 0.25s;
}
.event-filter:hover { border-color: var(--coral); color: var(--coral); }
.event-filter.active { background: var(--coral); color: white; border-color: var(--coral); }

/* ============================================================
   DESTINATION DETAIL PAGE
   ============================================================ */
.dest-hero {
    padding: 10rem 2rem 4rem; color: white; position: relative;
    min-height: 50vh; display: flex; align-items: flex-end;
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
.dest-hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.6) 0%, rgba(26,26,46,0.1) 100%);
}
.dest-hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; width: 100%; }
.dest-hero-tags { margin-bottom: 1rem; }
.dest-hero-tags .dest-tag { background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); }
.dest-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -2px; margin-bottom: 0.5rem; }
.dest-hero-country { font-size: 1.2rem; opacity: 0.7; margin-bottom: 0.75rem; }
.dest-hero-tagline { font-size: 1.15rem; opacity: 0.85; max-width: 600px; line-height: 1.6; }

.dest-content { padding: 4rem 0 6rem; }
.dest-grid { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; }
.dest-main { }
.dest-section { margin-bottom: 3rem; }
.dest-section h2 { font-size: 1.6rem; letter-spacing: -0.5px; margin-bottom: 1rem; }
.dest-section p { font-size: 1.05rem; line-height: 1.8; color: var(--slate); }

/* Jay's Tip */
.jay-tip {
    background: rgba(22,105,122,0.05); border-left: 4px solid var(--teal);
    border-radius: 0 16px 16px 0; padding: 2rem;
}
.jay-tip h3 { font-size: 1.15rem; color: var(--teal); margin-bottom: 0.75rem; }
.jay-tip p { font-size: 1rem; line-height: 1.7; color: var(--slate); }
.jay-signature { display: block; margin-top: 1rem; font-size: 0.85rem; font-weight: 600; color: var(--teal); font-style: italic; }

/* Experiences Grid */
.experiences-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.experience-card {
    display: flex; flex-direction: column; justify-content: space-between;
    background: white; border: 1px solid rgba(26,26,46,0.06); border-radius: 16px;
    padding: 1.5rem; text-decoration: none; color: var(--deep);
    transition: transform 0.3s, box-shadow 0.3s;
}
.experience-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,26,46,0.08); color: var(--deep); }
.experience-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }

/* Destination Events List */
.dest-events-list { display: flex; flex-direction: column; gap: 1rem; }
.dest-event-card {
    display: flex; align-items: center; justify-content: space-between;
    background: white; border: 1px solid rgba(26,26,46,0.06); border-radius: 14px;
    padding: 1.25rem 1.5rem; transition: transform 0.2s;
}
.dest-event-card:hover { transform: translateX(4px); }
.dest-event-info { flex: 1; }
.dest-event-info h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.2rem; }
.dest-event-info p { font-size: 0.88rem; color: var(--slate); }
.dest-event-info .event-category { margin-bottom: 0.4rem; }

/* Sidebar */
.dest-sidebar { }
.dest-info-card {
    background: white; border-radius: 20px; padding: 2rem;
    box-shadow: 0 4px 24px rgba(26,26,46,0.06); margin-bottom: 1.5rem;
    position: sticky; top: 6rem;
}
.dest-info-card h3 { font-size: 1.15rem; margin-bottom: 1.25rem; }
.info-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid rgba(26,26,46,0.06); }
.info-row:last-child { border-bottom: none; }
.info-label { font-size: 0.88rem; color: var(--slate); }
.info-value { font-size: 0.88rem; font-weight: 600; color: var(--deep); text-align: right; }

.dest-booking-card {
    background: white; border-radius: 20px; padding: 2rem;
    box-shadow: 0 4px 24px rgba(26,26,46,0.06);
}
.dest-booking-card h3 { font-size: 1.15rem; margin-bottom: 1.25rem; }

/* ============================================================
   NEIGHBORHOOD CARDS
   ============================================================ */
.neighborhoods-grid {
    display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.neighborhood-card {
    display: flex; align-items: flex-start; gap: 1.25rem;
    background: white; border: 1px solid rgba(26,26,46,0.07);
    border-radius: 16px; padding: 1.5rem;
    transition: transform 0.25s, box-shadow 0.25s;
}
.neighborhood-card:hover {
    transform: translateY(-3px); box-shadow: 0 8px 28px rgba(26,26,46,0.08);
}
.neighborhood-icon {
    font-size: 1.75rem; line-height: 1; flex-shrink: 0;
    width: 52px; height: 52px; background: var(--sand);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.neighborhood-body h3 {
    font-size: 1.05rem; font-weight: 700; color: var(--deep);
    margin-bottom: 0.4rem; letter-spacing: -0.3px;
}
.neighborhood-body p {
    font-size: 0.95rem; line-height: 1.65; color: var(--slate); margin: 0;
}

/* ============================================================
   INSIDER TIPS
   ============================================================ */
.insider-tips-list {
    display: flex; flex-direction: column; gap: 1rem;
}
.insider-tip-item {
    background: rgba(219,108,59,0.04); border: 1px solid rgba(219,108,59,0.12);
    border-left: 4px solid var(--coral);
    border-radius: 0 14px 14px 0; padding: 1.25rem 1.5rem;
}
.insider-tip-category {
    display: inline-block; font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.8px; color: var(--coral); margin-bottom: 0.5rem;
}
.insider-tip-item p {
    font-size: 0.97rem; line-height: 1.7; color: var(--slate); margin: 0;
}

/* ============================================================
   WHAT TO BOOK FIRST
   ============================================================ */
.book-first-list {
    display: flex; flex-direction: column; gap: 0.75rem;
}
.book-first-item {
    display: flex; align-items: center; gap: 1rem;
    background: white; border: 1.5px solid rgba(26,26,46,0.07);
    border-radius: 14px; padding: 1.1rem 1.25rem;
    text-decoration: none; color: var(--deep);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.book-first-item:hover {
    border-color: var(--teal); transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(22,105,122,0.1); color: var(--deep);
}
.book-first-rank {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 700;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--deep); color: white;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.book-first-icon {
    font-size: 1.4rem; line-height: 1; flex-shrink: 0;
}
.book-first-body { flex: 1; min-width: 0; }
.book-first-body h4 {
    font-size: 0.95rem; font-weight: 600; color: var(--deep);
    margin-bottom: 0.2rem; letter-spacing: -0.2px;
}
.book-first-body p {
    font-size: 0.83rem; color: var(--slate); margin: 0; line-height: 1.4;
}
.book-first-arrow {
    font-size: 1.1rem; color: var(--teal); flex-shrink: 0;
    opacity: 0; transform: translateX(-4px);
    transition: opacity 0.2s, transform 0.2s;
}
.book-first-item:hover .book-first-arrow {
    opacity: 1; transform: translateX(0);
}

/* ============================================================
   BEST TIME SIDEBAR CARD
   ============================================================ */
.dest-best-time-card {
    background: white; border-radius: 20px; padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(26,26,46,0.06); margin-bottom: 1.5rem;
    border-top: 4px solid var(--teal);
}
.dest-best-time-card h3 {
    font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--deep);
}
.dest-best-time-card p {
    font-size: 0.9rem; line-height: 1.7; color: var(--slate); margin: 0;
}

/* IMAGE LOADING STATE */
.dest-img[style*="background-image"] {
    background-color: var(--deep);
}

/* FEATURED EVENT with background image */
.featured-event {
    background-size: cover; background-position: center; background-repeat: no-repeat;
}

/* SCROLL ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-card-featured { grid-column: span 2; }
    .dest-grid { grid-template-columns: 1fr; }
    .dest-sidebar { position: static; }
    .dest-info-card { position: static; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    nav { padding: 1rem 1.25rem; }
    .nav-links {
        display: none; position: fixed; top: 0; right: 0;
        width: 260px; height: 100vh; background: var(--cream);
        flex-direction: column; padding: 5rem 2rem 2rem; gap: 1rem;
        box-shadow: -8px 0 32px rgba(26,26,46,0.1);
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 0.75rem 1rem; border-radius: 8px; font-size: 1rem;
        background: rgba(26,26,46,0.06); border: 1.5px solid transparent;
    }
    .nav-links a:hover {
        background: rgba(219,108,59,0.15);
        border-color: var(--coral);
    }
    .nav-links a.active {
        background: var(--teal);
        color: white;
        border-color: var(--teal);
    }
    .nav-hamburger { display: flex; }

    .hero { padding: 7rem 1.25rem 3rem; }
    .hero-text h1 { letter-spacing: -1px; }

    .search-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .search-tabs::-webkit-scrollbar { display: none; }
    .search-tab { white-space: nowrap; padding: 1rem 0.6rem; font-size: 0.78rem; }
    .search-fields { flex-direction: column; }
    .search-fields .field, .search-fields .field-lg, .search-fields .field-sm { min-width: 100%; flex: auto; }

    /* Multi-city mobile */
    .mc-leg { padding: 1rem 1.25rem; }
    .mc-leg-fields { flex-direction: column; }
    .mc-leg-fields .field { min-width: 100%; flex: auto; }
    .mc-footer { padding: 0.875rem 1.25rem; flex-direction: column; align-items: flex-start; }
    .mc-pax-field { min-width: 100%; }
    #mc-results { margin: 0 1rem 1rem; }
    .mc-result-row { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
    .mc-book-btn { align-self: flex-start; }
    .trip-type-toggle { gap: 0.75rem; flex-wrap: wrap; }

    .strip span { margin: 0 0.5rem; }
    .philosophy { padding: 4rem 1.25rem; }
    .services { padding: 4rem 1.25rem; }
    .services-grid { grid-template-columns: 1fr; }

    .destinations-grid { grid-template-columns: 1fr; }
    .dest-card-featured { grid-column: span 1; }
    .destinations-grid-full { grid-template-columns: 1fr; }

    .events-row { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }

    .section-padding { padding: 4rem 0; }
    .page-hero { padding: 8rem 1.25rem 3rem; }

    .newsletter-form { flex-direction: column; }
    .newsletter-form input[type="email"] { width: 100%; }

    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

    .dest-hero { padding: 8rem 1.25rem 3rem; min-height: 40vh; }
    .dest-hero h1 { font-size: 2.2rem; }
    .experiences-grid { grid-template-columns: 1fr; }
    .featured-event { padding: 2rem; }
    .featured-event h2 { font-size: 1.5rem; }
}

/* Extra small phones (375px) */
@media (max-width: 480px) {
    /* Hide tab SVG icons so text labels fit without scrolling */
    .search-tab svg { display: none; }
    .search-tab { gap: 0; padding: 0.85rem 0.5rem; font-size: 0.73rem; }
    .search-form { padding: 1.5rem 1.25rem 2rem; }
    .hero { padding: 6rem 1rem 3rem; }
    .hero-text h1 { font-size: 2rem; }
    .search-btn { width: 100%; }
    /* Event cards on mobile */
    .event-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .event-card .btn-sm { align-self: stretch; text-align: center; }
    /* Dest booking card buttons full-width already via btn-full */
}

/* ============================================================
   DESTINATION HERO BACKGROUND VIDEO
   ============================================================ */
.dest-hero-video {
    position: relative; overflow: hidden;
    background-size: cover; background-position: center;
}
.dest-hero-video::after { display: none; } /* remove old pseudo overlay — we use explicit .dest-hero-overlay */

.dest-hero-bg-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    z-index: 0;
    /* performance: use GPU */
    will-change: transform;
}
.dest-hero-bg-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    z-index: 0;
}
.dest-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        to top,
        rgba(16,16,32,0.75) 0%,
        rgba(16,16,32,0.35) 50%,
        rgba(16,16,32,0.2) 100%
    );
}
.dest-hero-video .dest-hero-inner { z-index: 2; }

/* ============================================================
   YOUTUBE "WATCH BEFORE YOU GO" SECTION
   ============================================================ */
.dest-section-videos .dest-section-sub {
    font-size: 0.97rem; color: var(--slate); margin-bottom: 1.5rem; line-height: 1.6;
}

.yt-videos-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.yt-card {
    background: white; border-radius: 16px;
    border: 1px solid rgba(26,26,46,0.06);
    overflow: hidden; cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}
.yt-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(26,26,46,0.12); }

.yt-thumb-wrap {
    position: relative; padding-bottom: 56.25%; /* 16:9 */
    overflow: hidden; background: var(--deep);
}
.yt-thumb {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.4s;
}
.yt-card:hover .yt-thumb { transform: scale(1.05); }

.yt-play-btn {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.2);
    transition: background 0.2s;
}
.yt-card:hover .yt-play-btn { background: rgba(0,0,0,0.35); }
.yt-play-shape { fill: #ff0000; }
.yt-play-btn svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); transition: transform 0.2s; }
.yt-card:hover .yt-play-btn svg { transform: scale(1.12); }

.yt-card-info { padding: 1rem 1.1rem 1.1rem; }
.yt-title {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.88rem; font-weight: 600;
    color: var(--deep); line-height: 1.4; margin-bottom: 0.35rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.yt-channel { font-size: 0.78rem; color: var(--slate); }

/* ============================================================
   VIDEO GALLERY SECTION
   ============================================================ */
.dest-section-gallery .dest-section-sub {
    font-size: 0.97rem; color: var(--slate); margin-bottom: 1.5rem; line-height: 1.6;
}

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

.vid-gallery-item {
    cursor: pointer; border-radius: 14px; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.vid-gallery-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,26,46,0.12); }

.vid-gallery-thumb-wrap {
    position: relative; padding-bottom: 60%; overflow: hidden;
    background: var(--deep);
}
.vid-gallery-thumb {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; display: block; transition: transform 0.4s;
}
.vid-gallery-item:hover .vid-gallery-thumb { transform: scale(1.06); }

.vid-gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(16,16,32,0.35);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s;
}
.vid-gallery-item:hover .vid-gallery-overlay { background: rgba(16,16,32,0.55); }

.vid-gallery-play {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s, background 0.2s; padding-left: 3px;
}
.vid-gallery-item:hover .vid-gallery-play { transform: scale(1.1); background: white; }
.vid-gallery-play svg { color: var(--coral); }

.vid-gallery-label {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.82rem; font-weight: 600;
    color: var(--deep); padding: 0.65rem 0.25rem 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ============================================================
   VIDEO MODAL (YouTube lightbox)
   ============================================================ */
.video-modal {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(16,16,32,0.88); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 1rem; animation: fadeInModal 0.2s ease;
}
@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}
.video-modal-inner {
    position: relative; width: 100%; max-width: 900px;
    animation: scaleInModal 0.2s ease;
}
@keyframes scaleInModal {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.video-modal-close {
    position: absolute; top: -3rem; right: 0;
    background: none; border: none; color: white; font-size: 2.2rem;
    cursor: pointer; line-height: 1; opacity: 0.75; transition: opacity 0.2s;
    padding: 0.25rem 0.5rem;
}
.video-modal-close:hover { opacity: 1; }
.video-modal-frame {
    position: relative; padding-bottom: 56.25%;
    background: black; border-radius: 12px; overflow: hidden;
}
.video-modal-frame iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
body.modal-open { overflow: hidden; }

/* ============================================================
   VIDEO RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .yt-videos-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .yt-videos-row { grid-template-columns: 1fr; }
    .vid-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .dest-hero-bg-video { display: none; } /* hide hero video on mobile — use poster fallback */
    .dest-hero-video { background-size: cover; background-position: center; }
    .video-modal-close { top: -2.5rem; font-size: 1.8rem; }
}
@media (max-width: 480px) {
    .vid-gallery-grid { grid-template-columns: 1fr; }
    .video-modal { padding: 0.5rem; }
    .video-modal-close { top: -2.5rem; }
}

/* ============================================================
   SMART SAVINGS PANEL
   ============================================================ */
.smart-savings-panel {
    margin-top: 1rem;
    background: linear-gradient(135deg, rgba(22,105,122,0.06) 0%, rgba(22,105,122,0.03) 100%);
    border: 1.5px solid rgba(22,105,122,0.2);
    border-radius: 14px;
    padding: 1rem 1.1rem 1.1rem;
    animation: ss-fadein 0.3s ease;
}
@keyframes ss-fadein {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ss-panel-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 0.85rem;
}
.ss-panel-title {
    display: flex; align-items: center; gap: 0.45rem;
    font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.82rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--teal);
}
.ss-panel-title svg { flex-shrink: 0; }
.ss-close-btn {
    background: none; border: none; cursor: pointer; padding: 4px;
    color: var(--slate); opacity: 0.5; border-radius: 6px;
    display: flex; align-items: center; transition: opacity 0.2s, background 0.2s;
}
.ss-close-btn:hover { opacity: 1; background: rgba(26,26,46,0.08); }

.ss-section { margin-bottom: 0.9rem; }
.ss-section:last-child { margin-bottom: 0; }
.ss-section-label {
    font-size: 0.75rem; font-weight: 600; color: var(--slate);
    margin-bottom: 0.5rem; opacity: 0.75;
}

/* Nearby airports */
.ss-airport-list { display: flex; flex-direction: column; gap: 0.45rem; }
.ss-airport-card {
    display: flex; align-items: center; justify-content: space-between;
    gap: 0.5rem; padding: 0.6rem 0.85rem;
    background: white; border: 1.5px solid rgba(22,105,122,0.18);
    border-radius: 10px; text-decoration: none;
    font-size: 0.88rem; font-weight: 600; color: var(--deep);
    transition: all 0.22s ease;
}
.ss-airport-card svg { flex-shrink: 0; opacity: 0.7; color: var(--teal); }
.ss-airport-card:hover {
    border-color: var(--teal); background: rgba(22,105,122,0.06);
    color: var(--teal); transform: translateX(2px);
    box-shadow: 0 3px 12px rgba(22,105,122,0.12);
}
.ss-arrow {
    font-size: 0.8rem; font-weight: 700; color: var(--teal);
    margin-left: auto; opacity: 0.8; white-space: nowrap;
}
.ss-airport-card:hover .ss-arrow { opacity: 1; }

/* Flexible date pills */
.ss-date-row {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.ss-date-pill {
    display: flex; flex-direction: column; align-items: center;
    padding: 0.45rem 0.65rem; border-radius: 10px;
    background: white; border: 1.5px solid rgba(22,105,122,0.18);
    text-decoration: none; transition: all 0.22s ease; min-width: 68px;
}
.ss-date-pill:hover {
    border-color: var(--teal); background: rgba(22,105,122,0.08);
    transform: translateY(-2px); box-shadow: 0 4px 12px rgba(22,105,122,0.14);
}
.ss-date-offset {
    font-size: 0.7rem; font-weight: 700; color: var(--teal);
    font-family: 'Space Grotesk', sans-serif; line-height: 1;
}
.ss-date-label {
    font-size: 0.73rem; color: var(--slate); font-weight: 500;
    line-height: 1.3; text-align: center; white-space: nowrap;
}
.ss-date-pill:hover .ss-date-offset,
.ss-date-pill:hover .ss-date-label { color: var(--teal); }

/* Mobile: compact layout */
@media (max-width: 640px) {
    .smart-savings-panel { padding: 0.85rem 0.9rem 0.9rem; }
    .ss-date-pill { min-width: 60px; padding: 0.4rem 0.5rem; }
    .ss-date-label { font-size: 0.68rem; }
    .ss-airport-card { font-size: 0.83rem; padding: 0.55rem 0.75rem; }
}
