/* ============================================
   MarbellaFlights.com - Award-Worthy Design
   Modern, light, travel-inspired
   ============================================ */

:root {
    --sun: #FF6B35;
    --sun-light: #FF8F5E;
    --gold: #F7C948;
    --sky: #4ECDC4;
    --sky-light: #A8E6CF;
    --ocean: #2C6FBB;
    --ocean-light: #E8F4FD;
    --sand: #FFF8F0;
    --sand-dark: #F5EDE3;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Typography ---- */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--gray-900); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.25; }
h3 { font-size: 1.25rem; }
p { color: var(--gray-600); }

/* ---- Header / Nav ---- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.main-nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}

.logo-link {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: var(--gray-900);
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem; font-weight: 700;
}
.logo-name em { font-style: normal; color: var(--sun); }
.logo-tagline { display: block; font-size: 0.7rem; color: var(--gray-400); letter-spacing: 0.5px; text-transform: uppercase; }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
    text-decoration: none; color: var(--gray-600); font-size: 0.95rem;
    font-weight: 500; position: relative; transition: color var(--transition);
}
.nav-links a:hover { color: var(--sun); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--sun);
    transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.mobile-menu-btn {
    display: none; background: none; border: none; cursor: pointer;
    width: 28px; height: 20px; position: relative;
}
.mobile-menu-btn span {
    display: block; width: 100%; height: 2px; background: var(--gray-700);
    position: absolute; left: 0; transition: var(--transition);
}
.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 9px; }
.mobile-menu-btn span:nth-child(3) { top: 18px; }

.mobile-nav-overlay {
    display: none; position: fixed; inset: 0; z-index: 99;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    padding-top: 100px;
}
.mobile-nav-overlay.active { display: flex; justify-content: center; }
.mobile-nav-content { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mobile-nav-content a {
    font-size: 1.5rem; font-weight: 600; text-decoration: none;
    color: var(--gray-800); transition: color var(--transition);
}
.mobile-nav-content a:hover { color: var(--sun); }

/* ---- Hero ---- */
.hero {
    background: linear-gradient(135deg, var(--sand) 0%, var(--white) 50%, var(--ocean-light) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute; bottom: -150px; left: -50px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(78,205,196,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.hero h1 { margin-bottom: 16px; }
.hero h1 .accent { color: var(--sun); }
.hero .subtitle { font-size: 1.15rem; color: var(--gray-500); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ---- Month Selector ---- */
.month-selector {
    display: flex; flex-wrap: wrap; gap: 8px;
    justify-content: center;
    max-width: 700px; margin: 0 auto 48px;
    position: relative; z-index: 1;
}
.month-btn {
    padding: 10px 18px; border: 1.5px solid var(--gray-200);
    border-radius: 100px; background: var(--white);
    font-size: 0.85rem; font-weight: 500; color: var(--gray-600);
    cursor: pointer; transition: all var(--transition);
    text-decoration: none;
}
.month-btn:hover { border-color: var(--sun); color: var(--sun); transform: translateY(-1px); }
.month-btn.active {
    background: var(--sun); color: white; border-color: var(--sun);
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

/* ---- Destination Grid ---- */
.section-title {
    text-align: center; margin-bottom: 40px;
}
.section-title .count { color: var(--sun); font-family: 'Inter', sans-serif; font-weight: 600; }

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.dest-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.dest-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--sun), var(--gold));
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--transition);
}
.dest-card:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.dest-card:hover::before { transform: scaleX(1); }

.dest-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.dest-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.dest-card .airport-code {
    font-family: 'Inter', sans-serif; font-size: 0.75rem;
    font-weight: 700; color: var(--sun); background: rgba(255,107,53,0.08);
    padding: 4px 10px; border-radius: 100px; letter-spacing: 1px;
}
.dest-card .country { font-size: 0.9rem; color: var(--gray-400); margin-bottom: 12px; }
.dest-card .airline-count {
    font-size: 0.85rem; color: var(--gray-500);
    display: flex; align-items: center; gap: 6px;
}
.dest-card .airline-count::before {
    content: ''; width: 16px; height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239CA3AF' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 12L3.269 3.126A59.768 59.768 0 0121.485 12 59.77 59.77 0 013.27 20.876L5.999 12zm0 0h7.5'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* ---- Continent Groups ---- */
.continent-group { margin-bottom: 48px; }
.continent-label {
    font-family: 'Inter', sans-serif; font-size: 0.8rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
    color: var(--gray-400); margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-100);
}

/* ---- Airlines Page ---- */
.airline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.airline-card {
    display: flex; align-items: center; gap: 16px;
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: var(--radius); padding: 20px;
    text-decoration: none; color: inherit;
    transition: all var(--transition);
}
.airline-card:hover {
    border-color: var(--gray-200); box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.airline-logo {
    width: 56px; height: 56px; border-radius: 12px;
    background: var(--gray-50); display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
}
.airline-logo img { max-width: 44px; max-height: 44px; object-fit: contain; }
.airline-logo .fallback {
    font-size: 1.1rem; font-weight: 700; color: var(--sun);
}

.airline-info h3 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.airline-info .airline-meta {
    font-size: 0.8rem; color: var(--gray-400);
    display: flex; gap: 12px; margin-top: 2px;
}
.airline-info .route-count { color: var(--sun); font-weight: 500; }

/* ---- Badges ---- */
.badge {
    display: inline-block; padding: 3px 10px; border-radius: 100px;
    font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-year-round { background: rgba(78,205,196,0.12); color: #1A8A7D; }
.badge-summer { background: rgba(255,107,53,0.1); color: #CC4A10; }
.badge-winter { background: rgba(44,111,187,0.1); color: #1E5299; }
.badge-lowcost { background: rgba(247,201,72,0.15); color: #946B00; }

/* ---- Destination Detail ---- */
.dest-hero {
    background: linear-gradient(135deg, var(--sand) 0%, var(--ocean-light) 100%);
    padding: 60px 0 40px;
}
.dest-hero .breadcrumb {
    font-size: 0.85rem; color: var(--gray-400); margin-bottom: 16px;
}
.dest-hero .breadcrumb a { color: var(--sun); text-decoration: none; }
.dest-hero .breadcrumb a:hover { text-decoration: underline; }
.dest-hero h1 { margin-bottom: 8px; }
.dest-hero .dest-meta {
    display: flex; gap: 24px; color: var(--gray-500); font-size: 0.95rem;
    flex-wrap: wrap;
}

.route-list { margin: 40px 0 60px; }
.route-item {
    display: flex; align-items: center; gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-100);
}
.route-item:last-child { border-bottom: none; }

.route-airline-logo {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--gray-50); display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
}
.route-airline-logo img { max-width: 36px; max-height: 36px; object-fit: contain; }

.route-details { flex: 1; }
.route-details h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; }
.route-details .route-meta { font-size: 0.85rem; color: var(--gray-400); margin-top: 2px; }

.route-actions { display: flex; gap: 8px; align-items: center; }
.btn-book {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 20px; border-radius: 100px;
    background: var(--sun); color: white;
    text-decoration: none; font-size: 0.85rem; font-weight: 600;
    transition: all var(--transition);
}
.btn-book:hover { background: var(--sun-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,107,53,0.3); }

/* ---- Tourist Info ---- */
.tourist-info {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 32px;
    margin: 40px 0;
}
.tourist-info h2 { font-size: 1.5rem; margin-bottom: 16px; }
.tourist-info p { line-height: 1.8; }

/* ---- Footer ---- */
.site-footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; color: white; margin-bottom: 12px;
}
.footer-brand .footer-logo em { font-style: normal; color: var(--sun); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.5); }

.footer-stats h4, .footer-links h4 {
    color: white; font-family: 'Inter', sans-serif; font-weight: 600;
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 16px;
}
.footer-stats ul, .footer-links ul { list-style: none; }
.footer-stats li, .footer-links li { margin-bottom: 8px; font-size: 0.9rem; }
.footer-stats strong { color: var(--sun); }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--sun); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 0.8rem; color: rgba(255,255,255,0.35);
}

.cache-clear-btn {
    background: none; border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.2); border-radius: 50%;
    width: 28px; height: 28px; cursor: pointer;
    font-size: 14px; display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.cache-clear-btn:hover {
    border-color: var(--sun); color: var(--sun);
    transform: rotate(180deg);
}

/* ---- Search / Filter ---- */
.search-bar {
    max-width: 480px; margin: 0 auto 32px;
    position: relative; z-index: 1;
}
.search-bar input {
    width: 100%; padding: 14px 20px 14px 48px;
    border: 1.5px solid var(--gray-200); border-radius: 100px;
    font-size: 0.95rem; background: var(--white);
    color: var(--gray-800);
    transition: all var(--transition);
    outline: none;
}
.search-bar input:focus { border-color: var(--sun); box-shadow: 0 0 0 3px rgba(255,107,53,0.1); }
.search-bar input::placeholder { color: var(--gray-400); }
.search-bar .search-icon {
    position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
    width: 18px; height: 18px; color: var(--gray-400);
}

/* ---- Month Comparison ---- */
.month-comparison {
    background: var(--gray-50); border: 1px solid var(--gray-100);
    border-radius: var(--radius); padding: 20px 24px;
    margin-bottom: 40px;
}
.comparison-header {
    font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; color: var(--gray-400);
    margin-bottom: 14px;
}
.comparison-cols { display: flex; flex-wrap: wrap; gap: 24px; }
.comparison-added, .comparison-removed { flex: 1; min-width: 200px; }
.comparison-label {
    font-size: 0.82rem; font-weight: 600; margin-bottom: 8px;
}
.comparison-added .comparison-label { color: #0E766E; }
.comparison-removed .comparison-label { color: #B91C1C; }
.comparison-tag {
    display: inline-block; padding: 4px 12px; border-radius: 100px;
    font-size: 0.78rem; font-weight: 500; margin: 3px 4px 3px 0;
}
.tag-added { background: rgba(78,205,196,0.12); color: #0E766E; }
.tag-removed { background: rgba(239,68,68,0.08); color: #B91C1C; }
a.comparison-tag { text-decoration: none; cursor: pointer; transition: filter 0.15s; }
a.comparison-tag:hover { filter: brightness(0.85); text-decoration: underline; }
.dest-card[id] { scroll-margin-top: 20px; }

/* ---- Empty state ---- */
.empty-state {
    text-align: center; padding: 80px 20px; color: var(--gray-400);
}
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.5; }

/* ---- Loading Shimmer ---- */
@keyframes shimmer {
    to { background-position: -200% 0; }
}
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* ---- Admin ---- */
.admin-container { max-width: 900px; margin: 40px auto; padding: 0 24px; }
.admin-header { margin-bottom: 32px; }
.admin-header h1 { font-size: 1.75rem; }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: var(--gray-700); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 10px 14px;
    border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
    font-size: 0.95rem; color: var(--gray-800);
    transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--sun);
}

.btn {
    padding: 10px 24px; border: none; border-radius: var(--radius-sm);
    font-size: 0.9rem; font-weight: 600; cursor: pointer;
    transition: all var(--transition);
}
.btn-primary { background: var(--sun); color: white; }
.btn-primary:hover { background: var(--sun-light); }
.btn-danger { background: #EF4444; color: white; }
.btn-danger:hover { background: #DC2626; }
.btn-sm { padding: 6px 14px; font-size: 0.8rem; }

.admin-table {
    width: 100%; border-collapse: collapse; margin-top: 24px;
}
.admin-table th {
    text-align: left; padding: 12px 16px;
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px; color: var(--gray-500);
    border-bottom: 2px solid var(--gray-100);
}
.admin-table td {
    padding: 12px 16px; border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}
.admin-table tr:hover td { background: var(--gray-50); }

.login-form {
    max-width: 400px; margin: 100px auto;
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: var(--radius); padding: 40px;
    box-shadow: var(--shadow);
}
.login-form h2 { text-align: center; margin-bottom: 24px; }

.alert {
    padding: 12px 16px; border-radius: var(--radius-sm);
    font-size: 0.9rem; margin-bottom: 20px;
}
.alert-success { background: rgba(78,205,196,0.1); color: #0E766E; border: 1px solid rgba(78,205,196,0.2); }
.alert-error { background: rgba(239,68,68,0.1); color: #B91C1C; border: 1px solid rgba(239,68,68,0.2); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }

    .hero { padding: 48px 0 36px; }
    .month-selector { gap: 6px; }
    .month-btn { padding: 8px 12px; font-size: 0.78rem; }

    .dest-grid { grid-template-columns: 1fr; }
    .airline-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .route-item { flex-direction: column; align-items: flex-start; gap: 12px; }
    .route-actions { width: 100%; }
    .btn-book { width: 100%; justify-content: center; }

    .dest-hero .dest-meta { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .dest-card { padding: 18px; }
    .hero h1 { font-size: 1.75rem; }
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}
.dest-card:nth-child(1) { animation-delay: 0.02s; }
.dest-card:nth-child(2) { animation-delay: 0.04s; }
.dest-card:nth-child(3) { animation-delay: 0.06s; }
.dest-card:nth-child(4) { animation-delay: 0.08s; }
.dest-card:nth-child(5) { animation-delay: 0.1s; }
.dest-card:nth-child(6) { animation-delay: 0.12s; }
.dest-card:nth-child(7) { animation-delay: 0.14s; }
.dest-card:nth-child(8) { animation-delay: 0.16s; }
.dest-card:nth-child(9) { animation-delay: 0.18s; }

/* ---- Destination Enriched Info Styles ---- */

/* Quick Facts Section */
.dest-quick-facts {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.dest-quick-facts h2 {
    margin-bottom: 24px;
    color: var(--primary);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.fact-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.fact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.fact-icon {
    font-size: 1.75rem;
}

.fact-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fact-value {
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}

/* Index Bars (Safety/Cost) */
.index-bars {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.index-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.index-label {
    min-width: 100px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bar-container {
    flex: 1;
    height: 8px;
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease-out;
}

.bar-fill.safety {
    background: linear-gradient(90deg, #ef4444, #eab308, #22c55e);
}

.bar-fill.cost {
    background: linear-gradient(90deg, #22c55e, #eab308, #ef4444);
}

.index-value {
    min-width: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: right;
}

/* Extended Description */
.dest-info {
    margin: 32px 0;
}

.extended-desc {
    line-height: 1.8;
    color: var(--text);
    font-size: 1.05rem;
}

/* Tourist Highlights */
.dest-highlights {
    margin: 32px 0;
    padding: 24px;
    background: linear-gradient(135deg, rgba(78,205,196,0.05) 0%, rgba(78,205,196,0.1) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.dest-highlights h2 {
    color: var(--primary);
    margin-bottom: 16px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
}

.highlights-list li::before {
    content: '✨';
    font-size: 1.2rem;
}

/* Practical Info Section */
.dest-practical {
    margin: 32px 0;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
}

.dest-practical h2 {
    margin-bottom: 20px;
    color: var(--primary);
}

.practical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.practical-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: var(--surface);
    border-radius: 8px;
}

.practical-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.practical-value {
    font-weight: 500;
    color: var(--text);
}

.visa-note {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.visa-note:has(✅) {
    background: rgba(34, 197, 94, 0.1);
}

/* Travel Tips */
.dest-tips {
    margin: 24px 0;
    padding: 20px;
    background: rgba(234, 179, 8, 0.05);
    border-radius: 12px;
    border-left: 4px solid #eab308;
}

.dest-tips h3 {
    margin-bottom: 12px;
    color: #a16207;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dest-quick-facts {
        padding: 20px;
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .fact-card {
        padding: 12px;
    }
    
    .fact-icon {
        font-size: 1.5rem;
    }
    
    .index-bar {
        flex-wrap: wrap;
    }
    
    .index-label {
        min-width: 100%;
        margin-bottom: 4px;
    }
    
    .practical-grid {
        grid-template-columns: 1fr;
    }
}
