/* ══════════════════════════════════════════════
   CND Transport — style.css
   Fișier CSS comun pentru toate paginile
   ══════════════════════════════════════════════ */

/* ── VARIABILE ── */
:root {
  --navy: #0a0f1e;
  --navy-mid: #111827;
  --navy-light: #1a2332;
  --gold: #c9973a;
  --gold-light: #e8b85a;
  --gold-pale: rgba(201,151,58,0.12);
  --white: #f4f1eb;
  --muted: #8a9bb0;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Sora', sans-serif; background: var(--navy); color: var(--white); overflow-x: hidden; }

/* ── NAV ── */
.main-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; background: rgba(10,15,30,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(201,151,58,0.15); transition: padding 0.3s; }
.main-nav.scrolled { padding: 10px 0; }
.main-nav.scrolled .nav-logo img { height: 38px; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 1.3rem; font-weight: 800; color: var(--white); text-decoration: none; letter-spacing: -0.5px; display: inline-flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); font-size: 0.88rem; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--navy-light); border: 1px solid rgba(201,151,58,0.2); border-radius: 10px; min-width: 230px; padding: 8px 0; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.18s ease, visibility 0.18s ease; }
.nav-dropdown-menu::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 18px; color: var(--muted); font-size: 0.87rem; text-decoration: none; transition: all 0.2s; }
.nav-dropdown-menu a:hover { color: var(--white); background: var(--gold-pale); }
.nav-cta { background: var(--gold); color: var(--navy) !important; font-weight: 700; padding: 9px 20px; border-radius: 8px; font-size: 0.85rem; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; }

/* ── HERO (pagini rute) ── */
.hero { min-height: 100vh; display: flex; align-items: center; background: var(--navy); position: relative; overflow: hidden; padding-top: 80px; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,151,58,0.08) 0%, transparent 70%); }
.hero-grid-line { display: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 36px 24px 40px; position: relative; z-index: 1; display: grid; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--gold-pale); border: 1px solid rgba(201,151,58,0.3); color: var(--gold); font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; border-radius: 4px; margin-bottom: 24px; font-family: 'DM Mono', monospace; }
.hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 1.8s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.route-display { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.country-pill { display: flex; align-items: center; gap: 10px; background: var(--navy-light); border: 1px solid rgba(255,255,255,0.08); padding: 14px 22px; border-radius: 50px; }
.country-pill .flag { font-size: 1.8rem; }
.country-pill .name { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.route-arrow { font-size: 1.5rem; color: var(--gold); }
.hero-title { font-size: clamp(2.6rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -2px; color: var(--white); margin-bottom: 20px; }
.hero-title .accent { color: var(--gold); }
.hero-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 580px; margin-bottom: 36px; font-weight: 300; }
.hero-sub strong { color: var(--white); font-weight: 600; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.07); }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; font-family: 'DM Mono', monospace; }
.stat-label { font-size: 0.77rem; color: var(--muted); margin-top: 5px; letter-spacing: 0.3px; font-weight: 300; }

/* ── HERO RUTE — 2 coloane pe desktop ── */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.hero-inner > * { grid-column: 1; }
.hero-inner .quick-info-bar {
  grid-column: 2;
  grid-row: 1 / 8;
  align-self: center;
  margin-top: 0;
}

/* ── QUICK INFO BAR (pagini rute) ── */
.quick-info-bar { display: flex; flex-direction: column; gap: 0; background: var(--navy-light); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; }
.quick-info-item { flex: none; padding: 22px 28px; display: flex; align-items: center; gap: 14px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
.quick-info-item:last-child { border-bottom: none; }
.quick-info-icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.quick-info-text { font-size: 0.9rem; font-weight: 600; }
.quick-info-label { color: var(--muted); font-size: 0.75rem; font-weight: 300; margin-top: 2px; }

/* ── BUTOANE ── */
.btn-gold { background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.95rem; padding: 14px 28px; border-radius: 8px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; border: none; font-family: 'Sora', sans-serif; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--navy); }
.btn-ghost { background: #25d366; color: var(--white); font-weight: 600; font-size: 0.95rem; padding: 14px 28px; border-radius: 8px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold-sm { background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.88rem; padding: 12px 20px; border-radius: 8px; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s; margin-top: auto; font-family: 'Sora', sans-serif; }
.btn-gold-sm:hover { background: var(--gold-light); color: var(--navy); }
.btn-wa { background: #25d366; color: #fff; font-weight: 700; font-size: 0.95rem; padding: 14px 28px; border-radius: 8px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
.btn-wa:hover { background: #1eb858; color: #fff; }

/* ── SECȚIUNI COMUNE ── */
.section { padding: 90px 0; }
.section-alt { background: var(--navy-mid); }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sec-eyebrow { font-family: 'DM Mono', monospace; font-size: 0.75rem; font-weight: 500; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.sec-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -1px; color: var(--white); margin-bottom: 14px; }
.sec-title span { color: var(--gold); }
.sec-sub { color: var(--muted); font-size: 0.97rem; line-height: 1.7; max-width: 620px; font-weight: 300; margin-bottom: 48px; }
.text-center .sec-sub { margin: 0 auto; }

/* ── BREADCRUMB ── */
.breadcrumb-wrap { max-width: 1200px; margin: 0 auto; padding: 100px 24px 0; }
.breadcrumb-row { display: flex; gap: 8px; align-items: center; font-size: 0.8rem; color: var(--muted); }
.breadcrumb-row a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb-row a:hover { color: var(--gold); }
.breadcrumb-row span { color: rgba(255,255,255,0.3); }

/* ── ORAȘE CARDS (pagini rute) ── */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.city-card { background: var(--navy-light); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; transition: all 0.2s; }
.city-card:hover { border-color: var(--gold); background: var(--gold-pale); transform: translateY(-2px); }
.city-name { font-weight: 600; font-size: 0.9rem; }
.city-time { font-family: 'DM Mono', monospace; font-size: 0.78rem; color: var(--gold); }

/* ── PLECARE (pagini rute) ── */
.plecare-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 8px; }
.plecare-item { background: var(--navy-light); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; padding: 10px 14px; font-size: 0.85rem; color: var(--muted); display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
.plecare-item:hover { color: var(--white); border-color: rgba(201,151,58,0.3); }
.plecare-item::before { content: '→'; color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }

/* ── AVANTAJE (pagini rute) ── */
.avantaje-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.avantaj-card { background: var(--navy-light); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 28px; transition: all 0.25s; }
.avantaj-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.avantaj-icon { width: 48px; height: 48px; background: var(--gold-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--gold); margin-bottom: 16px; }
.avantaj-card h5 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.avantaj-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.6; margin: 0; font-weight: 300; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--navy-light); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; }
.faq-q { padding: 20px 24px; font-weight: 600; font-size: 0.97rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--white); transition: color 0.2s; }
.faq-q:hover { color: var(--gold); }
.faq-q .icon { font-size: 1rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .icon { transform: rotate(45deg); }
.faq-a { padding: 0 24px 20px; font-size: 0.9rem; color: var(--muted); line-height: 1.7; display: none; font-weight: 300; }
.faq-a.open { display: block; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, rgba(201,151,58,0.15) 0%, rgba(201,151,58,0.05) 100%); border-top: 1px solid rgba(201,151,58,0.2); border-bottom: 1px solid rgba(201,151,58,0.2); padding: 72px 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; letter-spacing: -1px; color: var(--white); margin-bottom: 12px; }
.cta-band p { color: var(--muted); max-width: 500px; margin: 0 auto 32px; font-size: 0.97rem; font-weight: 300; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RUTE CARDS (pagini rute - mini grid) ── */
.rute-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.ruta-card { background: var(--navy-light); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 24px; text-align: center; text-decoration: none; color: var(--white); transition: all 0.2s; }
.ruta-card:hover { border-color: var(--gold); background: var(--gold-pale); transform: translateY(-3px); color: var(--white); }
.ruta-flag { font-size: 2.2rem; margin-bottom: 10px; }
.ruta-name { font-weight: 700; font-size: 0.9rem; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07); padding: 32px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-size: 1.2rem; font-weight: 800; color: var(--white); display: inline-flex; align-items: center; }
.footer-logo img { height: 38px; width: auto; display: block; }
.footer-logo span { color: var(--gold); }
.footer-credit { font-size: 0.72rem; color: var(--gold); display: block; margin-top: 3px; }
.footer-copy { font-size: 0.8rem; color: var(--muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.8rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ── WA FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; text-decoration: none; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.1); color: #fff; }

/* ══════════════════════════════════════════════
   INDEX.HTML — stiluri specifice paginii principale
   ══════════════════════════════════════════════ */

/* Hero grid de fundal (index) */
.hero-grid { display: none; }

/* Layout 2 coloane pentru hero-inner pe pagina index */
.page-index .hero-inner { padding: 36px 24px 40px; grid-template-columns: 1fr 1fr; gap: 60px; }
.page-index .hero-inner > * { grid-column: 1; }
.page-index .hero-inner .hero-flags-box { grid-column: 2; grid-row: 1 / 8; align-self: center; }
.page-index .hero-title { font-size: clamp(3rem, 6vw, 5rem); letter-spacing: -2.5px; line-height: 1.05; margin-bottom: 22px; }
.page-index .hero-title .accent { display: block; }
.page-index .hero-sub { max-width: 520px; line-height: 1.75; margin-bottom: 36px; }
.page-index .hero-btns { margin-bottom: 52px; }

/* Flags box (hero dreapta - index) */
.hero-flags-box { background: var(--navy-light); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 40px; display: flex; flex-direction: column; gap: 12px; }
.flag-route { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--navy); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; text-decoration: none; color: var(--white); transition: all 0.2s; }
.flag-route:hover { border-color: var(--gold); background: var(--gold-pale); transform: translateX(4px); color: var(--white); }
.flag-route .flags { font-size: 1.4rem; display: flex; align-items: center; gap: 4px; }
.flag-route .arr { color: var(--gold); font-size: 0.8rem; }
.flag-route .route-info { flex: 1; }
.flag-route .route-name { font-weight: 700; font-size: 0.92rem; }
.flag-route .route-meta { font-size: 0.75rem; color: var(--muted); margin-top: 2px; font-family: 'DM Mono', monospace; }
.flag-route .route-price { font-family: 'DM Mono', monospace; font-size: 0.85rem; color: var(--gold); font-weight: 500; }

/* Secțiuni index */
.page-index .section { padding: 100px 0; }
.page-index .sec-title { font-size: clamp(1.9rem, 3.5vw, 3rem); letter-spacing: -1.5px; margin-bottom: 16px; }

/* Despre noi */
.despre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 60px; }
.check-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.check-item { display: flex; gap: 16px; align-items: flex-start; }
.check-icon { width: 36px; height: 36px; background: var(--gold-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.95rem; flex-shrink: 0; margin-top: 2px; }
.check-item strong { font-size: 0.95rem; font-weight: 700; display: block; margin-bottom: 4px; }
.check-item p { font-size: 0.87rem; color: var(--muted); margin: 0; font-weight: 300; line-height: 1.6; }
.despre-right { display: flex; flex-direction: column; gap: 16px; }
.despre-card-big { background: var(--navy-light); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px; }
.despre-card-big .icon { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.despre-card-big h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.despre-card-big p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; margin: 0; font-weight: 300; }
.mini-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-stat { background: var(--navy-light); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 20px; text-align: center; }
.mini-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--gold); font-family: 'DM Mono', monospace; }
.mini-stat-label { font-size: 0.77rem; color: var(--muted); margin-top: 4px; font-weight: 300; }

/* Rute cards (index - grid mare) */
.page-index .rute-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 52px; }
.page-index .ruta-card { background: var(--navy-light); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 28px; text-decoration: none; color: var(--white); transition: all 0.25s; display: flex; flex-direction: column; }
.page-index .ruta-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); color: var(--white); }
.ruta-flags-row { display: flex; align-items: center; gap: 8px; font-size: 1.6rem; margin-bottom: 16px; }
.ruta-arr { font-size: 1rem; color: var(--gold); }
.page-index .ruta-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.ruta-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.65; font-weight: 300; flex: 1; margin-bottom: 18px; }
.ruta-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip { background: var(--navy); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 4px 12px; font-size: 0.75rem; color: var(--muted); font-family: 'DM Mono', monospace; }
.ruta-link-row { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--gold); margin-top: auto; }

/* Tarife */
.tarife-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 52px; }
.tarif-card { background: var(--navy-light); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; transition: all 0.25s; position: relative; overflow: hidden; }
.tarif-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.tarif-card.featured { border-color: var(--gold); background: linear-gradient(160deg, rgba(201,151,58,0.15) 0%, var(--navy-light) 60%); }
.tarif-badge { position: absolute; top: 16px; right: 16px; background: var(--gold); color: var(--navy); font-size: 0.68rem; font-weight: 800; padding: 4px 10px; border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase; }
.tarif-icon-wrap { font-size: 2rem; margin-bottom: 16px; }
.tarif-name { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.tarif-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; font-weight: 300; margin-bottom: 20px; flex: 1; }
.tarif-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 18px; }
.tarif-from { font-size: 0.78rem; color: var(--muted); }
.tarif-num { font-size: 2.2rem; font-weight: 800; color: var(--gold); font-family: 'DM Mono', monospace; line-height: 1; }
.tarif-unit { font-size: 0.82rem; color: var(--muted); }
.tarif-features { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.tarif-features li { font-size: 0.85rem; color: var(--muted); display: flex; align-items: center; gap: 8px; font-weight: 300; }
.tarif-features li::before { content: '→'; color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; margin-top: 52px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-icon-wrap { width: 44px; height: 44px; background: var(--gold-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.contact-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; margin-bottom: 3px; font-family: 'DM Mono', monospace; }
.contact-value { font-size: 1rem; font-weight: 600; color: var(--white); text-decoration: none; }
.contact-value a { color: var(--gold); text-decoration: none; }
.contact-note { background: var(--navy-light); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 18px; margin-top: 8px; font-size: 0.85rem; color: var(--muted); line-height: 1.6; font-weight: 300; }
.contact-note strong { color: var(--white); }
.form-card { background: var(--navy-light); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--muted); letter-spacing: 0.5px; }
.form-input { background: var(--navy); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 12px 16px; color: var(--white); font-size: 0.9rem; font-family: 'Sora', sans-serif; transition: border-color 0.2s; outline: none; }
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--muted); opacity: 0.6; }
.form-input option { background: var(--navy-mid); }
textarea.form-input { resize: vertical; min-height: 90px; }
.btn-submit { width: 100%; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 1rem; padding: 16px; border-radius: 8px; border: none; cursor: pointer; font-family: 'Sora', sans-serif; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s; margin-top: 8px; }
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .page-index .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 50px; }
  .hero-flags-box { display: none; }
  .despre-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-inner .quick-info-bar {
    grid-column: 1;
    grid-row: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .quick-info-item {
    flex: 1;
    min-width: 140px;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.07);
  }
  .quick-info-item:last-child { border-right: none; }
  .page-index .hero-inner { grid-template-columns: 1fr; }
  .page-index .hero-flags-box { display: none; }
  .page-index .hero-inner .hero-flags-box { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-logo img { height: 36px; }
  .footer-logo img { height: 32px; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; flex-direction: column; gap: 0; background: var(--navy-mid); border-top: 1px solid rgba(201,151,58,0.15); padding: 16px 24px; }
  .mobile-menu a { color: var(--muted); padding: 12px 0; font-size: 0.93rem; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .hero-inner { padding: 40px 24px 60px; grid-template-columns: 1fr; }
  .hero-inner .quick-info-bar { grid-column: 1; grid-row: auto; flex-direction: row; flex-wrap: wrap; }
  .quick-info-item { flex: 1; min-width: 130px; border-bottom: none; border-right: 1px solid rgba(255,255,255,0.07); }
  .quick-info-item:last-child { border-right: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .rute-grid { grid-template-columns: 1fr; }
  .page-index .rute-grid { grid-template-columns: 1fr; }
}


/* ── ANIMATIE MICROBUZ ── */
.bus-scene {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.hero {
  padding-top: calc(60px + 160px) !important;
  min-height: auto;
}
.page-index .hero-inner {
  padding-top: 20px;
}
@keyframes bus-twinkle {
  0%,100%{opacity:.2} 50%{opacity:.9}
}
@keyframes bus-spin {
  from{transform:rotate(0deg)} to{transform:rotate(360deg)}
}
@keyframes bus-exhaust {
  0%{opacity:.6;transform:translateX(0) scale(1)}
  100%{opacity:0;transform:translateX(-22px) scale(2)}
}
@keyframes bus-wave {
  0%,100%{transform:rotate(-10deg)} 50%{transform:rotate(22deg)}
}
@keyframes bus-board {
  0%{transform:translateY(0);opacity:1}
  100%{transform:translateY(-30px);opacity:0}
}
.bus-star { animation: bus-twinkle 2.1s infinite; }
.bus-wheel { animation: bus-spin 0.45s linear infinite; }
.bus-puff1 { animation: bus-exhaust 0.7s ease-out infinite; }
.bus-puff2 { animation: bus-exhaust 0.7s ease-out infinite .23s; }
.bus-puff3 { animation: bus-exhaust 0.7s ease-out infinite .46s; }
.bus-person {
  position: absolute;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bus-arm-wave { animation: bus-wave 0.38s ease-in-out infinite; transform-origin: bottom right; }
.bus-boarding { animation: bus-board 0.5s ease-in forwards; }

/* ── FOOTER ANPC ── */
.footer-anpc {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-anpc a {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-anpc a:hover { opacity: 1; }
.footer-anpc img {
  height: 40px;
  width: auto;
  display: block;
}

/* ── HERO BUTOANE PAGINI RUTE (4 butoane, grid 2x2) ── */
.hero-inner .hero-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 440px;
}
.hero-inner .hero-btns .btn-gold,
.hero-inner .hero-btns .btn-ghost {
  justify-content: center;
  padding: 12px 18px;
  font-size: 0.9rem;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .hero-inner .hero-btns { grid-template-columns: 1fr; }
}
