/* ============================================================================
   mycarwash.ae — marketing site page styles
   Everything specific to the landing page lives here; design tokens and
   component classes come from ds.css.
   ============================================================================ */

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:#fff;
  color:#14191e;
  font-family:-apple-system,BlinkMacSystemFont,'SF Pro Text','Segoe UI',Roboto,system-ui,sans-serif;
  -webkit-font-smoothing:antialiased;
}

a{color:#0c8599;text-decoration:none}
a:hover{color:#0a6f80}

input{font-family:inherit;-webkit-appearance:none}

/* Reduced motion — respect the OS setting */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001ms!important;transition-duration:.001ms!important}
}

/* Keyboard focus ring — accessible without disturbing the mouse look */
a:focus-visible,button:focus-visible,input:focus-visible,[tabindex]:focus-visible{
  outline:2px solid #0c8599;
  outline-offset:2px;
  border-radius:6px;
}

/* Text input focus (form on the dark cleaner panel) */
.mcw-input:focus{border-color:#f0a83a!important}

/* FAQ toggle glyph flips to a minus when the row is open */
.mcw-faq[aria-expanded="true"] .mcw-faq__sign{transform:rotate(45deg)}
.mcw-faq__sign{display:inline-block;transition:transform .18s ease-out;color:#b4bec6;font-weight:400}
.mcw-faq__panel{overflow:hidden}

/* Collapsible answers / step panels animate in */
.mcw-reveal{animation:pnl .18s ease-out}

/* ---------------------------------------------------------------------------
   Responsive — carried from the design comp's media block
   --------------------------------------------------------------------------- */
@media (max-width:900px){
  .mcw-row{flex-direction:column!important}
  .mcw-nav-links{display:none!important}
  .mcw-grid3{grid-template-columns:1fr!important}
  .mcw-grid2{grid-template-columns:1fr!important}
  .mcw-h1{font-size:42px!important;letter-spacing:-1.4px!important;max-width:none!important}
  .mcw-h2{font-size:28px!important;letter-spacing:-0.8px!important}
  .mcw-pad{padding-left:22px!important;padding-right:22px!important}
  .mcw-divide > div{border-left:none!important;border-top:1px solid #e1e7eb;padding:18px 0!important}
  .mcw-form{flex:1 1 auto!important;width:100%!important;position:static!important}
  .mcw-phones{flex-wrap:wrap}
}
