/* ════════════════════════════════════
   ONDREJ TRANSPORT KFT. – style.css
   ════════════════════════════════════ */

/* ── Variables ── */
:root {
  --gold: #4fc3f7;
  --gold-light: #b3e5fc;
  --dark: #080b12;
  --dark-2: #0d1120;
  --dark-3: #121829;
  --dark-4: #192035;
  --border: rgba(79,195,247,.16);
  --text: #d8e3f0;
  --text-muted: #6b7fa0;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(0,0,0,.65);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --accent: #4fc3f7;
  --accent-dark: #0288d1;
  --accent-glow: rgba(79,195,247,.25);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background-image: radial-gradient(ellipse at 80% 0%, rgba(13,17,32,1) 0%, rgba(8,11,18,1) 100%);
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: #4fc3f7; border-radius: 99px; }

/* ════ NAVBAR ════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 clamp(1rem,4vw,3rem);
  transition: background var(--transition), box-shadow var(--transition);
  /* Always have a bg on mobile so menu overlay sits below navbar */
}
.navbar.scrolled {
  background: rgba(10,11,14,.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: .65rem;
  white-space: nowrap; flex-shrink: 0;
}
.logo-img {
  width: 44px; height: 44px; object-fit: contain;
  flex-shrink: 0;
}
.logo-img-sm { width: 30px; height: 30px; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { color: var(--white); font-weight: 800; font-size: .95rem; letter-spacing: .5px; }
.logo-sub { color: #4fc3f7; font-weight: 700; font-size: .72rem; letter-spacing: 2px; }
.nav-links {
  display: flex; gap: 1.5rem; margin-left: auto;
}
.nav-links a {
  font-size: .88rem; font-weight: 500; color: var(--text-muted);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content:''; position: absolute; bottom:-4px; left:0; right:0; height:2px;
  background: #4fc3f7; border-radius:99px;
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right {
  display: flex; align-items: center; gap: .75rem; flex-shrink: 0;
}
/* Language Switcher */
.lang-switcher {
  display: flex; gap: .2rem;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  border-radius: 99px; padding: .2rem;
}
.lang-btn {
  padding: .3rem .65rem; border-radius: 99px;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: .75rem; font-weight: 700;
  font-family: 'Outfit', sans-serif;
  transition: background var(--transition), color var(--transition);
}
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,.08); }
.lang-btn.active {
  background: linear-gradient(135deg, #4fc3f7, #b3e5fc);
  color: var(--dark);
}
.btn-nav {
  padding: .5rem 1.2rem; border-radius: 99px;
  background: #4fc3f7; color: var(--dark);
  font-weight: 700; font-size: .85rem;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-nav:hover { background: #b3e5fc; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 99px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--white);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--white);
}
html.nav-open, body.nav-open {
  overflow: hidden;
  height: 100vh;
}

/* ════ HERO ════ */
.hero {
  position: relative; height: 100vh; min-height: 650px;
  display: flex; align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 70% 10%, #0d1a2e 0%, #080b12 75%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-grid {
  position: absolute;
  inset: -100px;
  background-image: 
    linear-gradient(rgba(79, 195, 247, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 195, 247, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(600px) rotateX(65deg) translateY(-80px) translateZ(-40px);
  mask-image: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  opacity: 0.75;
  animation: grid-move 28s linear infinite;
}
@keyframes grid-move {
  0% { background-position: 0 0; }
  100% { background-position: 0 1000px; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, transparent 20%, #0a0b0e 95%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(1rem,4vw,3rem);
  padding-top: 50px;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}
.hero-3d-car-platform {
  position: relative;
  width: 100%;
  max-width: 520px;
  perspective: 1200px;
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(12deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-3d-car-platform:hover {
  transform: rotateY(-5deg) rotateX(6deg) translateY(-5px);
}
.hero-3d-car-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translateZ(50px);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 35px rgba(79, 195, 247, 0.12));
  animation: carFloat 4.5s ease-in-out infinite alternate;
  border-radius: 20px;
}
.platform-base {
  position: absolute;
  bottom: -20px;
  width: 90%;
  height: 50px;
  background: radial-gradient(ellipse at 50% 50%, rgba(79, 195, 247, 0.25) 0%, transparent 70%);
  transform: rotateX(85deg) translateZ(-20px);
  pointer-events: none;
  animation: platformPulse 4.5s ease-in-out infinite alternate;
}
.platform-glow {
  position: absolute;
  bottom: -30px;
  width: 80%;
  height: 25px;
  background: rgba(79, 195, 247, 0.08);
  filter: blur(18px);
  transform: rotateX(85deg) translateZ(-30px);
  pointer-events: none;
}
@keyframes carFloat {
  0% { transform: translateZ(50px) translateY(0px) rotateY(-2deg); }
  100% { transform: translateZ(50px) translateY(-14px) rotateY(2deg); }
}
@keyframes platformPulse {
  0% { transform: rotateX(85deg) translateZ(-20px) scale(0.85); opacity: 0.45; }
  100% { transform: rotateX(85deg) translateZ(-20px) scale(1.05); opacity: 0.85; }
}
.hero-3d-badge {
  position: absolute;
  bottom: 0px;
  left: 30px;
  background: rgba(8, 11, 18, 0.85);
  border: 1px solid var(--border);
  padding: 0.4rem 0.8rem;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.pulse-dot {
  width: 6px;
  height: 6px;
  background: #4fc3f7;
  border-radius: 50%;
  animation: badge-pulse 1.5s infinite;
}
@keyframes badge-pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1.1rem; border-radius: 99px;
  border: 1px solid var(--border);
  background: rgba(79,195,247,.1);
  color: #b3e5fc;
  font-size: .85rem; font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeDown .7s ease both;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white);
  animation: fadeDown .7s .1s ease both;
}
.gradient-text {
  background: linear-gradient(90deg, #4fc3f7, #b3e5fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  margin-top: 1.2rem; max-width: 560px;
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--text-muted); line-height: 1.7;
  animation: fadeDown .7s .2s ease both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem;
  animation: fadeDown .7s .3s ease both;
}
.btn-primary {
  padding: .85rem 2.2rem; border-radius: 99px;
  background: linear-gradient(135deg, #4fc3f7, #b3e5fc);
  color: var(--dark); font-weight: 800; font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(79,195,247,.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(79,195,247,.5); }
.btn-outline {
  padding: .85rem 2.2rem; border-radius: 99px;
  border: 2px solid rgba(79,195,247,.5);
  color: #b3e5fc; font-weight: 700; font-size: 1rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-outline:hover { border-color: #4fc3f7; background: rgba(79,195,247,.08); transform: translateY(-3px); }
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  margin-top: 3rem;
  animation: fadeDown .7s .4s ease both;
}
.stat { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 900; color: #4fc3f7; }
.stat-label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--text-muted); font-size: .8rem;
  animation: fadeDown .7s .6s ease both;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid #4fc3f7;
  border-bottom: 2px solid #4fc3f7;
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}

/* ════ SECTIONS ════ */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-dark { background: var(--dark-2); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1rem,4vw,3rem); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-block; padding: .35rem 1rem; border-radius: 99px;
  background: rgba(79,195,247,.12); border: 1px solid var(--border);
  color: #4fc3f7; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--white); margin-bottom: .75rem;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; }

/* ════ FLEET ════ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.car-card {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.car-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(79,195,247,.4); }
.car-img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.car-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.car-card:hover .car-img { transform: scale(1.06); }
.car-badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: .3rem .9rem; border-radius: 99px;
  background: linear-gradient(135deg, #4fc3f7, #b3e5fc);
  color: var(--dark); font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px;
}
.badge-gold { background: linear-gradient(135deg, #b8860b, #daa520); }
.badge-blue { background: linear-gradient(135deg, #1e6fa8, #3ca0e0); color: #fff; }
.car-info { padding: 1.5rem; }
.car-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.car-name { font-size: 1.2rem; font-weight: 800; color: var(--white); }
.car-type { font-size: .85rem; color: var(--text-muted); margin-top: .2rem; }
.car-price { text-align: right; }
.price-from { display: block; font-size: .72rem; color: var(--text-muted); }
.price-val { font-size: 1.1rem; font-weight: 800; color: #4fc3f7; }
.car-features { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem; }
.feature {
  padding: .3rem .75rem; border-radius: 99px;
  background: var(--dark-4); border: 1px solid var(--border);
  font-size: .78rem; color: var(--text-muted);
}
.btn-card {
  display: block; text-align: center;
  padding: .75rem; border-radius: 10px;
  background: rgba(79,195,247,.12); border: 1px solid var(--border);
  color: #4fc3f7; font-weight: 700; font-size: .9rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-card:hover { background: rgba(79,195,247,.22); transform: translateY(-1px); }

/* ════ SERVICES ════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.75rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(79,195,247,.4); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.service-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ════ BOOKING ════ */
.booking-wrapper {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem;
  align-items: start;
}
.booking-info h3 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 1.75rem; }
.benefits { display: flex; flex-direction: column; gap: 1.25rem; }
.benefits li { display: flex; gap: 1rem; }
.benefit-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.benefits strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: .2rem; }
.benefits p { color: var(--text-muted); font-size: .85rem; }

.booking-form {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-4); border: 1px solid var(--border);
  border-radius: 10px; padding: .75rem 1rem;
  color: var(--white); font-family: 'Outfit', sans-serif; font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4fc3f7;
  box-shadow: 0 0 0 3px rgba(79,195,247,.15);
}
.form-group select option { background: var(--dark-3); color: var(--white); }
.form-group textarea { resize: vertical; }

.form-price {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem; border-radius: 10px;
  background: rgba(79,195,247,.08); border: 1px solid var(--border);
}
.price-label { font-size: .9rem; color: var(--text-muted); font-weight: 600; }
.price-amount { font-size: 1.5rem; font-weight: 900; color: #4fc3f7; }

.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  padding: 1rem; border-radius: 12px;
  background: linear-gradient(135deg, #4fc3f7, #b3e5fc);
  color: var(--dark); font-weight: 800; font-size: 1.05rem;
  border: none; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(79,195,247,.35);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(79,195,247,.5); }
.btn-submit.loading { opacity: .7; pointer-events: none; }
.btn-icon { font-size: 1.2rem; transition: transform var(--transition); }
.btn-submit:hover .btn-icon { transform: translateX(4px); }
.form-note { font-size: .78rem; color: var(--text-muted); text-align: center; }

/* ════ MODAL ════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: 20px; padding: 3rem 2.5rem; text-align: center;
  max-width: 420px; width: 90%;
  transform: scale(.9); transition: transform .3s ease;
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.modal h3 { font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: .75rem; }
.modal p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.75rem; }
.modal strong { color: #4fc3f7; }
.btn-modal-close {
  padding: .75rem 2.5rem; border-radius: 99px;
  background: linear-gradient(135deg, #4fc3f7, #b3e5fc);
  color: var(--dark); font-weight: 800; border: none; cursor: pointer;
  font-size: 1rem; transition: transform var(--transition);
}
.btn-modal-close:hover { transform: scale(1.04); }

/* ════ TESTIMONIALS ════ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}
.testimonial-card {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: transform var(--transition), border-color var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(79,195,247,.35); }
.stars { color: #4fc3f7; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card > p { color: var(--text-muted); font-size: .92rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: .9rem; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #4fc3f7, #b3e5fc);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem; color: var(--dark); flex-shrink: 0;
}
.reviewer strong { display: block; color: var(--white); font-size: .9rem; }
.reviewer span { font-size: .78rem; color: var(--text-muted); }

/* ════ CONTACT ════ */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem;
}
.contact-card {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  text-align: center; display: flex; flex-direction: column; gap: .5rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-6px); border-color: rgba(79,195,247,.4); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.contact-icon { font-size: 2.2rem; margin-bottom: .5rem; }
.contact-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); }
.contact-card p { color: #b3e5fc; font-weight: 600; font-size: .95rem; }
.contact-note { font-size: .78rem; color: var(--text-muted); }

/* ════ FOOTER ════ */
.footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-top {
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(1rem,4vw,3rem);
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { color: var(--text-muted); font-size: .9rem; margin-top: 1rem; max-width: 280px; line-height: 1.6; }
.footer-links h5 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-links a { display: block; color: var(--text-muted); font-size: .87rem; margin-bottom: .65rem; transition: color var(--transition); }
.footer-links a:hover { color: #4fc3f7; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 1.5rem clamp(1rem,4vw,3rem) 0;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--text-muted); font-size: .82rem; }
.footer-socials { display: flex; gap: .75rem; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--dark-4); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.footer-socials a:hover { background: #4fc3f7; color: var(--dark); border-color: #4fc3f7; }

/* ════ PRICE BANNER ════ */
.price-banner {
  background: linear-gradient(135deg, rgba(79,195,247,.12), rgba(79,195,247,.06));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.price-banner-inner {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.price-banner-icon { font-size: 1.5rem; flex-shrink: 0; }
.price-banner-inner p { flex: 1; font-size: .92rem; color: var(--text-muted); }
.price-banner-inner strong { color: #4fc3f7; }
.btn-banner {
  padding: .55rem 1.4rem; border-radius: 99px;
  background: linear-gradient(135deg, #4fc3f7, #b3e5fc);
  color: var(--dark); font-weight: 800; font-size: .88rem;
  white-space: nowrap; flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-banner:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(79,195,247,.4); }

/* ════ STEPS ════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem;
}
.step-card {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.75rem; text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(79,195,247,.35); }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, #4fc3f7, #b3e5fc);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; color: var(--dark);
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.step-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ════ FLEET EMPTY ════ */
.fleet-empty {
  text-align: center; padding: 5rem 2rem;
  color: var(--text-muted);
}
.fleet-empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.fleet-empty h3 { color: var(--white); font-size: 1.3rem; margin-bottom: .5rem; }
.fleet-empty p { margin-bottom: 1.5rem; }
.car-img-placeholder {
  aspect-ratio: 16/10; background: var(--dark-4);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--text-muted); width: 100%;
}
.car-desc-short {
  font-size: .85rem; color: var(--text-muted);
  line-height: 1.5; margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* ════ BOOKING EXTRAS ════ */
.booking-contact-box {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: .5rem;
}
.booking-contact-box p { font-size: .85rem; color: var(--text-muted); margin-bottom: .5rem; }
.form-notice {
  display: flex; align-items: flex-start; gap: .75rem;
  background: rgba(79,195,247,.07); border: 1px solid var(--border);
  border-radius: 10px; padding: .9rem 1.1rem;
}
.form-notice span { font-size: 1.2rem; flex-shrink: 0; }
.form-notice p { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }

/* ════ FOOTER ADMIN LINK ════ */
.admin-link {
  font-size: .78rem; color: var(--text-muted);
  transition: color var(--transition);
}
.admin-link:hover { color: #4fc3f7; }

/* ════ ANIMATIONS ════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}
.reveal {
  opacity: 0;
  transform: translateY(45px) scale(0.97);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ════ RESPONSIVE ════ */
@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-left {
    align-items: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-3d-card {
    transform: rotateY(-10deg) rotateX(8deg) scale(0.95);
  }
  .booking-wrapper { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  /* Hide desktop nav elements */
  #nav-links-desktop, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .lang-switcher { display: none; }

  /* Navbar always solid on mobile */
  .navbar {
    background: rgba(10,11,14,.97);
  }

  /* Mobile menu overlay – lives OUTSIDE navbar so no stacking context issues */
  .mobile-menu-overlay {
    display: none;
  }
  .mobile-menu-overlay.open {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10,11,14,.98);
    align-items: center;
    justify-content: center;
    overflow-y: auto;
  }
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-nav-links a {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color var(--transition);
    letter-spacing: .5px;
  }
  .mobile-nav-links a:hover { color: #4fc3f7; }

  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.2rem; }
  .stat-number { font-size: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .price-banner-inner { flex-direction: column; text-align: center; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Desktop: hide mobile overlay */
@media (min-width: 641px) {
  .mobile-menu-overlay { display: none !important; }
  .nav-links { display: flex; }
}

/* ════ REVIEWS GRID ════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

/* ════ WRITE REVIEW FORM ════ */
.write-review-wrap {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
  max-width: 680px; margin: 0 auto;
}
.write-review-title {
  font-size: 1.4rem; font-weight: 800; color: var(--white);
  margin-bottom: 1.75rem; text-align: center;
}

/* ════ STAR RATING ════ */
.star-rating {
  display: flex; gap: .2rem; cursor: pointer;
  margin-top: .35rem;
}
.star {
  font-size: 2rem; color: var(--border);
  transition: color var(--transition), transform var(--transition);
  user-select: none;
}
.star.active, .star.hover { color: #4fc3f7; transform: scale(1.15); }

/* ════ INTERACTIVE CAR TOUR ════ */
.interactive-tour-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
  background: #060709;
  border-radius: 12px 12px 0 0;
}

.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.5s ease-in-out;
}

/* Hotspots styling */
.tour-hotspot {
  position: absolute;
  width: 36px;
  height: 36px;
  background: #4fc3f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border: 2px solid var(--white);
  box-shadow: 0 0 20px rgba(79, 195, 247, 0.8);
  animation: hotspot-pulse 2s infinite;
  transition: transform var(--transition), opacity 0.3s ease;
  user-select: none;
}

.tour-hotspot:hover {
  transform: scale(1.25);
  background: #b3e5fc;
}

.tour-hotspot::after {
  content: '🔍';
  font-size: 14px;
}

.tour-hotspot-label {
  position: absolute;
  background: rgba(10, 11, 14, 0.95);
  border: 1px solid #4fc3f7;
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Position label above hotspot */
.tour-hotspot:hover .tour-hotspot-label {
  opacity: 1;
  transform: translateY(-38px);
}

@keyframes hotspot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 195, 247, 0.8);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(79, 195, 247, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 195, 247, 0);
  }
}

/* Tour navigation bar controls */
.tour-controls {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.65rem 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
}

.tour-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.tour-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.tour-btn.active {
  background: #4fc3f7;
  color: var(--dark);
  border-color: #4fc3f7;
  box-shadow: 0 2px 10px rgba(79, 195, 247, 0.3);
}

/* Transition Zoom-in animation */
.tour-img.zoomed {
  transform: scale(2.2);
  opacity: 0.1;
}

.tour-img.zoomed-interior {
  transform: scale(2.5);
  opacity: 0.1;
}

/* ════ SOCIAL MEDIA SECTION ════ */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .social-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.social-card {
  position: relative;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all var(--transition);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(79, 195, 247, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}

.social-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 195, 247, 0.4);
  box-shadow: var(--shadow);
}

.social-card:hover::before {
  opacity: 1;
}

.social-card.facebook:hover {
  border-color: rgba(24, 119, 242, 0.4);
}

.social-card.instagram:hover {
  border-color: rgba(225, 48, 108, 0.4);
}

.social-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
  flex-shrink: 0;
}

.social-card.facebook .social-icon-wrapper {
  color: #1877f2;
}

.social-card.instagram .social-icon-wrapper {
  color: #e1306c;
}

.social-card:hover .social-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.1);
  border-color: currentColor;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.social-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--white);
  transition: color var(--transition);
}

.social-card.facebook:hover .social-info h4 {
  color: #1877f2;
}

.social-card.instagram:hover .social-info h4 {
  color: #e1306c;
}

.social-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.social-link-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}

.social-link-label span {
  transition: transform var(--transition);
}

.social-card:hover .social-link-label span {
  transform: translateX(5px);
}

/* ════ FLOATING WHATSAPP BUTTON ════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition);
  z-index: 1000;
  cursor: pointer;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ════ LOAD MORE REVIEWS BUTTON ════ */
#btn-load-reviews {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2.2rem;
  border-radius: 99px;
  transition: all var(--transition);
  box-shadow: 0 0 15px rgba(79, 195, 247, 0.1);
  display: inline-block;
}

#btn-load-reviews:hover {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 0 25px rgba(79, 195, 247, 0.4);
  transform: translateY(-3px);
}


