:root {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --gold: #c6a243;
  --gold-dark: #a8872f;
  --dark: #161616;
  --dark-2: #242424;
  --line: #e5e7eb;
  --soft: #f8f6f1;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 90px 0; }
.section-soft { background: var(--soft); }
.section-dark {
  background: linear-gradient(135deg, #101010 0%, #232323 55%, #3c3116 100%);
  color: var(--white);
}
.section-heading h2,
.hero h1,
.contact-info h2,
.cta-wrap h2 {
  font-family: 'Cinzel', serif;
}
.section-heading { margin-bottom: 36px; }
.section-heading.center { max-width: 760px; text-align: center; margin: 0 auto 36px; }
.section-heading.light p,
.section-heading.light .mini-title { color: rgba(255,255,255,0.85); }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 8px 0 12px; line-height: 1.2; }
.section-heading p { color: var(--muted); margin: 0; }
.mini-title {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 8px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198,162,67,0.16);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo, .footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  padding: 4px;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-weight: 800; font-size: 1.15rem; color: var(--white); }
.footer-name { color: var(--white); }
.brand-tag { font-size: 12px; color: #b5b5b5; }
.main-nav { display: flex; align-items: center; gap: 24px; color: #ededed; }
.main-nav a:hover { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 16px;
  padding: 13px 20px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}
.btn-gold { background: var(--gold); color: #111; }
.btn-gold:hover { background: #d7b24d; transform: translateY(-1px); }
.btn-outline { border-color: rgba(198,162,67,0.35); color: var(--gold); }
.btn-outline:hover { border-color: var(--gold); color: #f4d06f; }
.btn-dark { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.12); }
.btn-dark:hover { border-color: var(--gold); color: #fff1c3; }
.btn-black { background: var(--dark); color: var(--white); }
.btn-black:hover { background: var(--gold-dark); }
.btn-whatsapp { background: #1fa855; color: #fff; margin-top: 24px; }
.btn-whatsapp:hover { background: #188646; }
.btn-outline-dark { border-color: #cfd4dc; color: #1f2937; }
.btn-outline-dark:hover { border-color: #1fa855; color: #1fa855; }
.btn-light { background: #fff; color: var(--dark); }
.btn-light:hover { background: #f3f4f6; }
.btn-darkline { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.24); }
.btn-darkline:hover { background: rgba(255,255,255,0.16); }
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #111111 0%, #202020 55%, #3c3014 100%);
  color: var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 72px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.3;
}
.hero-glow-left { width: 300px; height: 300px; background: #e3ba4d; top: -40px; left: -60px; }
.hero-glow-right { width: 360px; height: 360px; background: #8a6c21; bottom: -80px; right: -60px; }
.eyebrow {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(198,162,67,0.35);
  background: rgba(255,255,255,0.06);
  color: #f2d388;
  font-size: 13px;
  font-weight: 700;
}
.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.1;
}
.hero h1 span { color: #f2cc65; }
.hero p { max-width: 650px; color: #d1d5db; font-size: 1.05rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.stat-card {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 18px;
}
.stat-card strong { display: block; color: #f1cb68; font-size: 1.45rem; }
.stat-card span { color: #d1d5db; font-size: 0.93rem; }
.hero-visual { position: relative; }
.hero-image {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.14);
}
.floating-card {
  position: absolute;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(17,17,17,0.78);
  color: white;
  border: 1px solid rgba(198,162,67,0.22);
  box-shadow: var(--shadow);
}
.floating-card strong { display: block; color: #f0ca66; }
.floating-card span { display: block; color: #d1d5db; font-size: 0.86rem; }
.top-card { top: 22px; left: -18px; }
.bottom-card { right: 18px; bottom: 18px; }
.trust-strip { background: #141414; color: white; border-top: 1px solid rgba(198,162,67,0.14); border-bottom: 1px solid rgba(198,162,67,0.14); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 24px 0; }
.trust-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; padding: 22px; }
.trust-card h3 { margin: 0 0 6px; color: #f0ca66; }
.trust-card p { margin: 0; color: #d1d5db; }
.fleet-grid, .services-grid, .review-grid { display: grid; gap: 24px; }
.fleet-grid { grid-template-columns: repeat(4, 1fr); }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.review-grid { grid-template-columns: repeat(3, 1fr); }
.fleet-card, .service-card, .review-card, .price-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(198,162,67,0.18);
}
.fleet-card img { width: 100%; height: 230px; object-fit: cover; }
.fleet-body { padding: 22px; }
.fleet-body h3, .service-card h3, .price-card h3 { margin: 0; }
.fleet-type { color: var(--gold-dark); font-weight: 700; margin: 6px 0 16px; }
.fleet-body ul, .price-card ul { padding-left: 18px; margin: 0 0 22px; color: var(--muted); }
.service-card { padding: 28px; }
.service-card h3 { color: var(--dark); margin-bottom: 8px; }
.service-card p { color: var(--muted); margin: 0; }
.why-grid, .routes-grid, .faq-grid, .contact-grid { display: grid; gap: 40px; }
.why-grid { grid-template-columns: 1fr 1fr; align-items: center; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.feature-list div {
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid #ede6d3;
  padding: 15px 16px;
  font-weight: 600;
}
.why-image-wrap { overflow: hidden; border-radius: 32px; box-shadow: var(--shadow); }
.why-image { width: 100%; min-height: 440px; object-fit: cover; }
.routes-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
.route-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.route-list div {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  padding: 15px 16px;
}
.pricing-stack { display: grid; gap: 18px; }
.price-card { padding: 24px; }
.price-card span { display: block; color: var(--gold-dark); font-weight: 700; margin-top: 4px; }
.stars { color: #d4af37; font-size: 1.15rem; margin-bottom: 10px; }
.review-card { padding: 26px; }
.review-card p { color: var(--muted); }
.review-card strong { display: block; margin-top: 14px; }
.review-card span { color: var(--muted); font-size: 0.95rem; }
.faq-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
.faq-list { display: grid; gap: 14px; }
.faq-list details {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 18px 20px;
}
.faq-list summary { cursor: pointer; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 12px 0 0; color: var(--muted); }
.contact-grid { grid-template-columns: 0.94fr 1.06fr; }
.contact-info {
  background: linear-gradient(135deg, #111111 0%, #1f1f1f 70%, #413310 100%);
  color: white;
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.contact-info h2 { margin: 8px 0 12px; font-size: clamp(2rem, 4vw, 3rem); }
.contact-info p { color: #d1d5db; }
.contact-list { display: grid; gap: 18px; margin-top: 28px; }
.contact-list div { display: grid; gap: 4px; }
.contact-list strong { color: #f0ca66; }
.booking-form {
  background: white;
  border-radius: 32px;
  border: 1px solid rgba(198,162,67,0.2);
  box-shadow: var(--shadow);
  padding: 30px;
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d7dbe2;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: white;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(198,162,67,0.12); }
textarea { min-height: 130px; resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.form-note { color: var(--muted); font-size: 0.92rem; margin-top: 12px; }
.cta-band { padding: 0 0 90px; }
.cta-wrap {
  background: linear-gradient(135deg, #111111 0%, #242424 55%, #c6a243 100%);
  color: white;
  border-radius: 36px;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow);
}
.cta-wrap p:last-child { color: #ececec; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.site-footer { background: #111111; color: #d1d5db; border-top: 1px solid rgba(198,162,67,0.14); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.8fr 0.9fr; gap: 30px; padding: 56px 0; }
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-copy { color: #a8a8a8; max-width: 680px; }
.site-footer h4 { color: white; margin-top: 0; }
.site-footer a, .site-footer p { display: block; margin: 8px 0; color: #c9c9c9; }
.site-footer a:hover { color: #f0ca66; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-wrap { display: flex; justify-content: space-between; gap: 18px; padding: 18px 0; color: #8b8b8b; font-size: 0.94rem; }
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.floating-whatsapp:hover { background: #e0bb59; }
@media (max-width: 1100px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .why-grid, .routes-grid, .faq-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-wrap { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 860px) {
  .main-nav, .nav-actions { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: #141414;
    border: 1px solid rgba(198,162,67,0.18);
    padding: 16px;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .hero-image { min-height: 360px; }
  .stats, .trust-grid, .route-list, .feature-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero-grid { padding-top: 48px; padding-bottom: 54px; }
  .fleet-grid, .services-grid, .review-grid, .form-row { grid-template-columns: 1fr; }
  .booking-form, .contact-info, .cta-wrap { padding: 24px; }
  .brand-name { font-size: 1rem; }
  .brand-tag { font-size: 11px; }
  .floating-card { display: none; }
  .footer-bottom-wrap { flex-direction: column; }
}
