/* ==========================================================================
   LDCB TRANS SRL — Însoțire transport excepțional
   Professional escort / pilot-car website
   ========================================================================== */

:root {
  /* Brand palette — safety / warning on a clean white theme
     Note: --white now carries the PRIMARY DARK TEXT color (semantic flip
     for the light theme); backgrounds use --ink / --ink-2 which are white. */
  --ink:        #ffffff;   /* page background */
  --ink-2:      #f3f6fb;   /* alternate section background */
  --panel:      #ffffff;   /* card surface */
  --panel-2:    #f6f9fc;   /* card gradient end */
  --line:       #e2e8f1;   /* borders */
  --amber:      #ffc21f;
  --amber-2:    #ffb000;
  --amber-ink:  #14100a;
  --red:        #e4002b;
  --wa:         #25d366;
  --wa-dark:    #128c4a;
  --white:      #111722;   /* primary text (dark) */
  --muted:      #566072;   /* secondary text */
  --muted-2:    #8791a1;

  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 42px -20px rgba(20,32,54,.20);
  --shadow-lg: 0 38px 80px -34px rgba(20,32,54,.28);

  --font-head: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--amber);
  border-radius: 2px;
}

/* Warning chevron stripe — mirrors the vehicle livery */
.chevron-stripe {
  height: 12px;
  background: repeating-linear-gradient(
    -45deg,
    var(--red) 0 22px,
    #fff 22px 44px
  );
  opacity: .95;
}

/* ============================ BUTTONS (consistent system) ================= */
.btn {
  --btn-h: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--btn-h);
  padding: 0 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(180deg, var(--amber) 0%, var(--amber-2) 100%);
  color: var(--amber-ink);
  box-shadow: 0 12px 26px -10px rgba(255,176,0,.6);
}
.btn--primary:hover { box-shadow: 0 18px 34px -10px rgba(255,176,0,.7); }

.btn--wa {
  background: var(--wa);
  color: #06331b;
  box-shadow: 0 12px 26px -10px rgba(37,211,102,.55);
}
.btn--wa:hover { background: #2ee06f; }

.btn--ghost {
  background: rgba(255,255,255,.04);
  color: var(--white);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }

.btn--sm { --btn-h: 44px; font-size: .9rem; padding: 0 18px; }
.btn--block { width: 100%; }

/* =============================== HEADER =================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -20px rgba(20,32,54,.28);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: linear-gradient(180deg, var(--amber) 0%, var(--amber-2) 100%);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--amber-ink);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 18px -8px rgba(255,176,0,.7);
}
.brand-mark::after {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 34%;
  background: repeating-linear-gradient(-45deg, var(--red) 0 6px, #fff 6px 12px);
}
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.32rem; letter-spacing: .01em; line-height: 1; }
.brand-name span { color: var(--amber); }
.brand-sub { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a {
  font-weight: 500;
  font-size: .96rem;
  color: var(--muted);
  transition: color .18s ease;
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--amber); transition: width .22s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-tel {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
}
.nav-tel svg { width: 18px; height: 18px; color: var(--amber); }

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--panel);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: .25s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================== HERO ==================================== */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 0;
  background:
    radial-gradient(1100px 560px at 82% -12%, rgba(255,194,31,.28), transparent 62%),
    radial-gradient(820px 460px at 6% 8%, rgba(228,0,43,.06), transparent 58%),
    var(--ink);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-bottom: clamp(40px, 6vw, 72px);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber);
  color: var(--amber-ink);
  font-family: var(--font-head); font-weight: 800;
  font-size: .95rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 8px;
  box-shadow: 0 10px 24px -12px rgba(255,176,0,.8);
}
.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.35rem);
  font-weight: 800;
  margin: 22px 0 18px;
  text-transform: uppercase;
}
.hero h1 .hl { color: var(--amber); }
.hero-lead {
  font-size: clamp(1.05rem, 2.1vw, 1.22rem);
  color: var(--muted);
  max-width: 40ch;
  margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-assurance {
  display: flex; flex-wrap: wrap; gap: 20px 26px;
  margin-top: 30px;
}
.hero-assurance .a-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem; color: var(--white); font-weight: 500;
}
.hero-assurance svg { width: 20px; height: 20px; color: var(--amber); flex: 0 0 auto; }

/* Hero showcase — portrait vehicle photos framed */
.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--panel);
}
.hero-media .slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-media .slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .slide.active { opacity: 1; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,10,14,.55) 100%);
  pointer-events: none;
}
.hero-media .plate-tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  padding: 8px 13px; border-radius: 10px;
  color: var(--white);
  box-shadow: var(--shadow);
  font-family: var(--font-head); font-weight: 700; letter-spacing: .04em; font-size: .9rem;
}
.hero-media .plate-tag i { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); display: inline-block; }
.hero-dots { position: absolute; right: 16px; bottom: 18px; z-index: 3; display: flex; gap: 7px; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,.4); cursor: pointer; padding: 0; transition: .2s; }
.hero-dots button.active { background: var(--amber); width: 22px; border-radius: 5px; }

/* ============================ MARQUEE / TRUST ============================ */
.marquee {
  background: var(--amber);
  color: var(--amber-ink);
  overflow: hidden;
  border-top: 3px solid var(--amber-ink);
  border-bottom: 3px solid var(--amber-ink);
}
.marquee-track {
  display: flex; gap: 46px; align-items: center;
  padding: 13px 0;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; font-size: 1.02rem;
  display: inline-flex; align-items: center; gap: 46px;
}
.marquee-track span::after { content: "▮"; color: var(--red); font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================== SECTIONS ================================= */
section { position: relative; }
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-head { max-width: 680px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 3.05rem);
  text-transform: uppercase;
  margin: 14px 0 14px;
}
.section-head p { color: var(--muted); font-size: 1.08rem; }
.bg-alt { background: var(--ink-2); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: repeating-linear-gradient(-45deg, var(--red) 0 10px, #fff 10px 20px);
  opacity: 0; transition: opacity .25s ease;
}
.svc-card:hover { transform: translateY(-6px); border-color: rgba(255,194,31,.5); box-shadow: var(--shadow); }
.svc-card:hover::before { opacity: 1; }
.svc-ic {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,194,31,.12);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.svc-ic svg { width: 28px; height: 28px; color: var(--amber); }
.svc-card h3 { font-size: 1.42rem; margin-bottom: 9px; text-transform: uppercase; }
.svc-card p { color: var(--muted); font-size: .98rem; }

/* Why us */
.why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,60px); align-items: center; }
.why-list { display: grid; gap: 18px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.why-item .num {
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  color: var(--amber); line-height: 1; flex: 0 0 auto;
}
.why-item h4 { font-size: 1.2rem; margin-bottom: 4px; text-transform: uppercase; }
.why-item p { color: var(--muted); font-size: .96rem; }
.why-photo {
  border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); position: relative; aspect-ratio: 3/4;
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Stats band */
.stats-band { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 46px 0; }
.stat { text-align: center; }
.stat .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem,5vw,3rem); color: var(--amber); line-height: 1; }
.stat .l { color: var(--muted); font-size: .92rem; margin-top: 8px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

/* Gallery / fleet */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.g-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 3/4;
}
.g-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.g-card:hover img { transform: scale(1.05); }
.g-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 18px 16px;
  background: linear-gradient(transparent, rgba(8,10,14,.9));
  font-family: var(--font-head); font-weight: 700; letter-spacing: .03em;
  display: flex; align-items: center; gap: 8px;
}
.g-card figcaption i { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }

/* Coverage */
.coverage-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,56px); align-items: center; }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.coverage-tags span {
  background: var(--panel); border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 999px; font-size: .92rem; font-weight: 500; color: var(--white);
}
.coverage-tags span.hot { background: rgba(255,194,31,.14); border-color: rgba(255,194,31,.5); color: var(--amber); font-weight: 600; }
.coverage-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: 18px; padding: 34px;
  box-shadow: var(--shadow);
}
.coverage-card .big { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem,6vw,3.4rem); color: var(--amber); line-height: 1; }
.coverage-card ul { list-style: none; margin-top: 22px; display: grid; gap: 14px; }
.coverage-card li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.coverage-card li svg { width: 22px; height: 22px; color: var(--amber); flex: 0 0 auto; margin-top: 1px; }
.coverage-card li b { color: var(--white); font-weight: 600; }

/* CTA final */
.cta-final {
  background:
    radial-gradient(700px 340px at 80% 20%, rgba(255,194,31,.16), transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  border-top: 1px solid var(--line);
}
.cta-box {
  text-align: center; max-width: 760px; margin: 0 auto;
}
.cta-box h2 { font-size: clamp(2.1rem,5vw,3.3rem); text-transform: uppercase; margin-bottom: 16px; }
.cta-box p { color: var(--muted); font-size: 1.1rem; margin-bottom: 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-phone {
  margin-top: 26px; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.6rem); letter-spacing: .02em;
}
.cta-phone a { color: var(--white); transition: color .2s; }
.cta-phone a:hover { color: var(--amber); }

/* Footer */
.site-footer { background: var(--ink-2); border-top: 1px solid var(--line); padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.footer-grid p { color: var(--muted); font-size: .95rem; margin-top: 14px; max-width: 34ch; }
.footer-col h5 { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 1rem; margin-bottom: 16px; color: var(--amber); }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: .95rem; transition: color .18s; }
.footer-col a:hover { color: var(--white); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--amber); flex: 0 0 auto; margin-top: 3px; }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  color: var(--muted-2); font-size: .86rem;
}

/* Mobile sticky call bar */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none;
  gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px -18px rgba(20,32,54,.35);
}
.mobile-bar .btn { flex: 1; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* ============================ RESPONSIVE ================================= */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { width: 100%; max-width: 460px; margin: 8px auto 0; aspect-ratio: 4/5; }
  .why-wrap, .coverage-wrap { grid-template-columns: 1fr; }
  .why-photo { max-width: 420px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-tel { display: none; }
  .menu-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--line);
    padding: 14px 22px 22px;
  }
  .nav.open .nav-links a { padding: 12px 0; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  .nav.open .nav-links a::after { display: none; }
  .services-grid, .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
  .brand-sub { display: none; }
  .brand-name { font-size: 1.5rem; }
  .hero { padding-top: 30px; }
  .g-card, .hero-media, .why-photo { aspect-ratio: 3/4; }
}
@media (max-width: 420px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .btn { font-size: .92rem; padding: 0 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
