/* ============================================================
   EuroStream IPTV — Global Stylesheet
   Multi-page · Multi-language (RTL-ready)
   ============================================================ */

:root {
    --bg-primary: #0a0d14;
    --bg-secondary: #121824;
    --bg-card: #182030;
    --accent-primary: #6366f1;
    --accent-glow: #818cf8;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-accent: 0 6px 25px rgba(99, 102, 241, 0.5);
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { flex: 1 0 auto; }

a { color: var(--accent-glow); text-decoration: none; transition: color .2s ease; }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Top Announcement Bar ===== */
.top-bar {
    background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff; font-size: 13px; font-weight: 600; text-align: center;
    padding: 8px 16px; letter-spacing: .2px;
}
.top-bar span {
    background: rgba(255, 255, 255, .2); padding: 2px 8px;
    border-radius: 12px; margin-left: 6px; font-size: 12px;
}

/* ===== Header / Navbar ===== */
header {
    position: sticky; top: 0; width: 100%; z-index: 1000;
    background: rgba(10, 13, 20, .90); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-color);
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 76px; gap: 16px; }

.logo {
    font-size: 24px; font-weight: 800; letter-spacing: -.5px; color: #fff;
    display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.logo span {
    background: var(--accent-gradient); -webkit-background-clip: text;
    background-clip: text; -webkit-text-fill-color: transparent;
}

.main-nav { display: flex; align-items: center; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: 15px; }
.nav-links a:hover, .nav-links a.active { color: var(--text-main); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.05); border: 1px solid var(--border-color);
    color: var(--text-muted); font-family: var(--font); font-size: 14px; font-weight: 600;
    padding: 8px 14px; border-radius: 10px; cursor: pointer;
}
.lang-btn:hover { color: #fff; border-color: rgba(255,255,255,.2); }
.lang-menu {
    position: absolute; right: 0; top: calc(100% + 8px); min-width: 170px;
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px;
    padding: 6px; display: none; z-index: 1100; box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.lang-menu.open { display: block; }
.lang-menu a {
    display: block; padding: 9px 12px; border-radius: 8px;
    color: var(--text-muted); font-size: 14px;
}
.lang-menu a:hover { background: rgba(255,255,255,.05); color: #fff; }

/* Hamburger */
.nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; background: transparent;
    border: 1px solid var(--border-color); border-radius: 10px; cursor: pointer; padding: 0 10px;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: .3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 24px; border-radius: 12px; font-weight: 600; font-size: 15px;
    text-decoration: none; transition: all .3s ease; cursor: pointer; border: none; gap: 8px;
    font-family: var(--font); white-space: nowrap;
}
.btn-primary { background: var(--accent-gradient); color: #fff; box-shadow: 0 4px 20px rgba(99,102,241,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-accent); color: #fff; }
.btn-outline { background: transparent; color: var(--text-main); border: 1px solid var(--border-color); }
.btn-outline:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.2); }
.btn-success { background: #25d366; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,.3); }
.btn-success:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(37,211,102,.45); color: #fff; }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ===== Hero ===== */
.hero {
    padding: 110px 0 80px; position: relative; text-align: center;
    background: radial-gradient(circle at 50% 20%, rgba(99,102,241,.18) 0%, transparent 60%);
}
.badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 18px;
    border-radius: 30px; background: rgba(99,102,241,.12);
    border: 1px solid rgba(99,102,241,.35); color: var(--accent-glow);
    font-size: 14px; font-weight: 600; margin-bottom: 24px;
}
.hero h1 { font-size: 54px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -1.5px; }
.hero h1 span { background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 18px; color: var(--text-muted); max-width: 720px; margin: 0 auto 36px; }
.hero-buttons { display: flex; justify-content: center; gap: 16px; margin-bottom: 50px; flex-wrap: wrap; }

/* Trust strip */
.trust-strip {
    display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap;
    padding: 18px 24px; background: rgba(255,255,255,.02);
    border: 1px solid var(--border-color); border-radius: 16px;
    max-width: 960px; margin: 0 auto 50px;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); font-weight: 500; }
.trust-item strong { color: var(--text-main); }

/* Hero stats */
.hero-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    background: var(--bg-secondary); border: 1px solid var(--border-color);
    padding: 32px; border-radius: 20px;
}
.stat-item h3 { font-size: 32px; font-weight: 800; color: var(--accent-glow); margin-bottom: 4px; }
.stat-item p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ===== Sections ===== */
section { padding: 90px 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.section-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 14px; letter-spacing: -.5px; }
.section-header p { color: var(--text-muted); font-size: 16px; }

/* Breadcrumb */
.breadcrumb {
    padding: 24px 0 0; font-size: 13.5px; color: var(--text-muted);
    display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--accent-glow); }

/* Page header (subpages) */
.page-header {
    padding: 60px 0 40px; text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(99,102,241,.14) 0%, transparent 60%);
}
.page-header h1 { font-size: 44px; font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; }
.page-header p { color: var(--text-muted); font-size: 17px; max-width: 720px; margin: 0 auto; }

/* ===== Features ===== */
.features { background: var(--bg-primary); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    padding: 36px 28px; border-radius: 20px; transition: all .3s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(99,102,241,.4); }
.feature-icon {
    width: 56px; height: 56px; border-radius: 14px; background: rgba(99,102,241,.12);
    display: flex; align-items: center; justify-content: center; font-size: 26px;
    margin-bottom: 22px; color: var(--accent-glow);
}
.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ===== Pricing ===== */
.pricing { background: var(--bg-secondary); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: center; }
.price-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: 24px; padding: 40px 32px; position: relative; transition: all .3s ease;
}
.price-card.featured {
    border: 2px solid var(--accent-primary);
    background: linear-gradient(180deg, #1d263b 0%, #141b2a 100%);
    box-shadow: 0 10px 40px rgba(99,102,241,.25); transform: scale(1.04);
}
.popular-badge {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    background: var(--accent-gradient); color: #fff; padding: 6px 20px;
    border-radius: 20px; font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .5px; white-space: nowrap;
}
.price-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.price-card .desc { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.price-amount { font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 24px; display: flex; align-items: baseline; gap: 4px; }
.price-amount span { font-size: 15px; color: var(--text-muted); font-weight: 500; }
.price-features { list-style: none; margin-bottom: 32px; border-top: 1px solid var(--border-color); padding-top: 24px; }
.price-features li { display: flex; align-items: center; gap: 12px; color: var(--text-main); font-size: 14px; margin-bottom: 14px; }
.price-features li::before { content: "✓"; color: var(--success); font-weight: 800; font-size: 16px; }

/* ===== Devices ===== */
.devices-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.device-item {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px;
    padding: 24px 16px; display: flex; flex-direction: column; align-items: center;
    gap: 12px; transition: all .3s ease; text-align: center;
}
.device-item:hover { border-color: var(--accent-glow); transform: translateY(-4px); }
.device-icon { font-size: 32px; }
.device-item span { font-size: 14px; font-weight: 600; color: var(--text-muted); }

/* ===== Testimonials ===== */
.testimonials { background: var(--bg-secondary); }
.rating-overview { text-align: center; margin-bottom: 40px; }
.stars { color: #fbbf24; font-size: 22px; margin-bottom: 8px; }
.rating-score { font-size: 28px; font-weight: 800; color: #fff; }
.rating-count { font-size: 14px; color: var(--text-muted); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px;
    padding: 28px; display: flex; flex-direction: column; justify-content: space-between;
}
.testimonial-text { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.testimonial-user { display: flex; align-items: center; gap: 12px; }
.user-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: var(--accent-gradient);
    display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 16px;
}
.user-info h4 { font-size: 15px; font-weight: 700; color: #fff; }
.user-info p { font-size: 12px; color: var(--success); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ===== FAQ ===== */
.faq { background: var(--bg-primary); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 24px 28px; }
.faq-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.faq-item p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }

/* ===== Content / Article / HowTo ===== */
.content { max-width: 820px; margin: 0 auto; }
.content h2 { font-size: 28px; font-weight: 800; margin: 40px 0 16px; letter-spacing: -.3px; }
.content h3 { font-size: 21px; font-weight: 700; margin: 30px 0 12px; }
.content p { color: var(--text-muted); font-size: 16px; line-height: 1.75; margin-bottom: 18px; }
.content ul, .content ol { margin: 0 0 20px 24px; }
.content ul li, .content ol li { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 8px; }
.content ul li::marker { color: var(--accent-glow); }

.howto-steps { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.howto-step { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 22px 26px; display: flex; gap: 18px; }
.step-num {
    flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px;
    background: var(--accent-gradient); color: #fff; font-weight: 800; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
}
.howto-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.howto-step p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ===== Blog ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px;
    overflow: hidden; transition: all .3s ease; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); border-color: rgba(99,102,241,.4); }
.blog-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.blog-cat { font-size: 12px; font-weight: 700; color: var(--accent-glow); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.blog-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.blog-card h3 a { color: #fff; }
.blog-card h3 a:hover { color: var(--accent-glow); }
.blog-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.blog-meta { margin-top: auto; font-size: 12.5px; color: var(--text-muted); display: flex; gap: 12px; }

/* ===== CTA Band ===== */
.cta-band {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: var(--radius-lg); padding: 56px 40px; text-align: center;
}
.cta-band h2 { font-size: 32px; font-weight: 800; margin-bottom: 14px; color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 16px; max-width: 560px; margin: 0 auto 30px; }
.cta-band .btn { background: #fff; color: #4f46e5; box-shadow: 0 6px 25px rgba(0,0,0,.2); }
.cta-band .btn:hover { transform: translateY(-2px); color: #4f46e5; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 20px; }
.contact-item .ico { font-size: 22px; }
.contact-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.contact-item p { color: var(--text-muted); font-size: 14px; }
.contact-item a { color: var(--accent-glow); font-size: 14px; word-break: break-all; }
.form-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px; padding: 34px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--text-main); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 13px 15px; border-radius: 12px;
    background: var(--bg-secondary); border: 1px solid var(--border-color);
    color: var(--text-main); font-family: var(--font); font-size: 15px;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent-primary); }
.form-group textarea { min-height: 130px; resize: vertical; }

/* ===== Footer ===== */
footer { background: #06080e; border-top: 1px solid var(--border-color); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin: 16px 0 24px; max-width: 320px; }
.footer-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: #fff; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-muted); font-size: 14px; }
.footer-col ul li a:hover { color: #fff; }
.payment-methods { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.payment-badge {
    background: rgba(255,255,255,.05); border: 1px solid var(--border-color);
    padding: 6px 12px; border-radius: 8px; font-size: 12px; color: var(--text-muted); font-weight: 600;
}
.footer-bottom {
    border-top: 1px solid var(--border-color); padding-top: 30px;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--text-muted); font-size: 13.5px; flex-wrap: wrap; gap: 16px;
}
.legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.legal-links a { color: var(--text-muted); }
.legal-links a:hover { color: #fff; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero h1 { font-size: 38px; }
    .page-header h1 { font-size: 34px; }
    .features-grid, .pricing-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: scale(1); }
    .devices-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-actions .btn-success { display: none; }
    .main-nav {
        position: absolute; top: 76px; left: 0; right: 0;
        background: var(--bg-secondary); border-bottom: 1px solid var(--border-color);
        padding: 20px 24px; display: none;
    }
    .main-nav.open { display: block; }
    .nav-links { display: flex; flex-direction: column; gap: 0; }
    .nav-links li { border-bottom: 1px solid var(--border-color); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a { display: block; padding: 14px 0; font-size: 16px; }
}

@media (max-width: 600px) {
    .hero-stats { grid-template-columns: 1fr; }
    .devices-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-buttons { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-band { padding: 40px 24px; }
    .hero h1 { font-size: 32px; }
    .logo { font-size: 20px; }
    .nav-wrapper { gap: 8px; }
    .nav-actions { gap: 8px; }
    .lang-btn { padding: 6px 10px; font-size: 13px; }
}

/* ===== RTL (Arabic) ===== */
html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] .lang-menu { right: auto; left: 0; }
html[dir="rtl"] .content ul, html[dir="rtl"] .content ol { margin: 0 24px 20px 0; }
html[dir="rtl"] .howto-step { flex-direction: row-reverse; }
html[dir="rtl"] .contact-item { flex-direction: row-reverse; }

/* ===== Flag images (render on all OS) ===== */
.flag-img { height: 14px; width: auto; border-radius: 2px; vertical-align: -1px; display: inline-block; }
.country-card .flag-img { height: 24px; width: auto; vertical-align: -3px; }

/* ===== Floating WhatsApp button ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    display: inline-flex; align-items: center; gap: 10px;
    background: #25d366; color: #fff;
    padding: 13px 20px; border-radius: 50px;
    font-weight: 700; font-size: 15px; line-height: 1;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
    text-decoration: none;
    animation: wa-pulse 2.2s infinite;
}
.whatsapp-float:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 10px 30px rgba(37, 211, 102, .6); }
.whatsapp-float .wa-icon { width: 22px; height: 22px; flex-shrink: 0; }
@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
html[dir="rtl"] .whatsapp-float { right: auto; left: 24px; }
@media (max-width: 600px) {
    .whatsapp-float { bottom: 16px; right: 16px; padding: 11px 16px; font-size: 14px; }
    html[dir="rtl"] .whatsapp-float { right: auto; left: 16px; }
}

/* ===== Hero visual ===== */
.hero { position: relative; overflow: hidden; }
.hero .container { position: relative; z-index: 1; }
.hero-visual {
    position: absolute; right: -80px; top: 40px; width: 480px;
    opacity: 0.22; pointer-events: none; z-index: 0; user-select: none;
}
html[dir="rtl"] .hero-visual { right: auto; left: -80px; }

/* ===== Country / city cards ===== */
.countries { padding: 70px 0 10px; }
.countries-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px;
}
.country-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: 14px; padding: 16px 18px; display: flex; align-items: center; gap: 12px;
    font-weight: 600; font-size: 15px; color: var(--text-main);
    transition: transform .2s ease, border-color .2s ease;
}
.country-card:hover { transform: translateY(-3px); border-color: var(--accent-primary); color: #fff; }
.country-card .flag { font-size: 24px; line-height: 1; }
.country-card .city { display: block; font-size: 12.5px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }

@media (max-width: 992px) { .countries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
    .countries-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
}

/* ===== Neon city cards ===== */
.city-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px;
}
.city-card {
    position: relative; display: block;
    background: var(--bg-card);
    border: 1px solid rgba(99, 102, 241, .35);
    border-radius: 14px; padding: 16px 18px;
    color: var(--text-main); font-weight: 600; font-size: 15px;
    box-shadow: 0 0 12px rgba(99, 102, 241, .25), inset 0 0 14px rgba(99, 102, 241, .07);
    transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}
.city-card:hover {
    border-color: var(--accent-glow);
    box-shadow: 0 0 22px rgba(129, 140, 248, .65), 0 0 44px rgba(168, 85, 247, .35);
    transform: translateY(-3px); color: #fff;
}
.city-card .pin { font-size: 14px; margin-right: 6px; }
.city-card .city-sub { display: block; font-size: 12.5px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
@media (max-width: 992px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .city-grid { grid-template-columns: 1fr; } }






