/* ============================================================
   shuttlevan.ro · luxury transfer site · v1
   Palette: dark navy #0B1D2E · gold gradient · cream #F5EFE1
   ============================================================ */

:root {
  --navy: #0B1D2E;
  --navy-2: #12283C;
  --navy-3: #1B3247;
  --gold: #D4B26A;
  --gold-2: #B8935A;
  --gold-3: #9A7842;
  --cream: #F5EFE1;
  --cream-2: #ECE4D0;
  --gray-1: #8C9BAA;
  --gray-2: #6B7684;
  --gray-3: #3B4653;
  --white: #FFFFFF;
  --black: #05111C;
  --shadow: 0 20px 60px rgba(5, 17, 28, .35);
  --radius: 14px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; margin: 0 0 .6em; }
p { margin: 0 0 1em; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }
@media (max-width: 400px) { .container { padding: 0 16px; } }

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-weight: 600; font-size: .92rem; letter-spacing: .2px;
  border: 1px solid transparent; transition: all .2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--navy); }
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(184,147,90,.35); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--cream); }

/* ── Header ────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11, 29, 46, .85); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 178, 106, .12);
  transition: background .3s;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 12px; }
.brand { min-width: 0; flex-shrink: 1; }
.brand img { display: block; max-width: 100%; height: 38px; }
@media (max-width: 480px) {
  .header-inner { padding: 10px 16px; gap: 8px; }
  .brand img { height: 30px; }
  .btn-sm { padding: 8px 14px; font-size: .78rem; }
}
.main-nav { display: flex; gap: 6px; }
.main-nav a {
  color: var(--cream); padding: 10px 16px;
  font-size: .88rem; font-weight: 500; letter-spacing: .3px;
  border-radius: 6px; transition: all .2s;
  position: relative;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.active { color: var(--gold); }
.main-nav a.active::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 6px;
  height: 1px; background: var(--gold);
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch .lang-link {
  display: inline-flex; align-items: center;
  padding: 4px; border: 0; background: transparent;
  transition: transform .2s, opacity .2s; line-height: 0;
  opacity: .85;
}
.lang-switch .lang-link:hover { opacity: 1; transform: translateY(-1px); }
.lang-switch .lang-link svg { display: block; }
.hamburger { display: none; background: transparent; border: 0; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); margin: 5px 0; transition: all .3s; }
.mobile-nav { display: none; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .mobile-nav {
    display: block; position: fixed; top: 68px; right: 0;
    width: 100%; max-width: 320px; background: var(--navy-2);
    padding: 24px; border-left: 1px solid rgba(212,178,106,.15);
    transform: translateX(100%); transition: transform .3s;
    height: calc(100vh - 68px); overflow-y: auto;
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a { display: block; padding: 12px 0; color: var(--cream); border-bottom: 1px solid rgba(212,178,106,.08); }
  .mobile-nav a.btn { display: inline-flex; margin-top: 14px; border-bottom: 0; }
  .hamburger.open span:nth-child(1) { transform: translate(0, 7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translate(0, -7px) rotate(-45deg); }
}

/* ── Hero ──────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; color: var(--cream);
}
.hero-bg, .hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(11,29,46,.85) 0%, rgba(11,29,46,.55) 60%, rgba(11,29,46,.75) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding-top: 120px; padding-bottom: 130px; }
.hero-eyebrow {
  font-size: .78rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 8vw, 4.6rem); color: var(--cream);
  max-width: 780px; margin-bottom: 24px;
  line-height: 1.1;
}
.hero h1 .gold { color: var(--gold); font-style: italic; font-weight: 500; }
.hero-sub {
  font-size: 1.05rem; color: rgba(245,239,225,.85);
  max-width: 620px; margin-bottom: 32px;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions .btn { flex: 0 1 auto; }

.hero-badges {
  position: absolute; bottom: 30px; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: center; gap: 30px; flex-wrap: wrap;
  padding: 0 20px;
}
.hero-badge { display: flex; align-items: center; gap: 8px; color: rgba(245,239,225,.75); font-size: .8rem; }
.hero-badge svg { color: var(--gold); flex-shrink: 0; }

@media (max-width: 640px) {
  .hero { min-height: auto; padding: 0; }
  .hero-content { padding-top: 110px; padding-bottom: 140px; }
  .hero-eyebrow { font-size: .7rem; letter-spacing: 2.5px; margin-bottom: 14px; }
  .hero h1 { font-size: clamp(1.75rem, 8.5vw, 2.4rem); margin-bottom: 18px; word-wrap: break-word; }
  .hero-sub { font-size: .95rem; margin-bottom: 24px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 12px 22px; font-size: .88rem; flex: 1 1 auto; text-align: center; justify-content: center; min-width: 0; }
  .hero-badges { gap: 14px 20px; bottom: 20px; font-size: .72rem; }
  .hero-badge { font-size: .74rem; }
  .hero-badge svg { width: 14px; height: 14px; }
}
@media (max-width: 400px) {
  .hero h1 { font-size: 1.65rem; }
  .hero-actions .btn { padding: 11px 16px; font-size: .84rem; }
  .hero-badges { flex-direction: column; align-items: center; gap: 6px; }
}

/* ── Sections ──────────────────────────────── */
section { padding: 100px 0; }
@media (max-width: 640px) { section { padding: 50px 0; } }

.section-eyebrow { color: var(--gold-2); font-size: .78rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-size: clamp(1.6rem, 4.5vw, 2.8rem); margin-bottom: 20px; line-height: 1.15; }
.section-lead { font-size: 1.05rem; color: var(--gray-2); max-width: 640px; line-height: 1.55; }
.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }
@media (max-width: 640px) {
  .section-head { margin-bottom: 36px; }
  .section-lead { font-size: .95rem; }
  .section-eyebrow { letter-spacing: 2.5px; font-size: .72rem; }
}

/* ── Why-us strip (dark, animated counters) ─── */
.why-strip {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 640px) { .why-strip { padding: 50px 0; } }
.why-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(212,178,106,.08) 0%, transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(212,178,106,.06) 0%, transparent 40%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
@media (max-width: 780px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } }
.why-item {
  text-align: center;
  padding: 20px 10px;
  position: relative;
}
.why-item:not(:last-child)::after {
  content: '';
  position: absolute; right: -20px; top: 20%; bottom: 20%;
  width: 1px; background: linear-gradient(180deg, transparent, rgba(212,178,106,.25), transparent);
}
@media (max-width: 780px) { .why-item::after { display: none !important; } }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--gold);
  line-height: 1; margin-bottom: 10px;
  font-weight: 600;
}
.why-num .suffix { font-size: .5em; color: var(--gold-2); margin-left: 3px; }
.why-label {
  color: rgba(245,239,225,.85);
  font-size: .95rem;
  letter-spacing: .3px;
}
.why-sub {
  color: var(--gray-1);
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── Feature grid: services with photo tiles ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 260px;
  gap: 18px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 300px 220px 220px 220px; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 240px); } }

.feature-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
  isolation: isolate;
}
.feature-tile:nth-child(1) { grid-column: span 2; grid-row: span 1; }
.feature-tile:nth-child(2) { grid-column: span 1; grid-row: span 2; }
.feature-tile:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.feature-tile:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.feature-tile:nth-child(5) { grid-column: span 2; grid-row: span 1; }
@media (max-width: 900px) {
  .feature-tile:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .feature-tile:nth-child(2), .feature-tile:nth-child(3),
  .feature-tile:nth-child(4), .feature-tile:nth-child(5) { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 560px) {
  .feature-tile { grid-column: span 1 !important; grid-row: span 1 !important; }
}

.feature-tile .tile-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .6s;
  filter: brightness(.7) saturate(1.05);
}
.feature-tile:hover .tile-bg {
  transform: scale(1.08);
  filter: brightness(.55) saturate(1.15);
}
.feature-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,29,46,.15) 0%, rgba(11,29,46,.85) 100%);
  z-index: 1;
}
.feature-tile-body {
  position: absolute; inset: 0; z-index: 2;
  padding: 32px; display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--cream);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.feature-tile:hover .feature-tile-body { transform: translateY(-6px); }
.feature-tile-eyebrow {
  font-size: .72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px;
  opacity: 0; transform: translateY(6px);
  transition: all .4s ease .05s;
}
.feature-tile:hover .feature-tile-eyebrow { opacity: 1; transform: translateY(0); }
.feature-tile-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  margin-bottom: 8px; line-height: 1.15;
}
.feature-tile-desc {
  color: rgba(245,239,225,.75);
  font-size: .92rem;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .5s ease, opacity .4s ease, margin .4s ease;
}
.feature-tile:hover .feature-tile-desc {
  max-height: 100px; opacity: 1; margin-top: 4px;
}
.feature-tile-arrow {
  position: absolute; top: 24px; right: 24px; z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(11,29,46,.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(212,178,106,.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  transition: all .3s;
}
.feature-tile:hover .feature-tile-arrow {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
  transform: rotate(-45deg) scale(1.05);
}

/* ── Fleet grid ────────────────────────────── */
.fleet-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.fleet-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(11,29,46,.06); transition: all .3s;
  display: flex; flex-direction: column;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fleet-cover {
  aspect-ratio: 16/10; overflow: hidden; background: var(--navy);
}
.fleet-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.fleet-card:hover .fleet-cover img { transform: scale(1.05); }
.fleet-body { padding: 24px 26px; flex: 1; display: flex; flex-direction: column; }
.fleet-body h3 { font-size: 1.35rem; margin-bottom: 6px; }
.fleet-type { color: var(--gold-2); font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.fleet-specs { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; color: var(--gray-2); font-size: .88rem; }
.fleet-specs span { display: inline-flex; align-items: center; gap: 6px; }
.fleet-price { margin-top: auto; display: flex; justify-content: space-between; align-items: end; padding-top: 20px; border-top: 1px solid rgba(11,29,46,.08); }
.fleet-price .price-label { font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-1); }
.fleet-price .price-value { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); }
.fleet-price .price-value small { font-size: .7rem; color: var(--gray-1); letter-spacing: 1px; }

/* ── Testimonials ──────────────────────────── */
.testimonials-strip {
  background: var(--navy); color: var(--cream);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px;
}
.testimonial-card {
  background: var(--navy-2); border-radius: var(--radius);
  padding: 32px; border: 1px solid rgba(212,178,106,.14);
}
.testimonial-rating { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-quote { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--cream); font-style: italic; margin-bottom: 22px; line-height: 1.55; }
.testimonial-author { font-weight: 600; }
.testimonial-role { color: var(--gray-1); font-size: .85rem; margin-top: 2px; }

/* ── CTA final ─────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream); text-align: center;
}
.cta-final h2 { font-size: clamp(1.6rem, 5vw, 3rem); margin-bottom: 20px; line-height: 1.2; }
.cta-final p { color: rgba(245,239,225,.75); max-width: 560px; margin: 0 auto 30px; font-size: .98rem; line-height: 1.55; }
@media (max-width: 640px) { .cta-final .btn { width: 100%; max-width: 340px; justify-content: center; } }

/* ── Footer ────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(245,239,225,.7);
  padding: 80px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--gold); font-size: .82rem; letter-spacing: 2px; text-transform: uppercase; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: rgba(245,239,225,.7); font-size: .92rem; transition: color .2s; }
.site-footer a:hover { color: var(--gold); }
.footer-tagline { font-size: .92rem; margin-bottom: 20px; }
.social-row { display: flex; gap: 10px; }
.social-row a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(212,178,106,.3); border-radius: 50%; font-size: .72rem; }
.social-row a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.hours-note { color: var(--gray-1); font-size: .82rem; margin-top: 16px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 30px; border-top: 1px solid rgba(212,178,106,.1); font-size: .82rem; color: var(--gray-1); flex-wrap: wrap; gap: 12px; }

/* ── WhatsApp FAB ──────────────────────────── */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.1); }

/* ── Cookie banner ─────────────────────────── */
#cc-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 640px; margin: 0 auto;
  background: rgba(11,29,46,.98); color: var(--cream);
  border: 1px solid rgba(212,178,106,.18); border-radius: var(--radius);
  padding: 16px 20px; z-index: 999;
  box-shadow: var(--shadow); font-size: .85rem;
  display: none;
}
#cc-banner.show { display: block; }
#cc-banner p { margin: 0 0 12px; line-height: 1.5; }
#cc-banner .cc-btns { display: flex; gap: 8px; justify-content: flex-end; flex-wrap: wrap; }
#cc-banner button {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(212,178,106,.3); padding: 8px 16px;
  border-radius: 6px; font-size: .82rem;
}
#cc-banner button:hover { background: rgba(212,178,106,.08); }
#cc-banner button.cc-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 600; }

/* ── Reveal animation ──────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: all .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Utility ───────────────────────────────── */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
