/* ==========================================================
   DNC RENT A CAR — stylesheet principal (fără dependențe externe)
   Scris manual, fără framework CSS, pentru încărcare rapidă.
   ========================================================== */

:root {
  --font-sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --color-brand: #e11d2e;
  --color-brand-dark: #b61020;
  --color-ink: #10131a;
  --color-soft: #f4f5f7;
  --color-gold: #f7b500;
  --color-border: #e5e7eb;
  --color-text: #374151;
  --color-muted: #6b7280;
  --shadow-card: 0 24px 70px rgba(16, 19, 26, .10);
  --shadow-lg: 0 34px 100px rgba(0, 0, 0, .28);
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --container-max: 86rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1, h2, h3, h4 { color: var(--color-ink); letter-spacing: -0.03em; margin: 0; line-height: 1.15; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid rgba(225,29,46,.35); outline-offset: 2px; }

/* ---------- Layout helpers ---------- */
.container-main { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container-main { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-main { padding: 0 2rem; } }

.section-pad { padding: 3rem 0; }
@media (min-width: 640px) { .section-pad { padding: 3.5rem 0; } }
@media (min-width: 1024px) { .section-pad { padding: 4.5rem 0; } }

.bg-soft { background: var(--color-soft); }
.bg-white { background: #fff; }
.text-center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .22em; color: var(--color-brand);
}

/* ---------- Buttons ---------- */
.btn-primary, .btn-dark, .btn-light, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 3rem; padding: .75rem 1.5rem; border-radius: .75rem;
  font-size: .875rem; font-weight: 800; transition: .2s ease; white-space: nowrap;
}
.btn-primary { background: var(--color-brand); color: #fff; box-shadow: 0 12px 30px rgba(225,29,46,.25); }
.btn-primary:hover { background: var(--color-brand-dark); transform: translateY(-2px); }
.btn-dark { background: var(--color-ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(10px); }
.btn-light:hover { background: #fff; color: var(--color-ink); }
.btn-outline { background: #fff; color: var(--color-ink); border: 1px solid var(--color-border); }
.btn-outline:hover { border-color: var(--color-brand); color: var(--color-brand); }
.btn-block { width: 100%; }
.btn-sm { min-height: 2.25rem; padding: .5rem 1rem; font-size: .8rem; }
.btn-danger { background: #dc2626; color: #fff; }
.btn-danger:hover { background: #b91c1c; }

/* ---------- Forms ---------- */
.form-label { display: block; margin-bottom: .5rem; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: #4b5563; }
.form-control {
  height: 3.25rem; width: 100%; border-radius: .75rem; border: 1px solid var(--color-border);
  background: #fff; padding: 0 1rem; font-size: .9rem; font-weight: 600; color: var(--color-ink);
  transition: .15s ease;
}
textarea.form-control { height: auto; padding: .85rem 1rem; min-height: 8rem; resize: vertical; }
.form-control:hover { border-color: #cbd5e1; }
.form-control:focus { border-color: var(--color-brand); box-shadow: 0 0 0 4px rgba(225,29,46,.10); }
.form-group { margin-bottom: 1rem; }
.form-icon-wrap { position: relative; }
.form-icon-wrap i.icon-left { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--color-brand); }
.form-icon-wrap .form-control { padding-left: 2.75rem; }
.form-icon-wrap .chevron { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); font-size: .75rem; color: #94a3b8; pointer-events: none; }
select.form-control { appearance: none; -webkit-appearance: none; }
.field-error { color: var(--color-brand); font-size: .75rem; font-weight: 700; margin-top: .35rem; }
.alert { border-radius: .85rem; padding: .9rem 1.1rem; font-size: .85rem; font-weight: 600; line-height: 1.5; }
.alert-success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-info { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }

/* ---------- Cards ---------- */
.card { border-radius: 1.5rem; border: 1px solid var(--color-border); background: #fff; box-shadow: var(--shadow-card); }
.spec-pill { display: inline-flex; align-items: center; gap: .4rem; border-radius: .6rem; background: var(--color-soft); padding: .5rem .75rem; font-size: .75rem; font-weight: 700; color: var(--color-text); }

/* ---------- Topbar ---------- */
.topbar { display: none; background: var(--color-ink); color: #fff; }
@media (min-width: 1024px) { .topbar { display: block; } }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 2.5rem; font-size: .75rem; font-weight: 700; }
.topbar-left { display: flex; align-items: center; gap: 1.5rem; color: rgba(255,255,255,.75); }
.topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar a:hover { color: var(--color-brand); }
.topbar i { color: var(--color-brand); margin-right: .5rem; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--color-border); backdrop-filter: blur(14px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 84px; }
.logo img { height: 60px; width: auto; }
.main-nav { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav a { font-size: .875rem; font-weight: 800; color: #4b5563; }
.main-nav a:hover, .main-nav a.active { color: var(--color-brand); }
.header-actions { display: none; align-items: center; gap: .75rem; }
@media (min-width: 1024px) { .header-actions { display: flex; } }
.icon-btn { display: grid; place-items: center; height: 3rem; width: 3rem; border-radius: .75rem; border: 1px solid var(--color-border); font-size: 1.1rem; color: #059669; transition: .15s; }
.icon-btn:hover { border-color: #a7f3d0; background: #ecfdf5; }
.menu-toggle { display: grid; place-items: center; height: 2.75rem; width: 2.75rem; border-radius: .75rem; border: 1px solid var(--color-border); font-size: 1.2rem; color: var(--color-ink); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.mobile-menu { display: none; border-top: 1px solid var(--color-border); background: #fff; }
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu nav { display: grid; gap: .25rem; padding: 1rem 0; }
.mobile-menu nav a { border-radius: .75rem; padding: .8rem 1rem; font-size: .9rem; font-weight: 800; color: var(--color-ink); }
.mobile-menu nav a:hover { background: var(--color-soft); }
.mobile-menu-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: .5rem; }
.mobile-menu-actions a { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 3rem; border-radius: .75rem; font-weight: 800; font-size: .85rem; }
.mobile-menu-actions .whatsapp { background: #10b981; color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff; min-height: 640px;
  background-size: cover; background-position: center 55%;
  background-image: linear-gradient(90deg, rgba(8,10,15,.94) 0%, rgba(8,10,15,.80) 45%, rgba(8,10,15,.35) 75%, rgba(8,10,15,.15) 100%), var(--hero-image, url('../img/hero-fallback.jpg'));
}
@media (max-width: 1023px) {
  .hero { background-image: linear-gradient(180deg, rgba(8,10,15,.78) 0%, rgba(8,10,15,.88) 50%, rgba(8,10,15,.98) 100%), var(--hero-image, url('../img/hero-fallback.jpg')); background-position: 58% center; }
}
.hero-grid { position: relative; z-index: 2; display: grid; gap: 2.5rem; align-items: center; padding: 3rem 0; min-height: 640px; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.03fr .97fr; padding: 4.5rem 0; } }
.hero-badge { display: inline-flex; align-items: center; gap: .75rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.1); padding: .5rem 1rem; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 1.5rem; backdrop-filter: blur(10px); }
.hero-badge .dot { height: .5rem; width: .5rem; border-radius: 999px; background: #34d399; box-shadow: 0 0 0 5px rgba(52,211,153,.15); }
.hero h1 { font-size: 2.5rem; font-weight: 900; max-width: 44rem; }
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.1rem; } }
.hero h1 .accent { color: var(--color-brand); }
.hero p.lead { margin-top: 1.5rem; max-width: 40rem; font-size: 1rem; font-weight: 500; line-height: 1.7; color: rgba(255,255,255,.72); }
@media (min-width: 640px) { .hero p.lead { font-size: 1.125rem; } }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-ctas > * { min-width: 11rem; }
.hero-badges { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; max-width: 40rem; }
@media (min-width: 640px) { .hero-badges { grid-template-columns: repeat(4, 1fr); } }
.hero-badges .item { border-radius: 1rem; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07); padding: 1rem; backdrop-filter: blur(10px); }
.hero-badges i { color: var(--color-brand); }
.hero-badges .t { margin-top: .75rem; font-size: .85rem; font-weight: 800; color: #fff; }
.hero-badges .s { margin-top: .25rem; font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.55); }

/* ---------- Booking form card ---------- */
.booking-card { width: 100%; max-width: 34rem; overflow: hidden; box-shadow: var(--shadow-lg); }
.booking-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; border-bottom: 1px solid #f1f5f9; padding: 1.25rem 1.5rem; }
.booking-card-head h2 { font-size: 1.5rem; font-weight: 900; margin-top: .5rem; }
.badge-secure { display: none; border-radius: .75rem; background: #ecfdf5; padding: .5rem .75rem; font-size: .7rem; font-weight: 800; color: #047857; }
@media (min-width: 640px) { .badge-secure { display: inline-flex; align-items: center; } }
.booking-card-body { display: block; padding: 1.1rem 1.35rem 1.35rem; }
@media (min-width: 640px) { .booking-card-body { padding: 1.35rem 1.6rem 1.6rem; } }
.booking-plain-body { display: block; }
.col-span-2 { grid-column: 1 / -1; }
.notice-box { border-radius: .75rem; border: 1px solid #fde68a; background: #fffbeb; padding: .75rem; font-size: .75rem; font-weight: 600; line-height: 1.5; color: #92400e; }

/* ---------- Trust strip ---------- */
.trust-strip { position: relative; z-index: 20; margin-top: -2rem; }
.trust-grid { display: grid; overflow: hidden; border-radius: 1.25rem; border: 1px solid var(--color-border); background: #fff; box-shadow: 0 20px 45px rgba(15,23,42,.08); }
@media (min-width: 640px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-bottom: 1px solid var(--color-border); }
@media (min-width: 640px) { .trust-item:nth-child(odd) { border-right: 1px solid var(--color-border); } }
@media (min-width: 1024px) { .trust-item { border-right: 1px solid var(--color-border); border-bottom: none; } .trust-item:last-child { border-right: none; } }
.trust-icon { display: grid; place-items: center; height: 2.75rem; width: 2.75rem; flex-shrink: 0; border-radius: .75rem; background: #fef2f2; color: var(--color-brand); }
.trust-item h3 { font-size: .875rem; font-weight: 900; }
.trust-item p { margin-top: .2rem; font-size: .7rem; font-weight: 700; color: #94a3b8; }

/* ---------- Section headings ---------- */
.section-head { max-width: 48rem; }
.section-head h2 { font-size: 2rem; font-weight: 900; margin-top: 1rem; }
@media (min-width: 640px) { .section-head h2 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .section-head h2 { font-size: 3rem; } }
.section-head p { margin-top: 1.1rem; font-size: 1rem; font-weight: 500; line-height: 1.7; color: var(--color-muted); }
.section-head-row { display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; }
@media (min-width: 1024px) { .section-head-row { flex-direction: row; align-items: flex-end; } }

/* ---------- Fleet grid ---------- */
.fleet-grid { margin-top: 2.5rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .fleet-grid { grid-template-columns: repeat(3, 1fr); } }
.car-card { overflow: hidden; border-radius: 1.5rem; border: 1px solid var(--color-border); background: #fff; transition: .3s ease; display: flex; flex-direction: column; }
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.car-card-media { position: relative; height: 15rem; overflow: hidden; background: var(--color-soft); }
.car-card-media img { height: 100%; width: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.car-card:hover .car-card-media img { transform: scale(1.05); }
.car-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,19,26,.55), transparent 55%); }
.badge-tag { position: absolute; left: 1rem; top: 1rem; z-index: 2; border-radius: .5rem; background: #fff; padding: .5rem .75rem; font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--color-ink); box-shadow: 0 4px 10px rgba(0,0,0,.1); }
.badge-tag.premium { background: var(--color-brand); color: #fff; }
.badge-avail { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; border-radius: .5rem; background: #10b981; padding: .45rem .7rem; font-size: .68rem; font-weight: 900; color: #fff; }
.badge-avail.unavailable { background: #f59e0b; }
.car-card-body { padding: 1.25rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.car-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.car-card-top h3 { font-size: 1.25rem; font-weight: 900; }
.car-card-top .sub { margin-top: .2rem; font-size: .7rem; font-weight: 700; color: #94a3b8; }
.car-card-price { text-align: right; }
.car-card-price .from { font-size: .7rem; font-weight: 700; color: #94a3b8; }
.car-card-price .amount { font-size: 1.5rem; font-weight: 900; color: var(--color-brand); }
.car-card-price .amount span { font-size: .7rem; color: #94a3b8; font-weight: 700; }
.car-card-specs { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.car-card-body .btn-primary { margin-top: 1.5rem; }
.car-card-body form { margin-top: auto; }

.filter-bar { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-chip { border-radius: 999px; border: 1px solid var(--color-border); background: #fff; padding: .5rem 1rem; font-size: .8rem; font-weight: 800; color: var(--color-text); }
.filter-chip.active, .filter-chip:hover { border-color: var(--color-brand); color: var(--color-brand); background: #fef2f2; }

/* ---------- Why us ---------- */
.why-grid { display: grid; align-items: center; gap: 3rem; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.why-media { position: relative; }
.why-media .frame { overflow: hidden; border-radius: 2rem; background: var(--color-ink); box-shadow: var(--shadow-lg); }
.why-media img { height: 32rem; width: 100%; object-fit: cover; opacity: .92; }
.why-stat { position: absolute; bottom: -1.5rem; right: -.75rem; max-width: 15.5rem; border-radius: 1.25rem; background: var(--color-brand); padding: 1.25rem; color: #fff; box-shadow: var(--shadow-lg); }
@media (min-width: 640px) { .why-stat { right: 1.5rem; } }
.why-stat-inner { display: flex; align-items: center; gap: .75rem; }
.why-stat-icon { display: grid; place-items: center; height: 3rem; width: 3rem; border-radius: .75rem; background: rgba(255,255,255,.15); font-size: 1.2rem; }
.why-stat .big { font-size: 1.5rem; font-weight: 900; }
.why-stat .small { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.7); }
.feature-grid { margin-top: 2rem; display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
.feature-item { border-radius: 1.25rem; border: 1px solid var(--color-border); background: #fff; padding: 1.25rem; }
.feature-icon { display: grid; place-items: center; height: 2.75rem; width: 2.75rem; border-radius: .75rem; background: #fef2f2; color: var(--color-brand); }
.feature-item h3 { margin-top: 1rem; font-size: 1rem; font-weight: 900; }
.feature-item p { margin-top: .5rem; font-size: .85rem; line-height: 1.6; color: var(--color-muted); }

/* ---------- Steps ---------- */
.steps-grid { position: relative; margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.steps-line { display: none; }
@media (min-width: 1024px) { .steps-line { display: block; position: absolute; left: 16%; right: 16%; top: 2.5rem; border-top: 2px dashed var(--color-border); } }
.step-card { position: relative; border-radius: 1.5rem; border: 1px solid var(--color-border); background: #fff; padding: 1.75rem; text-align: center; box-shadow: 0 1px 2px rgba(0,0,0,.03); }
.step-num { position: relative; z-index: 1; margin: 0 auto; display: grid; place-items: center; height: 5rem; width: 5rem; border-radius: 1.25rem; background: var(--color-ink); font-size: 1.5rem; font-weight: 900; color: #fff; box-shadow: var(--shadow-card); }
.step-card.accent .step-num { background: var(--color-brand); }
.step-card h3 { margin-top: 1.5rem; font-size: 1.15rem; font-weight: 900; }
.step-card p { margin-top: .75rem; font-size: .85rem; line-height: 1.6; color: var(--color-muted); }

/* ---------- Dark CTA banner ---------- */
.cta-banner { position: relative; overflow: hidden; border-radius: 2rem; background: var(--color-ink); padding: 3rem 1.5rem; color: #fff; }
@media (min-width: 640px) { .cta-banner { padding: 3rem 2.5rem; } }
@media (min-width: 1024px) { .cta-banner { padding: 4rem 4rem; } }
.cta-banner .glow { position: absolute; inset: 0; opacity: .45; background: radial-gradient(circle at 85% 20%, rgba(225,29,46,.75), transparent 30%), radial-gradient(circle at 5% 100%, rgba(255,255,255,.12), transparent 30%); }
.cta-grid { position: relative; z-index: 1; display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .cta-grid { grid-template-columns: 1fr auto; } }
.cta-grid h2 { color: #fff; font-size: 2rem; font-weight: 900; margin-top: 1rem; }
@media (min-width: 640px) { .cta-grid h2 { font-size: 2.5rem; } }
.cta-grid p { margin-top: 1.1rem; max-width: 38rem; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.65); line-height: 1.7; }
.cta-actions { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 640px) and (max-width: 1023px) { .cta-actions { flex-direction: row; } }
.cta-actions > * { min-width: 13rem; }

/* ---------- Testimonials ---------- */
.stars { color: var(--color-gold); font-size: .85rem; }
.testi-grid { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card { border-radius: 1.5rem; border: 1px solid var(--color-border); background: #fff; padding: 1.75rem; }
.testi-card p { margin-top: 1.25rem; font-size: .9rem; line-height: 1.75; color: #4b5563; }
.testi-who { margin-top: 1.5rem; display: flex; align-items: center; gap: .75rem; }
.testi-avatar { display: grid; place-items: center; height: 2.75rem; width: 2.75rem; border-radius: 999px; background: var(--color-ink); font-size: .8rem; font-weight: 900; color: #fff; }
.testi-who h3 { font-size: .875rem; font-weight: 900; }
.testi-who .role { font-size: .7rem; font-weight: 700; color: #94a3b8; }
.rating-box { display: inline-flex; align-items: center; gap: .75rem; border-radius: 1rem; border: 1px solid var(--color-border); background: #fff; padding: 1rem 1.25rem; }
.rating-box .score { font-size: 1.75rem; font-weight: 900; }
.rating-box .label { font-size: .7rem; font-weight: 700; color: #94a3b8; margin-top: .1rem; }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .faq-layout { grid-template-columns: .8fr 1.2fr; gap: 5rem; } }
.faq-list { border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:last-child { border-bottom: none; }
.faq-toggle { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1.25rem; padding: 1.5rem 0; text-align: left; }
.faq-toggle span.q { font-size: 1rem; font-weight: 900; color: var(--color-ink); }
.faq-icon { display: grid; place-items: center; flex-shrink: 0; height: 2.25rem; width: 2.25rem; border-radius: 999px; background: var(--color-soft); font-size: .85rem; transition: transform .25s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: #fef2f2; color: var(--color-brand); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer p { padding-bottom: 1.5rem; padding-right: 2rem; font-size: .875rem; line-height: 1.75; color: var(--color-muted); }
.faq-wa-link { margin-top: 1.75rem; display: inline-flex; align-items: center; gap: .75rem; font-size: .875rem; font-weight: 900; color: var(--color-brand); }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-ink); color: rgba(255,255,255,.7); }
.footer-top { padding: 4rem 0 3rem; display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand img { height: 54px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 22rem; color: rgba(255,255,255,.55); }
.footer-socials { display: flex; gap: .6rem; margin-top: 1.5rem; }
.footer-socials a { display: grid; place-items: center; height: 2.5rem; width: 2.5rem; border-radius: .65rem; border: 1px solid rgba(255,255,255,.15); color: #fff; }
.footer-socials a:hover { background: var(--color-brand); border-color: var(--color-brand); }
.footer-col h4 { color: #fff; font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; display: flex; flex-direction: column; gap: .75rem; font-size: .75rem; color: rgba(255,255,255,.45); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom a:hover { color: #fff; }

/* ---------- WhatsApp floating button ---------- */
.wa-float { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 60; display: grid; place-items: center; height: 3.5rem; width: 3.5rem; border-radius: 999px; background: #25D366; color: #fff; font-size: 1.6rem; box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: .2s; }
.wa-float:hover { transform: scale(1.08); }

/* ---------- Page header (inner pages) ---------- */
.page-hero { background: var(--color-ink); color: #fff; padding: 3.5rem 0 2.75rem; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(circle at 85% 10%, rgba(225,29,46,.5), transparent 35%); }
.page-hero .inner { position: relative; z-index: 1; }
.breadcrumb { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: 2.25rem; font-weight: 900; margin-top: .75rem; }
@media (min-width: 640px) { .page-hero h1 { font-size: 3rem; } }
.page-hero p { margin-top: .85rem; max-width: 40rem; color: rgba(255,255,255,.62); font-size: .95rem; font-weight: 500; }

/* ---------- Prose (pagini legale) ---------- */
.prose { max-width: 48rem; margin: 0 auto; }
.prose h2 { font-size: 1.35rem; font-weight: 900; margin-top: 2.25rem; margin-bottom: .75rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: .9rem; line-height: 1.8; color: var(--color-text); margin-bottom: 1rem; }
.prose ul { margin-bottom: 1rem; }
.prose li { font-size: .9rem; line-height: 1.8; color: var(--color-text); padding-left: 1.4rem; position: relative; margin-bottom: .5rem; }
.prose li::before { content: "\2022"; position: absolute; left: .3rem; color: var(--color-brand); font-weight: 900; }
.prose strong { color: var(--color-ink); }
.prose a { color: var(--color-brand); font-weight: 700; text-decoration: underline; }

/* ---------- Car detail page ---------- */
.car-detail-grid { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .car-detail-grid { grid-template-columns: 1.55fr 1fr; gap: 3rem; } }
.gallery-main { border-radius: 1.5rem; overflow: hidden; background: var(--color-soft); height: 22rem; position: relative; }
.gallery-main img { height: 100%; width: 100%; object-fit: cover; cursor: zoom-in; }
.gallery-thumbs { margin-top: .75rem; display: grid; grid-template-columns: repeat(5, 1fr); gap: .6rem; }
.gallery-thumbs button { border-radius: .75rem; overflow: hidden; height: 4.5rem; border: 2px solid transparent; padding: 0; background: var(--color-soft); }
.gallery-thumbs button.active { border-color: var(--color-brand); }
.gallery-thumbs img { height: 100%; width: 100%; object-fit: cover; }
.car-title-row { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-top: 1.75rem; }
.car-title-row h1 { font-size: 2rem; font-weight: 900; }
.car-title-row .sub { margin-top: .3rem; font-size: .85rem; font-weight: 700; color: #94a3b8; }
.spec-grid { margin-top: 1.75rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; }
@media (min-width: 640px) { .spec-grid { grid-template-columns: repeat(3, 1fr); } }
.spec-box { border-radius: 1rem; border: 1px solid var(--color-border); padding: 1rem; text-align: center; }
.spec-box i { color: var(--color-brand); font-size: 1.1rem; }
.spec-box .v { margin-top: .5rem; font-size: .85rem; font-weight: 900; color: var(--color-ink); }
.spec-box .l { font-size: .68rem; font-weight: 700; color: #94a3b8; }
.features-list { margin-top: 1rem; display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.features-list li { display: flex; align-items: center; gap: .6rem; font-size: .85rem; font-weight: 600; color: var(--color-text); }
.features-list i { color: #10b981; }
.booking-sidebar { position: sticky; top: 96px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: .9fr 1.1fr; gap: 3.5rem; } }
.contact-info-item { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--color-border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { display: grid; place-items: center; height: 3rem; width: 3rem; flex-shrink: 0; border-radius: .85rem; background: #fef2f2; color: var(--color-brand); }
.contact-info-item h3 { font-size: .9rem; font-weight: 900; }
.contact-info-item p { margin-top: .3rem; font-size: .85rem; color: var(--color-muted); }
.map-frame { border-radius: 1.25rem; overflow: hidden; border: 1px solid var(--color-border); margin-top: 1.5rem; height: 20rem; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0 !important; }
.hidden { display: none !important; }
.grid-2 { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.text-muted { color: var(--color-muted); }
.small { font-size: .75rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* ---------- Calendar disponibilitate (un singur calendar, integrat) ---------- */
.availability-calendar { border: 1px solid var(--color-border); border-radius: 1.25rem; padding: 1rem 1.1rem 1.1rem; background: #fff; }
.cal-head { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-bottom: .85rem; }
.cal-title { font-size: .9rem; font-weight: 900; color: var(--color-ink); text-align: center; flex: 1; }
.cal-arrow { display: grid; place-items: center; height: 2.25rem; width: 2.25rem; border-radius: .65rem; border: 1px solid var(--color-border); background: #fff; color: var(--color-ink); font-size: .75rem; transition: .15s; }
.cal-arrow:hover:not(:disabled) { border-color: var(--color-brand); color: var(--color-brand); }
.cal-arrow:disabled { opacity: .35; cursor: not-allowed; }
.cal-body { max-width: 21rem; margin: 0 auto; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .25rem; }
.cal-dow { text-align: center; font-size: .65rem; font-weight: 800; color: #94a3b8; padding-bottom: .35rem; }
.cal-day { aspect-ratio: 1 / 1; display: grid; place-items: center; border-radius: .5rem; font-size: .78rem; font-weight: 700; color: var(--color-text); background: var(--color-soft); transition: .12s; }
.cal-day:hover:not(.disabled) { background: #fde8ea; color: var(--color-brand); }
.cal-day.disabled { background: transparent; color: #d1d5db; text-decoration: line-through; cursor: not-allowed; }
.cal-day.selected { background: var(--color-brand); color: #fff; }
.cal-day.in-range { background: #fde8ea; color: var(--color-brand-dark); border-radius: .35rem; }
.cal-day.is-start { border-top-right-radius: .35rem; border-bottom-right-radius: .35rem; }
.cal-day.is-end { border-top-left-radius: .35rem; border-bottom-left-radius: .35rem; }
.cal-hint { margin-top: .85rem; text-align: center; font-size: .72rem; font-weight: 700; color: var(--color-muted); }
.cal-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: .85rem; font-size: .7rem; font-weight: 700; color: var(--color-muted); }
.cal-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.cal-legend i { width: .7rem; height: .7rem; border-radius: .2rem; display: inline-block; }
.cal-legend .lg-free i { background: var(--color-soft); }
.cal-legend .lg-selected i { background: var(--color-brand); }
.cal-legend .lg-booked i { background: #d1d5db; }

/* ---------- Price summary box ---------- */
.price-summary { border-radius: 1rem; background: var(--color-soft); padding: 1.1rem 1.25rem; display: grid; gap: .5rem; }
.price-summary .row { display: flex; align-items: center; justify-content: space-between; font-size: .82rem; font-weight: 700; color: var(--color-text); }
.price-summary .row.total { border-top: 1px dashed var(--color-border); padding-top: .5rem; font-size: .95rem; font-weight: 900; color: var(--color-ink); }
.price-summary .row span:last-child { color: var(--color-brand); }

/* ---------- Payment choice ---------- */
.payment-choice { display: grid; gap: .75rem; grid-template-columns: 1fr 1fr; }
.payment-option { position: relative; border: 1px solid var(--color-border); border-radius: 1rem; padding: 1rem; cursor: pointer; transition: .15s; }
.payment-option:hover { border-color: var(--color-brand); }
.payment-option input { position: absolute; top: 1rem; right: 1rem; }
.payment-option .t { font-size: .85rem; font-weight: 900; color: var(--color-ink); }
.payment-option .d { margin-top: .3rem; font-size: .72rem; color: var(--color-muted); }
.payment-option:has(input:checked) { border-color: var(--color-brand); background: #fef2f2; }

/* ---------- 404 ---------- */
.error-page { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 4rem 1rem; }
.error-page .code { font-size: 5rem; font-weight: 900; color: var(--color-brand); }

/* ==========================================================
   Formular pe pași (wizard)
   ========================================================== */
.fs-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .booking-card-body .fs-grid { grid-template-columns: 1fr 1fr; }
}
.booking-plain-body .fs-grid { grid-template-columns: 1fr; }
.fs-step { display: none; }
.fs-step.is-active { display: grid; animation: fsFade .25s ease; }
@keyframes fsFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.fs-step .form-group { margin-bottom: 0; }

/* progres */
.fs-progress { margin-bottom: 1.25rem; }
.fs-progress-track { height: 5px; border-radius: 999px; background: var(--color-soft); overflow: hidden; }
.fs-progress-fill { display: block; height: 100%; background: var(--color-brand); border-radius: 999px; transition: width .3s ease; }
.fs-dots { display: flex; justify-content: space-between; gap: .5rem; margin-top: .75rem; }
.fs-dots li { display: flex; align-items: center; gap: .5rem; font-size: .72rem; font-weight: 800; color: #9ca3af; }
.fs-dots li .n { display: grid; place-items: center; height: 1.5rem; width: 1.5rem; border-radius: 999px; background: var(--color-soft); color: #9ca3af; font-size: .72rem; font-weight: 900; flex-shrink: 0; transition: .2s; }
.fs-dots li.is-active { color: var(--color-ink); }
.fs-dots li.is-active .n { background: var(--color-brand); color: #fff; }
.fs-dots li.is-done .n { background: var(--color-ink); color: #fff; }
.fs-dots li.is-done .n::before { content: "\2713"; }
.fs-dots li.is-done .n { font-size: 0; }
.fs-dots li.is-done .n::before { font-size: .72rem; }
.fs-dots li .t { white-space: nowrap; }
@media (max-width: 400px) { .fs-dots li .t { display: none; } }

.fs-nav { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: .35rem; }
.fs-nav .btn-primary, .fs-nav .btn-outline { min-height: 3rem; }
.fs-nav .btn-primary { flex: 1; }
.fs-nav > span { flex: 0; }

/* ==========================================================
   Boxuri egale pe înălțime + design mai compact
   ========================================================== */
.hero-badges .item,
.trust-item,
.feature-item,
.step-card,
.testi-card,
.spec-box { height: 100%; }

.feature-item,
.testi-card,
.step-card { display: flex; flex-direction: column; }
.feature-item p, .testi-card p { flex: 1 1 auto; }
.step-card p { flex: 1 1 auto; }
.testi-card .testi-who { margin-top: auto; }

.fleet-grid, .feature-grid, .steps-grid, .testi-grid, .trust-grid, .hero-badges, .spec-grid { align-items: stretch; }

/* rânduri de secțiune mai compacte */
.fleet-grid { margin-top: 2rem; gap: 1.25rem; }
.feature-grid { margin-top: 1.5rem; }
.steps-grid { margin-top: 2rem; }
.testi-grid { margin-top: 2rem; }
.section-head h2 { margin-top: .6rem; }
.section-head p { margin-top: .75rem; }

/* carduri puțin mai strânse */
.feature-item { padding: 1.1rem; }
.testi-card { padding: 1.4rem; }
.testi-card p { margin-top: 1rem; }
.testi-card .testi-who { margin-top: 1.1rem; }
.step-card { padding: 1.5rem; }
.step-card .step-num { height: 4rem; width: 4rem; font-size: 1.25rem; border-radius: 1rem; }
.step-card h3 { margin-top: 1rem; }
.step-card p { margin-top: .5rem; }
@media (min-width: 1024px) { .steps-line { top: 2rem; } }

/* hero puțin mai compact */
.hero { min-height: 0; }
.hero-grid { padding: 2.5rem 0; min-height: 0; }
@media (min-width: 1024px) { .hero-grid { padding: 3.25rem 0; } }
.hero-badges { margin-top: 2rem; }
.hero-badges .item { display: flex; flex-direction: column; }

/* why section puțin mai compact pe desktop */
@media (min-width: 1024px) { .why-grid { gap: 3.5rem; } }
.why-media img { height: 26rem; }
.feature-grid { margin-top: 1.5rem; }

/* header sticky ceva mai înalt pentru logo mai mare */
html { scroll-padding-top: 104px; }
.booking-sidebar { top: 104px; }
.veio-credit img {
    display: inline;
}

.hero-grid h1 {
  color:#fff;
}
/* ---------- Permis conducere: upload + acord GDPR ---------- */
.license-section {
  display: grid;
  gap: .6rem;
}
.license-section > .form-label { margin-bottom: 0; }
.license-upload-card {
  min-height: 4.75rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .8rem .9rem;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.license-upload-card:hover,
.license-upload-card:focus-within {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 4px rgba(225,29,46,.08);
}
.license-upload-card.has-file {
  border-color: #16a34a;
  background: #f0fdf4;
}
.license-upload-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  border-radius: .8rem;
  background: #fef2f2;
  color: var(--color-brand);
  font-size: 1rem;
}
.license-upload-card.has-file .license-upload-icon { background: #dcfce7; color: #15803d; }
.license-upload-copy { min-width: 0; flex: 1; display: block; }
.license-upload-copy strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--color-ink);
  font-size: .84rem;
  font-weight: 800;
}
.license-upload-copy small {
  display: block;
  margin-top: .2rem;
  color: var(--color-muted);
  font-size: .69rem;
  font-weight: 600;
}
.license-upload-action {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  flex: 0 0 auto;
  border-radius: .7rem;
  padding: .55rem .7rem;
  background: var(--color-ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}
.license-upload-help {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  margin: 0;
  color: var(--color-muted);
  font-size: .72rem;
  line-height: 1.45;
}
.license-upload-help i { margin-top: .15rem; color: #64748b; flex: 0 0 auto; }
.license-consent {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  width: 100%;
  margin-top: .15rem;
  padding: .8rem .9rem;
  border: 1px solid var(--color-border);
  border-radius: .9rem;
  background: var(--color-soft);
  color: var(--color-text);
  cursor: pointer;
  line-height: 1.4;
  transition: border-color .15s ease, background .15s ease;
}
.license-consent:hover { border-color: #cbd5e1; background: #fff; }
.license-consent:has(.license-consent-input:checked) { border-color: var(--color-brand); background: #fef2f2; }
.license-consent-input {
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  width: 1.05rem !important;
  height: 1.05rem !important;
  margin: .12rem 0 0 !important;
  flex: 0 0 1.05rem !important;
  accent-color: var(--color-brand);
  cursor: pointer;
}
.license-consent-copy {
  display: block;
  min-width: 0;
  color: var(--color-text);
  font-size: .74rem;
}
.license-consent-copy strong {
  display: block;
  margin-bottom: .1rem;
  color: var(--color-ink);
  font-size: .78rem;
  font-weight: 800;
}
.license-consent-copy > span { display: block; color: var(--color-muted); }
.license-consent-copy a { color: var(--color-brand); text-decoration: underline; font-weight: 800; }

@media (max-width: 520px) {
  .license-section { gap: .5rem; }
  .license-upload-card { min-height: 4.25rem; padding: .7rem .75rem; gap: .65rem; }
  .license-upload-icon { width: 2.35rem; height: 2.35rem; flex-basis: 2.35rem; }
  .license-upload-action span { display: none; }
  .license-upload-action { padding: .55rem; }
  .license-consent { padding: .72rem .78rem; }
}

