:root {
  --navy: #0f172a;
  --navy-2: #18243a;
  --gold: #c89b3c;
  --gold-light: #f2cf7a;
  --white: #ffffff;
  --soft: #f4f6f8;
  --text: #253047;
  --muted: #677187;
  --border: #dde3ea;
  --shadow: 0 22px 60px rgba(15, 23, 42, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Tajawal", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(15, 23, 42, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.brand-mark {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center; font-size: 26px; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(200,155,60,.25);
}
.brand-text { display: grid; line-height: 1.25; }
.brand-text strong { font-size: 18px; }
.brand-text small { color: #cfd6df; font-size: 12px; margin-top: 3px; }
.main-nav { display: flex; align-items: center; gap: 28px; color: #e9edf3; }
.main-nav a { font-weight: 500; transition: .25s ease; }
.main-nav a:hover { color: var(--gold-light); }
.nav-cta { border: 1px solid rgba(255,255,255,.25); padding: 10px 18px; border-radius: 12px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { width: 27px; height: 2px; background: white; display: block; margin: 6px 0; transition: .25s; }

.hero {
  min-height: 830px;
  padding: 155px 0 90px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(200,155,60,.22), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(76,110,160,.18), transparent 28%),
    linear-gradient(135deg, #0b1221 0%, #111d33 55%, #18243a 100%);
}
.hero::after {
  content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%; left: -180px; bottom: -250px;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.07fr .93fr; align-items: center; gap: 60px; }
.hero-content { color: var(--white); }
.eyebrow, .section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-light); font-weight: 700; font-size: 14px; letter-spacing: .4px;
}
.eyebrow::before, .section-tag::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.hero h1 { font-size: clamp(38px, 5vw, 66px); line-height: 1.25; margin: 22px 0 22px; max-width: 780px; }
.hero p { font-size: 19px; color: #d2d9e5; max-width: 700px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  min-height: 52px; padding: 12px 25px; border-radius: 14px; border: 1px solid transparent;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700; cursor: pointer; transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); box-shadow: 0 14px 30px rgba(200,155,60,.24); }
.btn-outline { color: white; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.05); }
.btn-light { background: white; color: var(--navy); }
.btn-whatsapp { background: #22c55e; color: white; }
.btn.full { width: 100%; }
.hero-points { display: flex; flex-wrap: wrap; gap: 16px 25px; margin-top: 30px; color: #ccd5e2; font-size: 14px; }
.hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.hero-card {
  background: rgba(255,255,255,.96); border-radius: 28px; overflow: hidden;
  box-shadow: 0 35px 90px rgba(0,0,0,.33); transform: rotate(-1.5deg);
}
.car-visual {
  background: linear-gradient(135deg, #eff3f6, #d7dee7);
  aspect-ratio: 700 / 340;
  overflow: hidden;
}
.hero-car-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-card-body { padding: 25px 30px 30px; }
.hero-card-body h2 { margin: 0; color: var(--navy); }
.hero-card-body p { margin: 4px 0 8px; color: var(--muted); font-size: 16px; }
.hero-card-body a { color: #8a651d; font-weight: 700; }

.section { padding: 105px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section h2 { font-size: clamp(31px, 4vw, 48px); line-height: 1.3; margin: 14px 0 18px; color: var(--navy); }
.section p { color: var(--muted); }
.section-tag { color: #997222; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.section-copy > p { font-size: 17px; }
.info-strip { margin-top: 30px; display: grid; gap: 14px; }
.info-strip div { border-right: 3px solid var(--gold); padding: 2px 16px 2px 0; display: grid; }
.info-strip strong { color: var(--navy); }
.info-strip span { color: var(--muted); font-size: 14px; word-break: break-word; }
.about { background: #fff; }
.about-panel {
  background: linear-gradient(145deg, var(--navy), #1d2d48); color: white;
  border-radius: 28px; padding: 48px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.about-panel::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: rgba(200,155,60,.12); left: -70px; bottom: -70px; }
.about-panel h3 { margin: 8px 0 2px; font-size: 24px; }
.about-panel p { color: #cfd7e2; margin: 0; }
.about-panel hr { border: 0; border-top: 1px solid rgba(255,255,255,.14); margin: 30px 0; }
.panel-icon { width: 46px; height: 46px; border-radius: 14px; background: rgba(200,155,60,.17); color: var(--gold-light); display: grid; place-items: center; font-weight: 800; }

.services { background: var(--soft); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: white; padding: 32px; border-radius: 22px; border: 1px solid #e5e9ef; transition: .3s ease; min-height: 240px; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(200,155,60,.4); }
.service-number { color: var(--gold); font-weight: 800; font-size: 14px; }
.service-card h3 { color: var(--navy); font-size: 22px; margin: 20px 0 8px; }
.service-card p { margin: 0; }

.why-us { background: white; }
.visual-frame { min-height: 520px; border-radius: 30px; background: linear-gradient(160deg, #dfe5eb 0%, #f8fafc 100%); position: relative; overflow: hidden; box-shadow: var(--shadow); }
.road { position: absolute; width: 160%; height: 190px; background: #202b3b; transform: rotate(-18deg); left: -30%; top: 44%; box-shadow: inset 0 28px 0 rgba(255,255,255,.035), inset 0 -28px 0 rgba(255,255,255,.035); }
.road::after { content: ""; position: absolute; height: 4px; width: 100%; background: repeating-linear-gradient(90deg, transparent 0 35px, #f4d477 35px 70px); top: 50%; }
.mini-car { position: absolute; z-index: 2; font-size: 110px; left: 34%; top: 39%; filter: drop-shadow(0 20px 14px rgba(0,0,0,.28)); transform: rotate(-18deg); }
.badge { position: absolute; z-index: 3; right: 28px; bottom: 28px; background: white; color: var(--navy); border-radius: 18px; padding: 16px 22px; font-weight: 800; box-shadow: 0 14px 35px rgba(15,23,42,.18); }
.feature-list { display: grid; gap: 22px; margin-top: 30px; }
.feature-item { display: flex; align-items: flex-start; gap: 15px; }
.feature-item > span { flex: 0 0 39px; height: 39px; border-radius: 12px; background: rgba(200,155,60,.14); color: #926b19; display: grid; place-items: center; font-weight: 800; }
.feature-item h3 { margin: 0; color: var(--navy); }
.feature-item p { margin: 3px 0 0; }

.cta-section { padding: 0 0 90px; }
.cta-box { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); border-radius: 28px; padding: 42px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; box-shadow: 0 22px 60px rgba(153,114,34,.22); }
.cta-box span { font-weight: 700; }
.cta-box h2 { margin: 5px 0 0; font-size: clamp(26px, 3vw, 38px); max-width: 720px; line-height: 1.35; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.contact { background: var(--soft); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.contact-cards { display: grid; gap: 14px; margin-top: 30px; }
.contact-card { background: white; border: 1px solid var(--border); border-radius: 18px; padding: 17px; display: flex; align-items: center; gap: 14px; transition: .25s ease; }
.contact-card:hover { transform: translateX(-5px); box-shadow: 0 12px 30px rgba(15,23,42,.08); }
.contact-icon { width: 46px; height: 46px; border-radius: 14px; background: rgba(200,155,60,.14); color: #8b671f; display: grid; place-items: center; font-size: 20px; }
.contact-card div { display: grid; }
.contact-card strong { color: var(--navy); }
.contact-card small { color: var(--muted); word-break: break-word; }
.contact-form { background: white; border-radius: 24px; padding: 34px; box-shadow: var(--shadow); }
.contact-form h3 { margin: 0 0 20px; font-size: 27px; color: var(--navy); }
.contact-form label { display: grid; gap: 7px; margin-bottom: 16px; color: var(--navy); font-weight: 600; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid var(--border); background: #fbfcfd; border-radius: 13px; padding: 13px 15px; outline: none; transition: .2s; color: var(--text); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200,155,60,.12); }
.form-note { font-size: 12px; text-align: center; margin: 10px 0 0; }

.site-footer { background: var(--navy); color: #d7deea; padding: 65px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 50px; }
.footer-brand { margin-bottom: 18px; }
.site-footer h3 { color: white; margin-top: 0; }
.site-footer p { color: #9da9ba; max-width: 460px; }
.site-footer > .container:not(.footer-bottom) > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 20px; text-align: center; }
.footer-bottom p { margin: 0 auto; }

.floating-whatsapp { position: fixed; left: 22px; bottom: 22px; z-index: 999; background: #22c55e; color: white; padding: 13px 18px; border-radius: 999px; font-weight: 800; box-shadow: 0 16px 35px rgba(34,197,94,.35); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 980px) {
  .main-nav { position: fixed; top: 82px; right: 20px; left: 20px; background: #111d33; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 20px; flex-direction: column; align-items: stretch; transform: translateY(-15px); opacity: 0; visibility: hidden; transition: .25s; box-shadow: 0 25px 60px rgba(0,0,0,.3); }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 8px 4px; }
  .nav-cta { text-align: center; }
  .menu-toggle { display: block; }
  .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 135px; }
  .hero-card { max-width: 650px; margin: auto; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .reverse-mobile .why-visual { order: 2; }
  .reverse-mobile .section-copy { order: 1; }
  .cta-box { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 26px, 1180px); }
  .nav-wrap { min-height: 74px; }
  .main-nav { top: 75px; right: 13px; left: 13px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-text strong { font-size: 16px; }
  .brand-text small { font-size: 10px; }
  .hero { min-height: auto; padding: 120px 0 70px; }
  .hero h1 { font-size: 39px; }
  .hero p { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .hero-points { display: grid; }
  .hero-card { transform: none; }
  .section { padding: 78px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .about-panel { padding: 32px 24px; }
  .visual-frame { min-height: 400px; }
  .mini-car { font-size: 82px; left: 26%; top: 40%; }
  .cta-section { padding-bottom: 65px; }
  .cta-box { padding: 30px 24px; }
  .cta-actions, .cta-actions .btn { width: 100%; }
  .contact-form { padding: 25px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .floating-whatsapp { left: 14px; bottom: 14px; padding: 11px 15px; font-size: 14px; }
}
