/* ============ ROYAL GARAGE DUBAI — CALL-ONLY LANDING PAGE ============ */

:root{
  --bg: #0a0a0d;
  --bg-alt: #111114;
  --surface: #16161a;
  --border: rgba(255,255,255,0.08);
  --text: #f2f0ea;
  --text-dim: #a8a6a1;
  --gold: #c9a24b;
  --gold-light: #e6c878;
  --call: #ff5a1f;
  --call-light: #ff7a45;
  --whatsapp: #25D366;
  --whatsapp-dark: #1ebe57;
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
  --maxw: 1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{
  font-family: Georgia, "Times New Roman", serif;
  font-weight:700;
  letter-spacing:-0.01em;
  margin:0 0 .5em;
}
.why-section,
.services-section{
  font-family:"Inter", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
}
.why-section h1,
.why-section h2,
.why-section h3,
.services-section h1,
.services-section h2,
.services-section h3{
  font-family:"Inter", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
}
p{margin:0 0 1em; color:var(--text-dim);}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{padding-left:1.1em;margin:0 0 1em;}
.section{
  max-width:var(--maxw);
  margin:0 auto;
  padding: 88px 24px;
}
.eyebrow{
  display:inline-block;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12.5px;
  color:var(--gold);
  font-weight:600;
  margin-bottom:14px;
}
.section-head{
  text-align:center;
  max-width:680px;
  margin:0 auto 56px;
}
.section-head h2{font-size:clamp(26px,3.4vw,40px);}
.section-head p{font-size:16.5px;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 30px;
  border-radius:999px;
  font-weight:700;
  font-size:16px;
  cursor:pointer;
  border:none;
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
  white-space:nowrap;
}
.btn:active{transform:scale(0.97);}
.btn-primary{
  background:linear-gradient(135deg, var(--call-light), var(--call));
  color:#fff;
  box-shadow:0 10px 30px rgba(255,90,31,0.35);
}
.btn-primary:hover{filter:brightness(1.08); box-shadow:0 14px 36px rgba(255,90,31,0.5); transform:translateY(-2px);}
.btn-whatsapp{
  background:linear-gradient(135deg, #2fe073, var(--whatsapp-dark));
  color:#062b13;
  box-shadow:0 10px 30px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover{filter:brightness(1.08); transform:translateY(-2px);}
.btn-lg{padding:19px 38px; font-size:17.5px;}
.btn-card{
  width:100%;
  background:transparent;
  border:1.5px solid var(--gold);
  color:var(--gold-light);
  padding:13px 20px;
  font-size:15px;
}
.btn-card:hover{background:var(--gold); color:#181205;}
.cta-row{display:flex; gap:16px; flex-wrap:wrap;}
.center-cta{text-align:center; margin-top:48px;}
.urgency-line{color:var(--gold-light); font-weight:600; margin-bottom:18px;}

/* ---------- Reveal animation ---------- */
.reveal{opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in-view{opacity:1; transform:translateY(0);}

/* ---------- Sticky Call/WhatsApp Bar ---------- */
.sticky-cta{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:999;
  display:flex;
  gap:2px;
  background:rgba(10,10,13,0.6);
  backdrop-filter:blur(10px);
  border-top:1px solid var(--border);
  transform:translateY(0);
  transition:transform .3s ease;
}
.sticky-btn{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:16px 10px;
  font-weight:700;
  font-size:15.5px;
  position:relative;
}
.sticky-call{background:linear-gradient(135deg, var(--call-light), var(--call)); color:#fff;}
.sticky-whatsapp{background:linear-gradient(135deg, #2fe073, var(--whatsapp-dark)); color:#062b13;}
.pulse-ring{
  position:absolute; left:16px;
  width:10px; height:10px; border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 0 rgba(255,255,255,0.6);
  animation:pulse 1.8s infinite;
  display:none;
}
@media (min-width:640px){ .pulse-ring{display:block;} }
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(255,255,255,0.6);}
  70%{box-shadow:0 0 0 14px rgba(255,255,255,0);}
  100%{box-shadow:0 0 0 0 rgba(255,255,255,0);}
}
@media (min-width:900px){
  .sticky-cta{ max-width:420px; left:auto; right:24px; bottom:24px; border-radius:999px; overflow:hidden; border:1px solid var(--border); box-shadow:var(--shadow);}
}

/* ---------- Brand header (logo only, no nav) ---------- */
.brand-header{
  position:absolute;
  top:20px;
  left:0; right:0;
  z-index:2;
  display:flex;
  justify-content:center;
}
.brand-logo{height:34px; width:auto;}
@media (min-width:720px){
  .brand-header{top:32px;}
  .brand-logo{height:46px;}
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding:120px 24px 100px;
}
.hero-bg{position:absolute; inset:0; z-index:0;}
.hero-img{width:100%; height:100%; object-fit:cover; opacity:.55; filter:saturate(1.05);}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,10,13,0.55) 0%, rgba(10,10,13,0.85) 60%, var(--bg) 100%);
}
.glow{position:absolute; border-radius:50%; filter:blur(90px); opacity:.35; animation:float 9s ease-in-out infinite;}
.glow-1{width:420px; height:420px; background:var(--gold); top:-100px; left:-100px;}
.glow-2{width:360px; height:360px; background:var(--call); bottom:-120px; right:-80px; animation-delay:2s;}
@keyframes float{
  0%,100%{transform:translateY(0) translateX(0);}
  50%{transform:translateY(-30px) translateX(20px);}
}
.hero-content{position:relative; z-index:1; max-width:760px; margin:0 auto; text-align:center;}
.hero-text{width:100%;}
.badge-row{display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:26px;}
.chip{
  background:rgba(255,255,255,0.06);
  border:1px solid var(--border);
  padding:8px 16px;
  border-radius:999px;
  font-size:13.5px;
  font-weight:600;
  color:var(--text);
}
.hero h1{font-size:clamp(30px,5vw,54px); line-height:1.15;}
.hero .accent{color:var(--gold-light);}
.hero-sub{font-size:18px; max-width:600px; margin:0 auto 34px; color:#d8d6d0;}
.hero .cta-row{justify-content:center;}
.micro-trust{margin-top:20px; font-size:13.5px; color:var(--text-dim);}

/* ---------- Hero split layout (desktop): text left, image gallery right ---------- */
.hero-gallery{display:none;}
@media (min-width:980px){
  .hero-content{
    max-width:1220px;
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    align-items:center;
    gap:64px;
    text-align:left;
  }
  .hero .badge-row{justify-content:flex-start;}
  .hero .cta-row{justify-content:flex-start;}
  .hero-sub{margin:0 0 34px;}
  .hero .micro-trust{text-align:left;}
  .hero-img{opacity:.30;}

  .hero-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    position:relative;
  }
  .hero-gallery::before{
    content:"";
    position:absolute;
    inset:-60px;
    background:radial-gradient(circle at 50% 40%, rgba(201,162,75,0.22), transparent 65%);
    filter:blur(50px);
    z-index:-1;
  }
  .gallery-card{
    border-radius:18px;
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    aspect-ratio:4/5;
    animation:cardFloat 6.5s ease-in-out infinite;
  }
  .gallery-card img{width:100%; height:100%; object-fit:cover; display:block;}
  .gc-2, .gc-4{margin-top:48px;}
  .gc-1{animation-delay:0s;}
  .gc-2{animation-delay:1s;}
  .gc-3{animation-delay:2s;}
  .gc-4{animation-delay:1.5s;}
}
@keyframes cardFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-16px);}
}
.scroll-cue{position:absolute; bottom:26px; left:50%; transform:translateX(-50%); z-index:1;}
.scroll-cue span{
  display:block; width:22px; height:36px; border:2px solid rgba(255,255,255,0.4); border-radius:14px; position:relative;
}
.scroll-cue span::before{
  content:""; position:absolute; top:6px; left:50%; width:4px; height:8px; background:var(--gold-light);
  border-radius:2px; transform:translateX(-50%); animation:scrollDot 1.6s infinite;
}
@keyframes scrollDot{0%{opacity:1; top:6px;} 100%{opacity:0; top:20px;}}

/* ---------- Social Proof Strip ---------- */
.proof-strip{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  max-width:var(--maxw);
  margin:0 auto;
  padding:56px 24px;
  border-bottom:1px solid var(--border);
}
.proof-item{text-align:center;}
.proof-num{font-family:Georgia,serif; font-size:clamp(28px,4vw,42px); font-weight:700; color:var(--gold-light);}
.proof-label{font-size:13px; color:var(--text-dim); text-transform:uppercase; letter-spacing:.06em; margin-top:4px;}
@media (min-width:720px){ .proof-strip{grid-template-columns:repeat(5,1fr);} }

/* ---------- Why Choose ---------- */
.why-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}
@media (min-width:640px){ .why-grid{grid-template-columns:repeat(2,1fr);} }
@media (min-width:980px){ .why-grid{grid-template-columns:repeat(3,1fr);} }
.why-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  transition:transform .25s ease, border-color .25s ease;
}
.why-card:hover{transform:translateY(-6px); border-color:var(--gold);}
.why-icon{font-size:28px; margin-bottom:14px;}
.why-card h3{font-size:19px;}
.why-card p{font-size:14.5px; margin:0;}

/* ---------- Services ---------- */
.services-section{background:var(--bg-alt);}
.services-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}
@media (min-width:640px){ .services-grid{grid-template-columns:repeat(2,1fr);} }
@media (min-width:1024px){ .services-grid{grid-template-columns:repeat(4,1fr);} }
.service-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease;
}
.service-card:hover{transform:translateY(-8px); box-shadow:var(--shadow);}
.service-card img{height:170px; object-fit:cover;}
.service-body{padding:22px; display:flex; flex-direction:column; flex:1;}
.service-body h3{font-size:19px;}
.service-body p{font-size:14px; flex:0;}
.benefits{font-size:13.5px; color:var(--text-dim); margin-bottom:18px;}
.benefits li{margin-bottom:4px;}
.service-body .btn-card{margin-top:auto;}

/* ---------- Symptoms ---------- */
.symptoms-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  max-width:900px;
  margin:0 auto;
}
@media (min-width:640px){ .symptoms-grid{grid-template-columns:repeat(3,1fr);} }
.symptom-chip{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:12px;
  padding:16px 14px;
  font-size:14.5px;
  font-weight:600;
  text-align:center;
  transition:border-color .2s ease, transform .2s ease;
}
.symptom-chip:hover{border-color:var(--call); transform:translateY(-3px);}

/* ---------- Process ---------- */
.process-section{background:var(--bg-alt);}
.process-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
@media (min-width:640px){ .process-grid{grid-template-columns:repeat(2,1fr);} }
@media (min-width:1024px){ .process-grid{grid-template-columns:repeat(4,1fr);} }
.process-step{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px;
  position:relative;
}
.step-num{
  width:38px; height:38px; border-radius:50%;
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
  color:#181205;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:16px; margin-bottom:14px;
}
.process-step h3{font-size:17px; margin-bottom:6px;}
.process-step p{font-size:13.5px; margin:0;}

/* ---------- Trust Section ---------- */
.trust-section{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  align-items:center;
}
@media (min-width:900px){ .trust-section{grid-template-columns:1fr 1fr;} }
.trust-media img{border-radius:var(--radius); box-shadow:var(--shadow);}
.trust-list{margin:26px 0 30px;}
.trust-item{padding:10px 0; border-bottom:1px solid var(--border); font-size:15px;}

/* ---------- Brands ---------- */
.brands-section{background:var(--bg-alt); overflow:hidden;}
.brands-marquee{width:100%; overflow:hidden; mask-image:linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);}
.brands-track{
  display:flex; gap:16px; width:max-content;
  animation:marquee 28s linear infinite;
}
.brands-marquee:hover .brands-track{animation-play-state:paused;}
@keyframes marquee{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
.brand-chip{
  background:var(--surface);
  border:1px solid var(--border);
  padding:14px 26px;
  border-radius:999px;
  font-weight:700;
  color:var(--gold-light);
  font-size:15px;
  white-space:nowrap;
}

/* ---------- Drifting sand particles (used in Hero + Desert divider) ---------- */
.sand-particles{position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:1;}
.sand-particles span{
  position:absolute;
  bottom:-14px;
  width:4px; height:4px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(230,200,120,0.95), rgba(230,200,120,0) 70%);
  opacity:0;
  animation:sandDrift linear infinite;
}
.sand-particles span:nth-child(1){left:4%;  width:3px; height:3px; animation-duration:13s; animation-delay:0s;}
.sand-particles span:nth-child(2){left:14%; width:5px; height:5px; animation-duration:17s; animation-delay:2.4s;}
.sand-particles span:nth-child(3){left:26%; width:2px; height:2px; animation-duration:11s; animation-delay:1s;}
.sand-particles span:nth-child(4){left:39%; width:4px; height:4px; animation-duration:19s; animation-delay:3.6s;}
.sand-particles span:nth-child(5){left:52%; width:3px; height:3px; animation-duration:15s; animation-delay:0.8s;}
.sand-particles span:nth-child(6){left:66%; width:5px; height:5px; animation-duration:21s; animation-delay:4.4s;}
.sand-particles span:nth-child(7){left:80%; width:3px; height:3px; animation-duration:14s; animation-delay:2s;}
.sand-particles span:nth-child(8){left:92%; width:4px; height:4px; animation-duration:18s; animation-delay:5.2s;}
@keyframes sandDrift{
  0%{transform:translate(0,0); opacity:0;}
  8%{opacity:.75;}
  90%{opacity:.4;}
  100%{transform:translate(70px,-320px); opacity:0;}
}

/* ---------- Dubai Desert Divider ---------- */
.desert-divider{
  position:relative;
  overflow:hidden;
  padding:90px 24px 220px;
  background:linear-gradient(180deg, var(--bg) 0%, #1b1207 100%);
  text-align:center;
}
.dune-svg{position:absolute; bottom:-2px; left:0; width:100%; height:240px; z-index:0;}
@media (max-width:640px){
  .desert-divider{padding:80px 24px 150px;}
  .dune-svg{height:170px;}
}
.dune-back{animation:duneDriftBack 22s ease-in-out infinite;}
.dune-front{animation:duneDriftFront 16s ease-in-out infinite;}
@keyframes duneDriftBack{
  0%,100%{transform:translateX(0);}
  50%{transform:translateX(-3%);}
}
@keyframes duneDriftFront{
  0%,100%{transform:translateX(0);}
  50%{transform:translateX(3%);}
}
.desert-content{position:relative; z-index:1; max-width:700px; margin:0 auto;}
.desert-content h3{
  font-family:Georgia,serif;
  font-size:clamp(19px,2.6vw,27px);
  color:var(--text);
  line-height:1.35;
  margin:14px 0 26px;
}

/* ---------- Testimonials ---------- */
.testimonials-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
}
@media (min-width:640px){ .testimonials-grid{grid-template-columns:repeat(2,1fr);} }
.testimonial-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
}
.stars{color:var(--gold-light); font-size:16px; margin-bottom:12px;}
.testimonial-card p{font-size:15px; color:var(--text); font-style:italic;}
.author{font-size:13.5px; color:var(--text-dim); font-weight:600;}

/* ---------- FAQ ---------- */
.faq-list{max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:12px;}
.faq-item{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:12px;
  padding:6px 22px;
}
.faq-item summary{
  cursor:pointer;
  padding:16px 0;
  font-weight:700;
  font-size:15.5px;
  list-style:none;
  position:relative;
  padding-right:28px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:"+";
  position:absolute; right:0; top:14px;
  font-size:20px; color:var(--gold-light);
  transition:transform .2s ease;
}
.faq-item[open] summary::after{transform:rotate(45deg);}
.faq-item p{padding-bottom:16px; font-size:14.5px;}

/* ---------- Final CTA ---------- */
.final-cta{position:relative; padding:110px 24px; text-align:center; overflow:hidden;}
.final-bg{position:absolute; inset:0;}
.final-bg img{width:100%; height:100%; object-fit:cover; opacity:.55;}
.final-overlay{position:absolute; inset:0; background:radial-gradient(circle at 50% 35%, rgba(201,162,75,0.15), rgba(10,10,13,0.55) 55%, rgba(10,10,13,0.88) 100%);}
.final-content{position:relative; z-index:1; max-width:640px; margin:0 auto;}
.final-content h2{font-size:clamp(26px,4vw,38px);}
.final-phone{
  font-size:clamp(28px,4.5vw,40px);
  font-weight:800;
  color:var(--gold-light);
  margin:22px 0;
  letter-spacing:.02em;
}
.final-cta .cta-row{justify-content:center; margin-bottom:18px;}

/* ---------- Footer ---------- */
.footer{
  text-align:center;
  padding:36px 24px 120px;
  font-size:13px;
  color:var(--text-dim);
  border-top:1px solid var(--border);
}
.footer-legal{margin-top:6px; opacity:.6;}

@media (min-width:900px){
  .footer{padding-bottom:56px;}
}

/* ---------- Why + Services sections: Inter font, slightly larger type ---------- */
.why-section .eyebrow,
.services-section .eyebrow{font-size:14.5px;}
.why-section .section-head h2,
.services-section .section-head h2{font-size:clamp(28px,3.4vw,42px);}
.why-section .section-head p,
.services-section .section-head p{font-size:18.5px;}
.why-card h3{font-size:21px;}
.why-card p{font-size:16.5px;}
.service-body h3{font-size:21px;}
.service-body p{font-size:16px;}
.services-section .benefits{font-size:15.5px;}

/* ---------- Process (How It Works) section: Inter font, slightly larger type ---------- */
.process-section,
.process-section h1,
.process-section h2,
.process-section h3{
  font-family:"Inter", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
}
.process-section .eyebrow{font-size:14.5px;}
.process-section .section-head h2{font-size:clamp(28px,3.4vw,42px);}
.process-section .section-head p{font-size:18.5px;}
.process-step h3{font-size:19px;}
.process-step p{font-size:15.5px;}
.step-num{font-size:17.5px;}
