/* ============================================================
   RADDAD CAR WASH — SHARED STYLESHEET (LIGHT THEME)
   raddad.ae
============================================================ */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #F4F7FF;   /* page background  — soft blue-white       */
  --navy2:      #FFFFFF;   /* card / surface   — pure white             */
  --navy3:      #EBF0FF;   /* alt section bg   — slightly blue-tinted   */
  --blue:       #1B6FE8;   /* primary accent   — unchanged              */
  --blue-light: #1454BE;   /* hover / darker blue for light-bg contrast */
  --white:      #0F172A;   /* primary text     — near-black             */
  --gray:       #4B5563;   /* secondary text                            */
  --gray2:      #9CA3AF;   /* faint text                                */
  --green-wa:   #25D366;
  --uae-red:    #EF3340;
  --uae-green:  #009736;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  padding-top: 4px;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; }

/* ── UAE Flag Bar ─────────────────────────────────────────── */
.uae-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 1200;
  display: flex;
}
.uae-bar .b-red   { flex: 1; background: var(--uae-red); }
.uae-bar .b-green { flex: 1; background: var(--uae-green); }
.uae-bar .b-white { flex: 1; background: #CBD5E1; }
.uae-bar .b-black { flex: 1; background: #1a1a2e; }

/* ── Custom Cursor ────────────────────────────────────────── */
.cursor {
  width: 13px; height: 13px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: .55;
  transform: translate(-50%,-50%);
  transition: transform .08s ease;
}
.cursor-trail {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  background: var(--blue);
  opacity: .22;
  transform: translate(-50%,-50%);
}

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography helpers ───────────────────────────────────── */
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--gray);
  font-size: 16px;
  max-width: 560px;
  line-height: 1.7;
}
.center-text { text-align: center; }
.center-text .section-subtitle { margin: 0 auto; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  background: var(--blue);
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, box-shadow .2s, transform .2s;
  letter-spacing: .3px;
}
.btn-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 4px 20px rgba(27,111,232,.35);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(15,23,42,.18);
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s, background .2s, transform .2s;
}
.btn-outline:hover {
  border-color: var(--blue);
  background: rgba(27,111,232,.06);
  color: var(--blue);
  transform: translateY(-2px);
}
/* Outline buttons inside blue CTA banners need to be white */
.cta-banner .btn-outline {
  color: white;
  border-color: rgba(255,255,255,.4);
}
.cta-banner .btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,.12);
  color: white;
}
.btn-whatsapp {
  background: var(--green-wa);
  color: white;
  border: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.btn-whatsapp:hover {
  background: #1fb050;
  box-shadow: 0 0 28px rgba(37,211,102,.4);
  transform: translateY(-2px);
}
.btn-red {
  background: var(--uae-red);
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.btn-red:hover {
  background: #d42a35;
  box-shadow: 0 0 24px rgba(239,51,64,.4);
  transform: translateY(-2px);
}

/* ── Navigation ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 4px; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all .35s ease;
}
nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 2px 20px rgba(15,23,42,.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo-tagline { font-size: 10px; color: var(--gray); letter-spacing: .5px; }

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-menu a {
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  letter-spacing: .3px;
  position: relative;
  padding-bottom: 2px;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .25s ease;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--blue); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile menu */
#mobileMenu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.99);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 4px;
}
#mobileMenu a {
  color: var(--white);
  text-decoration: none;
  font-size: 26px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  transition: color .2s;
}
#mobileMenu a:hover,
#mobileMenu a.active { color: var(--blue); }
#mobileCloseBtn {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: var(--white); font-size: 32px;
  cursor: pointer; line-height: 1;
}

/* ── Floating WhatsApp ────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 997;
  width: 58px; height: 58px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .2s;
  animation: waPulse 2.8s infinite;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,.7), 0 0 0 12px rgba(37,211,102,.08); }
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  min-height: 340px;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy3) 0%, var(--navy) 60%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(27,111,232,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,111,232,.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27,111,232,.1) 0%, transparent 70%);
  top: 50%; right: -60px;
  transform: translateY(-50%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero-label a { color: var(--gray); transition: color .2s; }
.page-hero-label a:hover { color: var(--blue); }
.page-hero-label span { color: var(--blue); }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 90px);
  line-height: .95;
  margin-bottom: 18px;
}
.page-hero h1 .blue { color: var(--blue); }
.page-hero p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 28px;
}

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Card base ────────────────────────────────────────────── */
.card {
  background: var(--navy2);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 1px 4px rgba(15,23,42,.04);
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(27,111,232,.25);
  box-shadow: 0 16px 48px rgba(15,23,42,.1);
}
.card:hover::before { transform: scaleX(1); }

/* ── UAE stripe ───────────────────────────────────────────── */
.uae-stripe-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.uae-stripes { display: flex; gap: 3px; }
.uae-stripes span { display: block; height: 14px; border-radius: 2px; }
.uae-stripes .s-g { width: 5px; background: var(--uae-green); }
.uae-stripes .s-w { width: 5px; background: #CBD5E1; }
.uae-stripes .s-b { width: 5px; background: #94A3B8; }
.uae-stripes .s-r { width: 5px; background: var(--uae-red); }
.uae-stripe-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--uae-red);
  font-weight: 700;
  text-transform: uppercase;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1B6FE8 0%, #1048B8 100%);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  margin-bottom: 14px;
  position: relative; z-index: 1;
  color: white;
}
.cta-banner p {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.6;
  position: relative; z-index: 1;
}
.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--navy2);
  border-top: 1px solid rgba(15,23,42,.08);
  padding: 70px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-icon { width: 44px; height: 44px; border-radius: 10px; overflow: hidden; }
.footer-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.footer-desc { color: var(--gray); font-size: 14px; line-height: 1.65; max-width: 270px; }
.footer-col-title {
  font-weight: 700; font-size: 12px;
  margin-bottom: 18px;
  color: var(--white);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: var(--gray); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--blue); }
.footer-links li > span { color: var(--gray); font-size: 14px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(15,23,42,.08);
  padding-top: 28px;
  font-size: 13px;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--blue); }
.footer-seo { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-seo span:nth-child(even) { color: var(--blue); }

/* ── Splash overlay ───────────────────────────────────────── */
.splash-overlay {
  position: fixed; inset: 0;
  background: rgba(244,247,255,.97);
  z-index: 9998;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
  text-align: center; padding: 24px;
}
.splash-overlay.active { opacity: 1; pointer-events: all; }
.splash-emoji { font-size: 72px; margin-bottom: 16px; animation: splashBounce .6s ease; }
@keyframes splashBounce {
  0%   { transform: scale(.3); opacity: 0; }
  70%  { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}
.splash-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 68px);
  color: var(--white);
}
.splash-sub { color: var(--blue); font-size: 17px; margin-top: 8px; }
.splash-close {
  margin-top: 32px;
  background: var(--blue); border: none; color: white;
  padding: 13px 32px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  cursor: pointer; font-size: 14px; transition: background .2s;
}
.splash-close:hover { background: var(--blue-light); }

/* ── Form ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px; color: var(--gray);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 8px; font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy);
  border: 1.5px solid rgba(15,23,42,.12);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(27,111,232,.1);
}
.form-group select option { background: white; color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--blue); border: none;
  border-radius: 10px; color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  cursor: pointer; margin-top: 8px;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.form-submit:hover {
  background: var(--blue-light);
  box-shadow: 0 0 28px rgba(27,111,232,.35);
  transform: translateY(-1px);
}

/* ── Image placeholder ────────────────────────────────────── */
.img-ph {
  background: linear-gradient(135deg, var(--navy3) 0%, #dce6ff 100%);
  border: 1.5px dashed rgba(27,111,232,.35);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 7px; position: relative; overflow: hidden;
}
.img-ph::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,transparent,transparent 10px,rgba(27,111,232,.03) 10px,rgba(27,111,232,.03) 20px);
}
.img-ph-icon { font-size: 28px; opacity: .45; position: relative; z-index: 1; }
.img-ph-label {
  font-family: 'Courier New', monospace;
  font-weight: 700; color: var(--blue);
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative; z-index: 1;
}
.img-ph-size {
  font-family: 'Courier New', monospace;
  color: var(--gray); font-size: 10px;
  text-align: center; line-height: 1.5; padding: 0 12px;
  position: relative; z-index: 1;
}

/* ── Ticker ───────────────────────────────────────────────── */
.ticker-wrap { background: var(--blue); padding: 13px 0; overflow: hidden; }
.ticker-track {
  display: flex; width: max-content;
  animation: ticker 40s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  white-space: nowrap; padding: 0 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 2.5px;
  display: flex; align-items: center; gap: 36px;
  color: white;
}
.ticker-sep {
  width: 5px; height: 5px;
  background: rgba(255,255,255,.4);
  border-radius: 50%; flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-cta  { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 40px 24px; }
  body { cursor: auto; }
  .cursor, .cursor-trail { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .page-hero { min-height: 260px; padding: 120px 0 60px; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}
