:root {
    --ram-red: #C8102E;
    --ram-red-dark: #a00d25;
    --ram-red-light: #f8d7da;
    --ram-blue: #002D62;
    --ram-blue-dark: #001a3d;
    --ram-blue-light: #e8eef7;
    --ram-gold: #D4A843;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
    --bg-light: #F7F8FA;
    --bg-warm: #FDF8F3;
    --white: #ffffff;
    --border: #E5E7EB;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 16px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.25s; }
img { max-width: 100%; display: block; object-fit: cover; }
button { cursor: pointer; border: none; font-family: inherit; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #999; }

/* ── Topbar ── */
.topbar {
    background: var(--ram-red);
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1060;
}
.topbar a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.topbar a:hover { color: var(--white); }
.topbar-left { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 0.35rem; white-space: nowrap; }
.topbar-item i { font-size: 0.82rem; color: var(--ram-gold); }
.topbar-right { display: flex; align-items: center; gap: 1rem; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }
.topbar-lang-btn {
    background: none; color: rgba(255,255,255,0.8); font-size: 0.78rem; font-weight: 500;
    padding: 0.15rem 0; border: none; cursor: pointer; display: inline-flex; align-items: center;
    gap: 0.3rem; transition: color 0.2s; font-family: var(--font-body);
}
.topbar-lang-btn:hover { color: var(--white); }
.topbar-lang-btn i { font-size: 0.72rem; }
.topbar-socials { display: flex; align-items: center; gap: 0.5rem; }
.topbar-socials a {
    width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center;
    justify-content: center; font-size: 0.8rem; transition: all 0.2s;
}
.topbar-socials a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
@media (max-width: 767px) { .topbar { display: none; } }

/* ── Header ── */
.site-header {
    background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border); position: sticky; top: 0; z-index: 1050; transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.logo-img { height: 50px; width: auto; display: block; }
.logo-img-w { height: 60px; width: auto; display: block; }
.nav-main .nav-link {
    font-weight: 600; font-size: 0.9rem; color: var(--ram-blue);
    padding: 0.5rem 1rem !important; border-radius: 8px; transition: all 0.25s;
}
.nav-main .nav-link:hover { color: var(--ram-red); background: rgba(200,16,46,0.06); }
.nav-main .nav-link.active-link { color: var(--ram-red); background: rgba(200,16,46,0.08); }
.btn-header-login {
    padding: 0.45rem 1.3rem; border: 1.5px solid var(--ram-red); color: var(--ram-red);
    background: transparent; border-radius: 50px; font-weight: 600; font-size: 0.88rem; transition: all 0.25s;
}
.btn-header-login:hover {
    background: var(--ram-red); color: var(--white); transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,45,98,0.25);
}

/* ── Shared Components ── */
.section-label {
    display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 700;
    color: var(--ram-red); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--ram-red); }
.section-title {
    font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
    color: var(--ram-blue); margin-bottom: 0.5rem; line-height: 1.2;
}
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; }

/* ── Dest Hero ── */
.dest-hero {
    position: relative; min-height: 440px; display: flex; align-items: center; overflow: hidden;
    background: var(--ram-blue);
}
.dest-hero-bg {
    position: absolute; inset: 0;
    background: url('../image/bg-3.jpg') center/cover no-repeat;
    z-index: 0;
}
.dest-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgb(76 0 0 / 94%) 0%, rgb(150 8 26 / 78%) 50%, rgba(200, 16, 46, 0.5) 100%);
    z-index: 1;
}
.dest-hero-decor {
    position: absolute; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
    bottom: -150px; right: -100px; z-index: 1;
}
.dest-hero-decor-2 {
    position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,16,46,0.08) 0%, transparent 70%);
    top: -80px; left: 5%; z-index: 1;
}
.dest-hero-inner { position: relative; z-index: 2; width: 100%; padding: 4rem 0; text-align: center; }
.dest-hero-inner .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(212,168,67,0.15); border: 1px solid rgba(212,168,67,0.3);
    color: var(--ram-gold); padding: 0.35rem 1rem; border-radius: 50px;
    font-size: 0.82rem; font-weight: 600; margin-bottom: 1.25rem;
}
.dest-hero-inner h1 {
    font-family: var(--font-display); color: var(--white); font-size: 2.8rem;
    font-weight: 800; line-height: 1.15; margin-bottom: 1rem;
}
.dest-hero-inner h1 em { font-style: normal; color: var(--ram-gold); }
.dest-hero-inner p { color: rgba(255,255,255,0.75); font-size: 1.08rem; max-width: 650px; margin: 0 auto 2rem; }
.dest-breadcrumb {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    margin-bottom: 1.5rem; font-size: 0.85rem;
}
.dest-breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.dest-breadcrumb a:hover { color: var(--white); }
.dest-breadcrumb .sep { color: rgba(255,255,255,0.3); }
.dest-breadcrumb .current { color: var(--ram-gold); font-weight: 600; }
.hero-quick-stats {
    display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
}
.hero-quick-stat { text-align: center; }
.hero-quick-stat-num {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--white);
}
.hero-quick-stat-num .gold { color: var(--ram-gold); }
.hero-quick-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Destination Grid ── */
.destinations-grid-section { padding: 5rem 0; background: var(--bg-light); }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.dest-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: all 0.35s; height: 100%;
    border: 1.5px solid var(--border); position: relative;
}
.dest-card:hover {
    box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent;
}
.dest-card-img {
    position: relative; overflow: hidden; height: 210px;
}
.dest-card-img img {
    width: 100%; height: 100%; transition: transform 0.6s ease;
}
.dest-card:hover .dest-card-img img { transform: scale(1.08); }
.dest-card-img-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.45));
}
.dest-card-country {
    position: absolute; bottom: 10px; left: 12px; color: var(--white);
    font-size: 0.72rem; font-weight: 600; background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px); padding: 0.2rem 0.6rem; border-radius: 50px;
    display: flex; align-items: center; gap: 0.3rem;
}
.dest-card-freq {
    position: absolute; top: 10px; right: 12px; background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px); color: var(--white); padding: 0.2rem 0.6rem;
    border-radius: 50px; font-size: 0.7rem; font-weight: 600;
    display: flex; align-items: center; gap: 0.3rem;
}
.dest-card-freq i { font-size: 0.72rem; color: var(--ram-gold); }
.dest-card-body { padding: 1.25rem; }
.dest-card-body h3 {
    font-weight: 700; font-size: 1.1rem; color: var(--text-dark); margin-bottom: 0.2rem;
}
.dest-card-body .dest-card-code {
    font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-bottom: 0.5rem;
}
.dest-card-body .dest-card-desc {
    font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem;
    display: -webkit-box; line-clamp: 2; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.dest-card-footer {
    display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}
.dest-card-price {
    font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--ram-blue);
}
.dest-card-price small { font-weight: 400; font-size: 0.75rem; color: var(--text-muted); }
.btn-dest-book {
    padding: 0.4rem 1.1rem; background: var(--ram-blue-light); color: var(--ram-blue);
    font-weight: 700; font-size: 0.8rem; border-radius: 50px; transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 0.35rem;
}
.btn-dest-book:hover { background: var(--ram-blue); color: var(--white); transform: translateY(-1px); }

/* ── All Destinations Table Section ── */
.table-section {
    padding: 5rem 0;
    background: var(--white);
}
.table-controls {
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.table-search-wrap {
    position: relative; flex: 1; min-width: 280px;
}
.table-search-wrap i {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    color: var(--text-muted); font-size: 0.95rem;
}
.table-search {
    width: 100%; padding: 0.7rem 1rem 0.7rem 2.5rem; border: 1.5px solid var(--border);
    border-radius: var(--radius); font-size: 0.9rem; font-family: var(--font-body);
    outline: none; transition: all 0.2s; background: var(--bg-light);
}
.table-search:focus {
    border-color: var(--ram-blue); box-shadow: 0 0 0 3px rgba(0,45,98,0.1);
    background: var(--white);
}
.table-search::placeholder { color: #b0b0b0; }

.region-filter-tabs {
    display: flex; gap: 0.4rem; flex-wrap: wrap;
}
.region-tab {
    padding: 0.5rem 1rem; background: var(--bg-light); border-radius: 50px;
    font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
    transition: all 0.25s; border: 1.5px solid transparent;
}
.region-tab:hover { color: var(--text-dark); border-color: var(--border); }
.region-tab.active {
    background: var(--ram-red); color: var(--white); border-color: var(--ram-red);
}
.region-tab .tab-count {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 18px; height: 18px; border-radius: 50px; font-size: 0.68rem;
    font-weight: 700; margin-left: 0.3rem; padding: 0 4px;
    background: rgba(255,255,255,0.2); color: var(--white);
}
.region-tab:not(.active) .tab-count {
    background: var(--border); color: var(--text-muted);
}

.table-wrapper {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md); border: 1.5px solid var(--border);
}
.dest-table {
    width: 100%; border-collapse: collapse;
}
.dest-table thead {
    background: linear-gradient(135deg, var(--ram-blue) 0%, #003d82 100%);
}
.dest-table thead th {
    padding: 1rem 1.25rem; color: var(--white); font-weight: 700; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.06em; text-align: left;
    border: none; position: relative;
}
.dest-table thead th:first-child { border-radius: 0; }
.dest-table thead th:last-child { border-radius: 0; }
.dest-table thead th .sort-icon {
    margin-left: 0.4rem; font-size: 0.75rem; opacity: 0.6; cursor: pointer;
    transition: opacity 0.2s;
}
.dest-table thead th .sort-icon:hover { opacity: 1; }
.dest-table thead th .sort-icon.active { opacity: 1; color: var(--ram-gold); }

.dest-table tbody tr {
    transition: all 0.2s;
    border-bottom: 1px solid var(--border);
}
.dest-table tbody tr:last-child { border-bottom: none; }
.dest-table tbody tr:hover {
    background: var(--ram-blue-light);
}
.dest-table tbody td {
    padding: 0.9rem 1.25rem; font-size: 0.9rem;
}
.dest-table .country-cell {
    display: flex; align-items: center; gap: 0.75rem;
}
.country-flag {
    width: 32px; height: 22px; border-radius: 4px; object-fit: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.country-name { font-weight: 600; color: var(--text-dark); }
.city-name { font-weight: 500; color: var(--text-dark); }
.region-badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.25rem 0.65rem; border-radius: 50px; font-size: 0.72rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
}
.region-badge.morocco { background: #dcfce7; color: #166534; }
.region-badge.africa { background: #fef3c7; color: #92400e; }
.region-badge.europe { background: var(--ram-blue-light); color: var(--ram-blue); }
.region-badge.middle-east { background: #fce7f3; color: #9d174d; }
.region-badge.americas { background: var(--ram-red-light); color: var(--ram-red-dark); }
.region-badge.asia { background: #e0e7ff; color: #3730a3; }
.region-badge.uk { background: #dbeafe; color: #1e40af; }

.btn-table-link {
    padding: 0.4rem 1rem; background: var(--ram-blue); color: var(--white);
    font-weight: 600; font-size: 0.8rem; border-radius: 50px; transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 0.35rem;
}
.btn-table-link:hover {
    background: var(--ram-blue-dark); color: var(--white);
    transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,45,98,0.25);
}
.btn-table-link i { font-size: 0.75rem; }

.table-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.25rem; background: var(--bg-light);
    border-top: 1px solid var(--border); flex-wrap: wrap; gap: 0.75rem;
}
.table-footer-info {
    font-size: 0.85rem; color: var(--text-muted);
}
.table-footer-info strong { color: var(--text-dark); }
.table-pagination {
    display: flex; align-items: center; gap: 0.35rem;
}
.page-btn {
    width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center;
    justify-content: center; font-size: 0.85rem; font-weight: 600;
    background: var(--white); border: 1.5px solid var(--border); color: var(--text-muted);
    transition: all 0.2s;
}
.page-btn:hover { border-color: var(--ram-blue); color: var(--ram-blue); }
.page-btn.active {
    background: var(--ram-blue); border-color: var(--ram-blue); color: var(--white);
}
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.table-no-results {
    text-align: center; padding: 3rem 2rem;
}
.table-no-results i { font-size: 2.5rem; color: #d1d5db; margin-bottom: 0.75rem; }
.table-no-results h4 { font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.table-no-results p { color: var(--text-muted); font-size: 0.9rem; }

/* ── Popular Routes ── */
.routes-section {
    padding: 5rem 0; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--ram-red) 0%, #820042 100%);
    color: var(--white);
}
.routes-section::before {
    content: ''; position: absolute; top: -30%; right: -15%; width: 500px; height: 500px;
    border-radius: 50%; background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
}
.routes-section .section-label { color: var(--ram-gold); }
.routes-section .section-label::before { background: var(--ram-gold); }
.routes-section .section-title { color: var(--white); }
.routes-section .section-subtitle { color: rgba(255,255,255,0.7); }
.route-item {
    display: flex; align-items: center; gap: 1rem; padding: 1.15rem 1.5rem;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); transition: all 0.25s; margin-bottom: 0.75rem;
}
.route-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); transform: translateX(4px); }
.route-airport {
    font-weight: 700; font-size: 1rem; min-width: 60px;
}
.route-airport small { display: block; font-weight: 400; font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.route-arrow {
    flex: 1; display: flex; align-items: center; color: rgba(255,255,255,0.2);
}
.route-arrow .line { flex: 1; height: 1.5px; background: currentColor; }
.route-arrow i { font-size: 0.8rem; margin: 0 0.4rem; }
.route-info { text-align: right; }
.route-price {
    font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--ram-gold);
}
.route-price small { font-weight: 400; font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.route-freq { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ── CTA Section ── */
.cta-section {
    padding: 5rem 0; background: var(--bg-warm); border-top: 1px solid var(--border);
}
.cta-card {
    background: linear-gradient(135deg, #620000 0%, #820000 100%);
    border-radius: var(--radius-lg); padding: 3.5rem; position: relative; overflow: hidden;
    text-align: center; color: var(--white);
}
.cta-card::before {
    content: ''; position: absolute; top: -40%; right: -10%; width: 400px; height: 400px;
    border-radius: 50%; background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
}
.cta-card::after {
    content: ''; position: absolute; bottom: -30%; left: -5%; width: 300px; height: 300px;
    border-radius: 50%; background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 0.75rem; }
.cta-card h2 em { font-style: normal; color: var(--ram-gold); }
.cta-card p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 550px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
    padding: 0.75rem 2rem; background: var(--ram-red); color: var(--white);
    font-weight: 700; font-size: 0.95rem; border-radius: 50px; transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-cta-primary:hover { background: var(--ram-red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,0.35); }
.btn-cta-outline {
    padding: 0.75rem 2rem; background: transparent; color: var(--white); font-weight: 600;
    font-size: 0.95rem; border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.35); transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: var(--white); }

/* ── Newsletter ── */
.newsletter-section { background: var(--bg-warm); padding: 4rem 0; border-top: 1px solid var(--border); }
.newsletter-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 3rem;
    box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 3rem;
}
.newsletter-text h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--ram-blue); margin-bottom: 0.4rem; }
.newsletter-text p { color: var(--text-muted); font-size: 0.92rem; }
.newsletter-form { display: flex; gap: 0.5rem; min-width: 320px; }
.newsletter-form input {
    flex: 1; padding: 0.7rem 1rem; border: 1.5px solid var(--border); border-radius: 10px;
    font-size: 0.9rem; font-family: var(--font-body); outline: none; transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--ram-blue); }
.btn-newsletter {
    padding: 0.7rem 1.5rem; background: var(--ram-red); color: var(--white);
    font-weight: 700; font-size: 0.9rem; border-radius: 10px; transition: all 0.25s; white-space: nowrap;
}
.btn-newsletter:hover { background: var(--ram-red-dark); color: var(--white); }

/* ── Footer ── */
.site-footer { background: #0f172a; color: #94a3b8; padding: 4rem 0 0; }
.footer-brand {
    font-family: var(--font-body); font-weight: 800; font-size: 1.15rem; color: var(--white);
    margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.footer-brand span { color: var(--ram-red); }
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 0.5rem; }
.footer-socials a {
    width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
    color: #94a3b8; transition: all 0.25s;
}
.footer-socials a:hover { background: var(--ram-red); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-weight: 700; font-size: 0.95rem; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: #94a3b8; transition: all 0.2s; }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; margin-top: 3rem;
    display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: #64748b; }
.footer-bottom-links a:hover { color: var(--white); }

/* ── Toast ── */
.toast-custom {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px);
    background: #1e293b; color: #fff; padding: 0.85rem 1.5rem; border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    z-index: 9999; font-size: 0.9rem; display: flex; align-items: center; gap: 0.6rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.toast-custom.show { transform: translateX(-50%) translateY(0); }
.toast-custom i { color: #10b981; font-size: 1.1rem; }

/* ── Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 991px) {
    .dest-hero-inner h1 { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-card { flex-direction: column; text-align: center; }
    .newsletter-form { min-width: auto; width: 100%; }
    .table-controls { flex-direction: column; align-items: stretch; }
    .table-search-wrap { min-width: auto; }
}
@media (max-width: 767px) {
    .dest-hero { min-height: 360px; }
    .dest-hero-inner h1 { font-size: 1.8rem; }
    .dest-hero-inner { padding: 3rem 0; }
    .section-title { font-size: 1.6rem; }
    .dest-grid { grid-template-columns: 1fr; }
    .cta-card { padding: 2.5rem 1.5rem; }
    .cta-card h2 { font-size: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
    .hero-quick-stats { gap: 1.5rem; }
    .dest-table thead th, .dest-table tbody td { padding: 0.7rem 0.75rem; font-size: 0.82rem; }
    .country-flag { width: 26px; height: 18px; }
    .btn-table-link { padding: 0.35rem 0.75rem; font-size: 0.75rem; }
    .table-footer { flex-direction: column; text-align: center; }
    .hide-mobile { display: none; }
}