/* ============================================================
   AURONCAR – Prestige Stylesheet
   LT Comical × Poppins × His Heart is Mine | Red × Pearl White
   ============================================================ */

/* ── Custom Font Faces ──────────────────────────────────────
   Dosyaları fonts/ klasörüne koyun:
   fonts/LTComical.woff2 + fonts/LTComical.woff
   fonts/HisHeartIsMine.woff2 + fonts/HisHeartIsMine.woff
   ─────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'LT Comical';
  src: url('fonts/LTComical.woff2') format('woff2'),
       url('fonts/LTComical.woff')  format('woff');
  font-weight: normal;
  font-style:  normal;
  font-display: swap;
}

@font-face {
  font-family: 'His Heart is Mine';
  src: url('fonts/HisHeartIsMine.woff2') format('woff2'),
       url('fonts/HisHeartIsMine.woff')  format('woff');
  font-weight: normal;
  font-style:  normal;
  font-display: swap;
}

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

:root {
  --red:         #e31e24;
  --red-dark:    #b71519;
  --red-light:   #ff4a4f;
  --red-glow:    rgba(227,30,36,.14);
  --white:       #ffffff;
  --off-white:   #f9f8f6;
  --light:       #f2f0ed;
  --gray-50:     #fafafa;
  --gray-100:    #f4f3f1;
  --gray-200:    #e6e4e0;
  --gray-300:    #ccc9c3;
  --gray-400:    #9e9b94;
  --gray-500:    #6e6b64;
  --gray-700:    #3c3a35;
  --dark:        #181714;
  --gold:        #c9a84c;
  --nav-h:       78px;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.05);
  --shadow-md:   0 8px 32px rgba(0,0,0,.09);
  --shadow-lg:   0 22px 64px rgba(0,0,0,.12);
  --shadow-red:  0 10px 36px rgba(227,30,36,.28);
  --ease:        cubic-bezier(.25,.46,.45,.94);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --font-body:    'Poppins', system-ui, sans-serif;
  --font-display: 'LT Comical', 'Poppins', sans-serif;
  --font-script:  'His Heart is Mine', cursive;
  --transition:  .3s var(--ease);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600; font-size: .9rem; letter-spacing: .03em;
  transition: var(--transition); position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent);
  opacity: 0; transition: var(--transition);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }
.btn-large { padding: 16px 40px; font-size: 1rem; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  border: 2px solid rgba(255,255,255,.55);
  color: var(--white); border-radius: 50px;
  font-weight: 600; font-size: .9rem;
  transition: var(--transition); white-space: nowrap;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline.btn-large { padding: 14px 38px; font-size: 1rem; }

.btn-white {
  display: inline-flex; align-items: center; padding: 15px 38px;
  background: var(--white); color: var(--red); border-radius: 50px;
  font-weight: 700; font-size: 1rem; transition: var(--transition);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.18); }

.btn-outline-white {
  display: inline-flex; align-items: center; padding: 15px 38px;
  border: 2px solid rgba(255,255,255,.65); color: var(--white); border-radius: 50px;
  font-weight: 600; font-size: 1rem; transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,.14); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
  background: rgba(255,255,255,.98);
}

.nav-container {
  max-width: 1340px; margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}

.logo { display: flex; align-items: center; }
.logo-placeholder { display: flex; align-items: center; gap: 9px; }
.logo-icon { color: var(--red); font-size: 1.35rem; animation: spin-icon 7s linear infinite; }
@keyframes spin-icon { to { transform: rotate(360deg); } }
.logo-text {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.4rem; letter-spacing: .07em; color: var(--dark);
}
.logo-img { height: 42px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 13px; font-size: .88rem; font-weight: 500;
  color: var(--gray-700); border-radius: var(--radius-sm);
  transition: var(--transition); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 3px; left: 13px; right: 13px;
  height: 2px; background: var(--red); border-radius: 2px;
  transform: scaleX(0); transition: transform .3s var(--ease);
}
.nav-link:hover { color: var(--red); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.lang-switcher { display: flex; align-items: center; gap: 1px; }
.lang-btn {
  padding: 5px 9px; font-size: .76rem; font-weight: 700;
  letter-spacing: .05em; color: var(--gray-400); border-radius: 4px;
  transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active { color: var(--red); background: var(--red-glow); }
.lang-sep { color: var(--gray-300); font-size: .68rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; padding: calc(var(--nav-h) + 64px) 28px 88px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0d1a 0%, #1c0404 55%, #0a0a16 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 18% 50%, rgba(227,30,36,.2) 0%, transparent 58%),
    radial-gradient(ellipse 55% 75% at 82% 18%, rgba(227,30,36,.1) 0%, transparent 48%),
    radial-gradient(ellipse 90% 80% at 50% 100%, rgba(255,80,80,.06) 0%, transparent 45%);
}
#particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(227,30,36,.45);
  animation: float-particle linear infinite; will-change: transform, opacity;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; } 90% { opacity: .4; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content { position: relative; z-index: 1; text-align: center; max-width: 920px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 22px;
  background: rgba(227,30,36,.12);
  border: 1px solid rgba(227,30,36,.32);
  border-radius: 50px; color: rgba(255,255,255,.82);
  font-size: .8rem; font-weight: 500; letter-spacing: .05em;
  margin-bottom: 30px; backdrop-filter: blur(12px);
}
.badge-dot {
  width: 7px; height: 7px; background: var(--red-light); border-radius: 50%;
  box-shadow: 0 0 8px var(--red-light); animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.65); } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.04; color: var(--white); margin-bottom: 26px;
  letter-spacing: .01em;
}
.title-highlight {
  color: transparent;
  background: linear-gradient(135deg, #ff7b7f, var(--red));
  -webkit-background-clip: text; background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,.68); max-width: 620px; margin: 0 auto 44px;
  line-height: 1.75; font-weight: 300;
}
.hero-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; margin-bottom: 60px;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 44px;
  padding: 28px 44px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg); backdrop-filter: blur(16px); flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1; font-variant-numeric: tabular-nums; }
.stat-plus { color: var(--red-light); font-size: 1.6rem; font-weight: 800; }
.stat-label { display: block; font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 5px; letter-spacing: .05em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 52px; background: rgba(255,255,255,.12); }

.hero-scroll-indicator {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  animation: bounce-scroll 2.8s ease-in-out infinite;
}
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.35);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px; background: rgba(255,255,255,.65);
  border-radius: 2px; animation: scroll-anim 2.2s ease-in-out infinite;
}
@keyframes scroll-anim { 0%, 100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(8px); opacity: .25; } }
@keyframes bounce-scroll { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* Fade-up */
.animate-fade-up { opacity: 0; transform: translateY(28px); animation: fade-up .85s var(--ease) forwards; }
.animate-fade-up[data-delay="0"] { animation-delay: .08s; }
.animate-fade-up[data-delay="1"] { animation-delay: .22s; }
.animate-fade-up[data-delay="2"] { animation-delay: .38s; }
.animate-fade-up[data-delay="3"] { animation-delay: .54s; }
.animate-fade-up[data-delay="4"] { animation-delay: .70s; }
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .10s; }
.reveal[data-delay="2"] { transition-delay: .20s; }
.reveal[data-delay="3"] { transition-delay: .30s; }
.reveal[data-delay="4"] { transition-delay: .40s; }
.reveal[data-delay="5"] { transition-delay: .50s; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-container { max-width: 1340px; margin: 0 auto; padding: 0 28px; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block; padding: 4px 20px;
  background: var(--red-glow); color: var(--red);
  font-family: var(--font-script);
  font-size: 1.15rem; font-weight: 400; letter-spacing: .04em;
  border-radius: 50px; margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--dark); line-height: 1.18; margin-bottom: 16px;
}
.section-desc { font-size: .98rem; color: var(--gray-500); line-height: 1.75; font-weight: 300; }

/* ============================================================
   BOOKING STRIP
   ============================================================ */
.booking-strip { background: var(--white); padding: 0 28px; margin-top: -1px; position: relative; z-index: 10; }
.booking-container {
  max-width: 1340px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 44px 52px;
  box-shadow: 0 -4px 0 0 var(--red), var(--shadow-lg);
  transform: translateY(-44px);
}
.booking-title {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700;
  margin-bottom: 30px; color: var(--dark); letter-spacing: -.01em;
}
.booking-form {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; align-items: end;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: .78rem; font-weight: 600; color: var(--gray-700);
  letter-spacing: .04em; text-transform: uppercase;
}
.form-group select,
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: .9rem; color: var(--dark); background: var(--gray-50);
  transition: border-color .25s, box-shadow .25s; outline: none; width: 100%;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow); background: var(--white);
}
.booking-submit { height: 48px; align-self: end; width: 100%; justify-content: center; }

/* ============================================================
   FLEET
   ============================================================ */
.fleet { padding: 40px 0 104px; background: var(--off-white); }

.fleet-filters {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 52px;
}
.filter-btn {
  padding: 9px 24px; border-radius: 50px; font-size: .86rem; font-weight: 600;
  color: var(--gray-500); border: 1.5px solid var(--gray-200); background: var(--white);
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: var(--white); box-shadow: var(--shadow-red); }

.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-bottom: 52px; }

/* ── Car Card ─────────────────────────────────────────────── */
.car-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  transition: transform .42s var(--ease), box-shadow .42s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.car-card:hover { transform: translateY(-12px); box-shadow: 0 28px 64px rgba(0,0,0,.14), 0 8px 20px rgba(0,0,0,.08); }
.car-card.hidden { display: none; }

/* ── Image Zone ───────────────────────────────────────────── */
.car-image-zone {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 0;
}

/* Category gradients */
[data-category="economy"] .car-image-zone { background: linear-gradient(155deg, #0f1e3c 0%, #1c3468 60%, #0a1428 100%); }
[data-category="suv"]     .car-image-zone { background: linear-gradient(155deg, #0e2218 0%, #1b3c28 60%, #091810 100%); }
[data-category="premium"] .car-image-zone { background: linear-gradient(155deg, #16101e 0%, #281642 60%, #0e0a16 100%); }
[data-category="van"]     .car-image-zone { background: linear-gradient(155deg, #0d1d2a 0%, #183040 60%, #081420 100%); }

/* Top meta row inside image zone */
.ciz-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.ciz-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.ciz-badge.economy { background: rgba(46,125,50,.25); color: #6ddb74; border: 1px solid rgba(109,219,116,.3); }
.ciz-badge.suv     { background: rgba(21,101,192,.25); color: #7ec8ff; border: 1px solid rgba(126,200,255,.3); }
.ciz-badge.premium { background: rgba(201,168,76,.22); color: #e8c84a; border: 1px solid rgba(232,200,74,.3); }
.ciz-badge.van     { background: rgba(230,81,0,.22);   color: #ffb060; border: 1px solid rgba(255,176,96,.3); }

.ciz-badge.hot { box-shadow: 0 0 12px rgba(227,30,36,.4); color: #ff8080; background: rgba(227,30,36,.25); border-color: rgba(255,128,128,.35); }

.ciz-pax {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.55); font-size: .75rem; font-weight: 500;
}

/* Car visual area */
.ciz-car {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 6px 4px 0;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.45));
  transition: filter .4s var(--ease);
}
.car-card:hover .ciz-car { filter: drop-shadow(0 16px 32px rgba(0,0,0,.55)); }

.ciz-car svg {
  width: 100%; height: auto; max-height: 145px;
  transition: transform .5s var(--ease-bounce);
}
.car-card:hover .ciz-car svg { transform: scale(1.05) translateX(3px); }

/* Real car photos — fill the whole image zone as a backdrop */
.ciz-car:has(img) {
  position: absolute; inset: 0; padding: 0; margin: 0;
  align-items: stretch; justify-content: stretch;
  filter: none;
}
.ciz-car img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 38%;
  transition: transform .5s var(--ease-bounce);
}
.car-card:hover .ciz-car img { transform: scale(1.06); }
.car-image-zone:has(.ciz-car img)::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,12,20,.7) 0%, rgba(8,12,20,.1) 40%, transparent 65%);
}

/* Ground line */
.ciz-ground {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.12) 40%, rgba(255,255,255,.12) 60%, transparent 100%);
  flex-shrink: 0;
  margin: 0 -16px;
}

/* ── Info Zone ────────────────────────────────────────────── */
.car-info-zone {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.car-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.car-model {
  font-family: var(--font-display);
  font-size: 1.18rem; font-weight: 700;
  color: var(--dark); line-height: 1.2;
  letter-spacing: .01em;
}

.car-sub {
  font-size: .72rem; color: var(--gray-400); font-weight: 400;
  margin-top: 2px; letter-spacing: .03em;
}

.car-year-chip {
  flex-shrink: 0;
  padding: 3px 9px; border-radius: 50px;
  font-size: .72rem; font-weight: 700;
  color: var(--red); background: var(--red-glow);
  border: 1px solid rgba(227,30,36,.15);
}

/* Specs row */
.car-specs-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--gray-50);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.cspec {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2px;
  flex: 1; padding: 9px 4px;
  font-size: .7rem; color: var(--gray-500); font-weight: 500;
  line-height: 1.2; text-align: center;
}
.cspec svg { color: var(--red); opacity: .7; margin-bottom: 1px; }
.cspec span { display: block; font-size: .68rem; }

.cspec-div { width: 1px; height: 32px; background: var(--gray-200); flex-shrink: 0; }

/* Quote button */
.btn-quote {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px 16px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white); border-radius: 12px;
  font-size: .88rem; font-weight: 600; letter-spacing: .02em;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-quote::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent);
  opacity: 0; transition: opacity .3s;
}
.btn-quote:hover::before { opacity: 1; }
.btn-quote:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(227,30,36,.38); }
.btn-quote svg { transition: transform .3s; }
.btn-quote:hover svg { transform: translateX(4px); }

.btn-quote-premium {
  background: linear-gradient(135deg, #c9a23a 0%, #8a6a10 100%);
}
.btn-quote-premium:hover { box-shadow: 0 10px 28px rgba(201,162,58,.4); }

.fleet-cta { text-align: center; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us { padding: 104px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  padding: 38px 34px; border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-100); background: var(--white);
  transition: var(--transition); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-200); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 66px; height: 66px; background: var(--red-glow); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: var(--red);
  margin-bottom: 22px; transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--red); color: var(--white); transform: scale(1.08); }
.why-card h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.why-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.7; font-weight: 300; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { padding: 104px 0; background: var(--off-white); }
.steps-container { display: flex; align-items: center; justify-content: center; }
.step {
  flex: 1; max-width: 290px; text-align: center; padding: 44px 26px;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); position: relative; transition: var(--transition);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-number {
  font-size: 4.5rem; font-weight: 900; line-height: 1; margin-bottom: -14px;
  color: rgba(227,30,36,.07); letter-spacing: -.05em;
  font-family: var(--font-serif);
}
.step-icon {
  width: 78px; height: 78px; background: var(--red-glow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
  color: var(--red); transition: var(--transition);
}
.step:hover .step-icon { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.step h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.step p { font-size: .88rem; color: var(--gray-500); line-height: 1.7; font-weight: 300; }
.step-connector { flex: 0 0 88px; color: var(--gray-300); display: flex; align-items: center; justify-content: center; }

/* ============================================================
   BLOG
   ============================================================ */
.blog { padding: 104px 0; background: var(--white); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 52px; }

.blog-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
  transition: transform .38s var(--ease), box-shadow .38s var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.blog-image {
  height: 200px; overflow: hidden; position: relative;
  background: var(--gray-100);
}
.blog-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .5s var(--ease);
}
.blog-card:hover .blog-img-inner { transform: scale(1.06); }
.blog-image svg { width: 100%; height: 100%; object-fit: cover; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.blog-content { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }

.blog-meta {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.blog-cat {
  display: inline-block; padding: 3px 12px; border-radius: 50px;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.blog-cat.guide   { background: #fce4ec; color: var(--red); }
.blog-cat.travel  { background: #e3f2fd; color: #1565c0; }
.blog-cat.tips    { background: #e8f5e9; color: #2e7d32; }

.blog-date { font-size: .78rem; color: var(--gray-400); font-weight: 400; }

.blog-title {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700;
  color: var(--dark); line-height: 1.3; margin-bottom: 10px;
  transition: color .25s;
}
.blog-card:hover .blog-title { color: var(--red); }

.blog-excerpt {
  font-size: .88rem; color: var(--gray-500); line-height: 1.7;
  font-weight: 300; flex: 1; margin-bottom: 20px;
}

.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 600; color: var(--red);
  transition: gap .25s;
}
.blog-card:hover .blog-read-more { gap: 10px; }
.blog-read-more svg { transition: transform .25s; }
.blog-card:hover .blog-read-more svg { transform: translateX(3px); }

.blog-cta { text-align: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 104px 0; background: var(--off-white); overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform .6s var(--ease); padding: 8px 4px; }
.testimonial-card {
  flex: 0 0 calc(33.33% - 16px); background: var(--white);
  border: 1.5px solid var(--gray-100); border-radius: var(--radius-md);
  padding: 36px 32px; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-200); }
.stars { color: #f5a623; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-text {
  font-family: var(--font-serif); font-size: 1.05rem; color: var(--gray-500);
  line-height: 1.75; margin-bottom: 24px; font-style: italic;
}
.review-text::before { content: '\201C'; font-size: 2.2rem; color: var(--red); line-height: 0; vertical-align: -12px; margin-right: 3px; }
.reviewer { display: flex; align-items: center; gap: 13px; }
.reviewer-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .78rem; font-weight: 700; flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .9rem; color: var(--dark); font-weight: 600; }
.reviewer span { font-size: .78rem; color: var(--gray-400); }
.testimonials-nav {
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 44px;
}
.testi-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center; color: var(--gray-700);
  transition: var(--transition);
}
.testi-btn:hover { border-color: var(--red); color: var(--red); background: var(--red-glow); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gray-200);
  transition: var(--transition); cursor: pointer;
}
.testi-dot.active { background: var(--red); width: 26px; border-radius: 4px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 104px 28px;
  background: linear-gradient(140deg, var(--red-dark) 0%, var(--red) 55%, #ff6b35 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -8%;
  width: 620px; height: 620px; background: rgba(255,255,255,.04); border-radius: 50%;
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -40%; left: 4%;
  width: 420px; height: 420px; background: rgba(255,255,255,.04); border-radius: 50%;
}
.cta-content { text-align: center; position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700; color: var(--white); margin-bottom: 16px;
}
.cta-content p { font-size: 1.08rem; color: rgba(255,255,255,.82); margin-bottom: 44px; font-weight: 300; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   CONTACT — MAP + FORM
   ============================================================ */
.contact { padding: 104px 0; background: var(--off-white); }

.contact-main-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start;
}

/* Map column */
.map-col { display: flex; flex-direction: column; gap: 24px; }

.map-wrapper {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md); height: 380px;
  border: 1px solid var(--gray-200);
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact-info-pills {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-pill {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 18px 20px; background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-pill:hover { box-shadow: var(--shadow-md); border-color: var(--gray-200); }
.contact-pill-icon {
  width: 40px; height: 40px; background: var(--red-glow); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0;
}
.contact-pill strong {
  display: block; font-size: .74rem; font-weight: 700; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px;
}
.contact-pill span, .contact-pill a {
  font-size: .88rem; color: var(--dark); font-weight: 500; line-height: 1.4;
}
.contact-pill a:hover { color: var(--red); }

.contact-pill.full-span { grid-column: 1 / -1; }

/* Form column */
.contact-form {
  background: var(--white); border-radius: var(--radius-md);
  padding: 42px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 20px;
}
.contact-form-title {
  font-family: var(--font-serif); font-size: 1.7rem; font-weight: 700;
  color: var(--dark); margin-bottom: 4px;
}
.contact-form-sub { font-size: .88rem; color: var(--gray-400); margin-bottom: 8px; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { align-self: flex-start; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.65); }
.footer-top {
  max-width: 1340px; margin: 0 auto; padding: 76px 28px 52px;
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 88px;
}
.footer-brand .logo-placeholder { margin-bottom: 20px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-img { margin-bottom: 20px; }
.footer-brand p { font-size: .88rem; line-height: 1.75; max-width: 290px; margin-bottom: 26px; font-weight: 300; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px; background: rgba(255,255,255,.07);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); transition: var(--transition);
}
.social-link:hover { background: var(--red); color: var(--white); }

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col h4 {
  font-size: .76rem; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: .86rem; color: rgba(255,255,255,.45);
  padding: 4px 0; transition: color .25s; font-weight: 300;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  max-width: 1340px; margin: 0 auto; padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); font-weight: 300; }
.footer-seo-text { font-size: .72rem !important; color: rgba(255,255,255,.15) !important; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; width: 50px; height: 50px;
  background: var(--red); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-red); z-index: 900;
  opacity: 0; pointer-events: none; transform: translateY(18px);
  transition: opacity .35s, transform .35s var(--ease-bounce);
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-4px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid   { grid-template-columns: repeat(2, 1fr); }
  .blog-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .booking-form { grid-template-columns: repeat(3, 1fr); }
  .booking-form .booking-submit { grid-column: 1 / -1; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 52px; }
}
@media (max-width: 900px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-container { flex-direction: column; }
  .step-connector { transform: rotate(90deg); }
  .testimonial-card { flex: 0 0 82vw; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: var(--nav-h); left: 0; right: 0; background: var(--white);
    padding: 16px; border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md); gap: 0; z-index: 999;
  }
  .nav-links.open .nav-link { padding: 12px 16px; border-radius: 8px; }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 28px; padding: 22px 28px; }
  .stat-divider { display: none; }
  .booking-container { padding: 30px 26px; transform: translateY(-30px); }
  .contact-info-pills { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 92vw; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn-primary,
  .hero-cta .btn-outline { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 28px 22px; }
}
@media print {
  .navbar, .back-to-top, #particles { display: none; }
  .hero { min-height: auto; background: none; color: var(--dark); }
}
