/* ===== Mobile Auto Rescue - ورشة متحركة ===== */
:root {
  --navy-900: #0f1620;
  --navy-800: #141d29;
  --navy-700: #1b2430;
  --navy-600: #243140;
  --navy-500: #2e3d4f;
  --orange: #f26522;
  --orange-600: #e2551a;
  --orange-400: #ff7a33;
  --amber: #ffb443;
  --text: #eaf0f7;
  --text-muted: #98a6b6;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --orange-glow: 0 10px 30px rgba(242, 101, 34, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Cairo", system-ui, -apple-system, "Segoe UI", Tahoma, sans-serif;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(242, 101, 34, 0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(36, 49, 64, 0.6), transparent 55%),
    var(--navy-900);
  color: var(--text);
  margin: 0;
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; }
img { max-width: 100%; }

.text-orange { color: var(--orange) !important; }
.bg-navy { background: var(--navy-800) !important; }
.section { padding: 84px 0; position: relative; }
.section-sm { padding: 56px 0; }

.muted { color: var(--text-muted); }

.lead-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 101, 34, 0.12);
  border: 1px solid rgba(242, 101, 34, 0.35);
  color: var(--amber);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}
.lead-tag .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #2ecc71; box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.25);
  animation: pulse 1.6s infinite;
}

.section-title { font-weight: 800; font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -0.5px; }
.section-title span { color: var(--orange); }
.section-sub { color: var(--text-muted); max-width: 620px; margin: 0 auto; }

/* ===== Buttons ===== */
.btn { font-weight: 700; border-radius: 12px; padding: 12px 24px; transition: all .25s ease; }
.btn-call {
  background: var(--orange);
  color: #fff;
  border: none;
  box-shadow: var(--orange-glow);
}
.btn-call:hover { background: var(--orange-600); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(242, 101, 34, 0.5); }
.btn-wa { background: #25d366; color: #07351b; border: none; }
.btn-wa:hover { background: #1fb957; color: #07351b; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); color: #fff; border-color: rgba(255, 255, 255, 0.2); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }

/* ===== Navbar ===== */
.navbar {
  transition: all .3s ease;
  padding: 16px 0;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(15, 22, 32, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.navbar-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: #fff !important; }
.navbar-brand img { height: 44px; width: auto; }
.navbar-brand small { display: block; font-size: .68rem; color: var(--amber); font-weight: 600; line-height: 1; }
.navbar .nav-link { color: var(--text) !important; font-weight: 600; margin: 0 6px; position: relative; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--orange) !important; }
.navbar .nav-link.active::after {
  content: ""; position: absolute; bottom: -4px; right: 12px; left: 12px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.navbar-toggler { border-color: var(--line); }
.navbar-toggler:focus { box-shadow: none; }

/* Mobile dropdown menu: solid background so it's readable at top of page */
@media (max-width: 991.98px) {
  .navbar .navbar-collapse {
    background: rgba(15, 22, 32, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    margin-top: 12px;
    box-shadow: var(--shadow);
  }
  .navbar .navbar-collapse .btn-call { width: 100%; margin-top: 6px; }
  .navbar .nav-link.active::after { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 150px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy-900), transparent 55%),
              linear-gradient(115deg, rgba(15, 22, 32, 0.92) 40%, rgba(15, 22, 32, 0.55)),
              url("../img/services/engine-3.jpg") center/cover no-repeat;
  z-index: -1;
}
.hero h1 { font-weight: 800; font-size: clamp(2.1rem, 6vw, 3.6rem); line-height: 1.2; letter-spacing: -1px; }
.hero h1 span { color: var(--orange); }
.hero p.sub { font-size: clamp(1rem, 2.2vw, 1.25rem); color: var(--text-muted); max-width: 560px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; }
.hero-badges .item { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.hero-badges .item i { color: var(--orange); font-size: 1.4rem; }

/* ===== Trust strip ===== */
.trust-strip {
  background: var(--navy-800);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { text-align: center; padding: 26px 10px; }
.stat .num { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--orange); }
.stat .lbl { color: var(--text-muted); font-weight: 600; }

/* ===== Cards ===== */
.card-service {
  background: var(--navy-700);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: all .3s ease;
}
.card-service:hover { transform: translateY(-6px); border-color: rgba(242, 101, 34, 0.5); box-shadow: var(--shadow); }
.card-service .thumb { position: relative; height: 190px; overflow: hidden; }
.card-service .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card-service:hover .thumb img { transform: scale(1.08); }
.card-service .thumb .ico {
  position: absolute; bottom: -22px; inset-inline-start: 20px;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; font-size: 1.4rem;
  box-shadow: var(--orange-glow);
}
.card-service .body { padding: 32px 22px 24px; }
.card-service h5 { font-weight: 800; margin-bottom: 8px; }
.card-service p { color: var(--text-muted); font-size: .95rem; margin-bottom: 16px; }
.card-service .link { color: var(--orange); font-weight: 700; font-size: .92rem; }

/* ===== Steps ===== */
.step {
  background: var(--navy-700);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 24px;
  height: 100%;
  text-align: center;
  position: relative;
}
.step .n {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: 1.4rem; color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: var(--orange-glow);
}
.step h5 { font-weight: 800; }
.step p { color: var(--text-muted); margin: 0; }

/* ===== Coverage / generic feature list ===== */
.feature-li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.feature-li i { color: var(--orange); font-size: 1.3rem; margin-top: 2px; }
.feature-li b { display: block; }
.feature-li span { color: var(--text-muted); font-size: .92rem; }

.chip {
  display: inline-block; padding: 8px 16px; margin: 5px;
  background: var(--navy-700); border: 1px solid var(--line);
  border-radius: 999px; font-weight: 600; font-size: .9rem;
}
.chip i { color: var(--orange); margin-inline-end: 6px; }

/* ===== Testimonials ===== */
.review {
  background: var(--navy-700); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; height: 100%;
}
.review .stars { color: var(--amber); margin-bottom: 10px; }
.review p { color: var(--text); }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.review .who .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  display: grid; place-items: center; font-weight: 800; color: #fff;
}
.review .who small { color: var(--text-muted); }

/* ===== FAQ ===== */
.accordion-item { background: var(--navy-700); border: 1px solid var(--line); border-radius: 14px !important; margin-bottom: 12px; overflow: hidden; }
.accordion-button { background: var(--navy-700); color: var(--text); font-weight: 700; box-shadow: none; }
.accordion-button:not(.collapsed) { background: var(--navy-600); color: var(--orange); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--line); }
.accordion-button::after { filter: invert(60%) sepia(80%) saturate(2000%) hue-rotate(340deg); }
.accordion-body { color: var(--text-muted); }

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(120deg, var(--orange), var(--orange-600));
  border-radius: 26px;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { font-weight: 800; color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.9); margin: 0; }
.cta-band .btn-call { background: #fff; color: var(--orange-600); }
.cta-band .btn-call:hover { background: #0f1620; color: #fff; }

/* ===== Forms ===== */
.form-card {
  background: var(--navy-700);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.form-control, .form-select {
  background: var(--navy-800); border: 1px solid var(--line); color: var(--text);
  padding: 13px 16px; border-radius: 12px;
}
.form-control:focus, .form-select:focus {
  background: var(--navy-800); color: var(--text);
  border-color: var(--orange); box-shadow: 0 0 0 .2rem rgba(242, 101, 34, 0.2);
}
.form-control::placeholder { color: #5f6f80; }
.form-label { font-weight: 700; margin-bottom: 6px; }
.svc-pick { cursor: pointer; }
.svc-pick input { display: none; }
.svc-pick span {
  display: block; text-align: center; padding: 14px 8px;
  border: 1px solid var(--line); border-radius: 12px; font-weight: 700;
  background: var(--navy-800); transition: all .2s ease;
}
.svc-pick span i { display: block; font-size: 1.5rem; margin-bottom: 6px; color: var(--orange); }
.svc-pick input:checked + span { border-color: var(--orange); background: rgba(242, 101, 34, 0.14); color: var(--orange); }

/* ===== Footer ===== */
.footer { background: var(--navy-800); border-top: 1px solid var(--line); padding: 60px 0 24px; }
.footer h6 { font-weight: 800; margin-bottom: 18px; }
.footer a { color: var(--text-muted); display: inline-block; padding: 5px 0; transition: color .2s; }
.footer a:hover { color: var(--orange); }
.footer .brand-row { display: flex; align-items: center; gap: 10px; }
.footer .brand-row img { height: 50px; }
.footer .social a {
  width: 40px; height: 40px; border-radius: 10px; margin-inline-end: 8px;
  display: inline-grid; place-items: center; background: var(--navy-600); color: var(--text);
}
.footer .social a:hover { background: var(--orange); color: #fff; }
.footer .copy { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 20px; color: var(--text-muted); font-size: .88rem; }

/* ===== Floating WhatsApp ===== */
.fab-wa {
  position: fixed; inset-inline-end: 20px; bottom: 88px; z-index: 1040;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  font-size: 1.7rem; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  animation: pulse-wa 2s infinite;
}
.fab-wa:hover { color: #fff; transform: scale(1.08); }

/* ===== Sticky call bar (mobile) ===== */
.call-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 1039;
  display: none; gap: 10px; padding: 10px 12px;
  background: rgba(15, 22, 32, 0.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.call-bar .btn { flex: 1; padding: 13px; font-size: 1rem; }
.call-bar .btn-call { flex: 1.6; }

@media (max-width: 991.98px) {
  .call-bar { display: flex; }
  .fab-wa { bottom: 78px; }
  .hero { padding: 120px 0 80px; }
  body { padding-bottom: 72px; }
  .footer { padding-bottom: 80px; }
}

/* ===== Page header ===== */
.page-head {
  padding: 140px 0 60px;
  background: linear-gradient(to bottom, rgba(15,22,32,.6), var(--navy-900)),
              url("../img/services/electrical-5.jpg") center/cover no-repeat;
  position: relative;
}
.page-head h1 { font-weight: 800; font-size: clamp(1.9rem, 5vw, 3rem); }
.page-head .crumb { color: var(--text-muted); }
.page-head .crumb a { color: var(--orange); }

/* ===== Animations ===== */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, .5); } 70% { box-shadow: 0 0 0 8px rgba(46, 204, 113, 0); } 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); } }
@keyframes pulse-wa { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); } 70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.show { opacity: 1; transform: none; }
