/* ============================================================
   Home Appliance Repair UAE — Main Stylesheet
   Brand: deep navy + warm amber, clean & premium
   ============================================================ */

:root {
  --navy-900: #071B36;
  --navy-800: #0B2447;
  --navy-700: #123464;
  --navy-600: #1B4480;
  --amber-500: #FFB020;
  --amber-600: #F59E0B;
  --amber-700: #D97706;
  --green-wa: #25D366;
  --green-wa-dark: #1EBE5A;
  --ink: #16263F;
  --muted: #5A6B85;
  --bg: #FFFFFF;
  --bg-soft: #F4F7FB;
  --bg-softer: #EDF2F9;
  --line: #E2E9F2;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(11, 36, 71, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 36, 71, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 36, 71, 0.16);
  --font-head: "Sora", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }
html, body { overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1180px, 92%); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--navy-800); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; border: 0;
  font-weight: 700; font-size: 16px; font-family: var(--font-head);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-amber {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: var(--navy-900);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}
.btn-amber:hover { box-shadow: 0 12px 30px rgba(245, 158, 11, 0.45); }

.btn-wa {
  background: var(--green-wa);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.30);
}
.btn-wa:hover { background: var(--green-wa-dark); }

.btn-outline-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.16); }

.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); }

.btn-sm { padding: 11px 20px; font-size: 14.5px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-900);
  color: #C9D6E8;
  font-size: 13.5px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 15px; height: 15px; color: var(--amber-500); flex: none; }
.topbar a:hover { color: #fff; }
.topbar .tb-areas { display: inline-flex; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 14px; }

.logo { display: flex; align-items: center; gap: 11px; }
.logo-badge {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.logo-badge svg { width: 26px; height: 26px; color: var(--amber-500); }
.logo-text { line-height: 1.15; }
.logo-text strong { display: block; font-family: var(--font-head); font-size: 17px; color: var(--navy-800); letter-spacing: -0.2px; }
.logo-text span { font-size: 11.5px; font-weight: 600; color: var(--amber-700); text-transform: uppercase; letter-spacing: 1.2px; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a { font-weight: 600; font-size: 15px; color: var(--ink); position: relative; padding-block: 6px; }
.main-nav > a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2.5px; width: 0;
  background: var(--amber-500); border-radius: 2px; transition: width .22s ease;
}
.main-nav > a:hover::after, .main-nav > a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; background: none; border: 0; width: 44px; height: 44px;
  border-radius: 10px; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--navy-800); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(27, 68, 128, 0.55), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(245, 158, 11, 0.12), transparent 55%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M0 47.5h48M47.5 0v48' stroke='%23ffffff' stroke-opacity='0.045' fill='none'/%3E%3C/svg%3E");
}
.hero .container {
  position: relative;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
  padding-block: 72px 88px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 176, 32, 0.14);
  border: 1px solid rgba(255, 176, 32, 0.4);
  color: var(--amber-500);
  font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero-eyebrow svg { width: 15px; height: 15px; }

.hero h1 {
  color: #fff; font-size: clamp(34px, 4.6vw, 54px); font-weight: 800; letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--amber-500); }

.hero-sub { color: #BCCBE0; font-size: 18px; max-width: 560px; margin-bottom: 30px; }
.hero-sub strong { color: #fff; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-points { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero-point { display: inline-flex; align-items: center; gap: 9px; color: #D5E0EF; font-size: 14.5px; font-weight: 600; }
.hero-point svg { width: 19px; height: 19px; color: var(--green-wa); flex: none; }

/* Quote form card */
.quote-card {
  background: #fff; color: var(--ink);
  border-radius: 22px; padding: 30px 28px;
  box-shadow: var(--shadow-lg);
}
.quote-card h3 { font-size: 21px; margin-bottom: 4px; }
.quote-card > p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.quote-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-card label { display: block; font-size: 13px; font-weight: 700; color: var(--navy-800); margin: 12px 0 5px; }
.quote-card input, .quote-card select {
  width: 100%; padding: 12px 14px; font-size: 15px; font-family: inherit; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 11px; background: var(--bg-soft);
  outline: none; transition: border-color .15s ease, box-shadow .15s ease;
  appearance: none; -webkit-appearance: none;
}
.quote-card select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6B85' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.quote-card input:focus, .quote-card select:focus { border-color: var(--amber-600); box-shadow: 0 0 0 3px rgba(245,158,11,0.15); background: #fff; }
.quote-card .btn { width: 100%; margin-top: 20px; }
.quote-note { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.quote-note svg { width: 14px; height: 14px; color: var(--green-wa); flex: none; }

/* ---------- Trust strip ---------- */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding-block: 26px;
}
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item .t-icon {
  width: 48px; height: 48px; border-radius: 13px; flex: none;
  background: linear-gradient(135deg, #FFF4DC, #FFE9BC);
  display: grid; place-items: center;
}
.trust-item .t-icon svg { width: 24px; height: 24px; color: var(--amber-700); }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 15px; color: var(--navy-800); }
.trust-item span { font-size: 13px; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding-block: 84px; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber-700);
  background: #FFF4DC; padding: 7px 16px; border-radius: 999px; margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------- Services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(245,158,11,0.5); }
.service-icon {
  width: 60px; height: 60px; border-radius: 16px; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: grid; place-items: center;
}
.service-icon svg { width: 30px; height: 30px; color: var(--amber-500); }
.service-card h3 { font-size: 19.5px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; color: var(--muted); margin-bottom: 16px; }
.service-card ul { margin-bottom: 22px; display: grid; gap: 8px; }
.service-card ul li { display: flex; gap: 9px; font-size: 14px; color: var(--ink); }
.service-card ul li svg { width: 17px; height: 17px; color: var(--green-wa); flex: none; margin-top: 2px; }
.service-card .card-actions { margin-top: auto; display: flex; gap: 10px; align-items: center; }
.card-link {
  font-weight: 700; font-size: 14.5px; color: var(--navy-700);
  display: inline-flex; align-items: center; gap: 6px;
}
.card-link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.card-link:hover svg { transform: translateX(4px); }
.card-call {
  margin-left: auto; width: 42px; height: 42px; border-radius: 50%;
  background: #FFF4DC; display: grid; place-items: center; transition: background .18s ease;
}
.card-call svg { width: 19px; height: 19px; color: var(--amber-700); }
.card-call:hover { background: var(--amber-500); }
.card-call:hover svg { color: var(--navy-900); }

/* ---------- Brands ---------- */
.brands-wrap { overflow: hidden; position: relative; padding-block: 6px; }
.brands-track { display: flex; gap: 14px; width: max-content; animation: marquee 40s linear infinite; }
.brands-wrap:hover .brands-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brand-chip {
  flex: none; padding: 12px 26px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy-700);
  box-shadow: var(--shadow-sm);
}
.brands-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 26px; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative;
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: var(--navy-900); font-family: var(--font-head); font-weight: 800; font-size: 18px;
  display: grid; place-items: center;
}
.step-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--muted); }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 28px 26px;
  transition: background .2s ease, transform .2s ease;
}
.why-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.why-card .w-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  background: rgba(255,176,32,0.15); border: 1px solid rgba(255,176,32,0.35);
  display: grid; place-items: center;
}
.why-card .w-icon svg { width: 26px; height: 26px; color: var(--amber-500); }
.why-card h3 { color: #fff; font-size: 17.5px; margin-bottom: 8px; }
.why-card p { color: #AEBFD6; font-size: 14px; }

.section-dark {
  background:
    radial-gradient(800px 400px at 110% 0%, rgba(27,68,128,0.5), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800));
}
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: #AEBFD6; }
.section-dark .section-eyebrow { background: rgba(255,176,32,0.14); color: var(--amber-500); }

/* ---------- Areas ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.area-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: box-shadow .2s ease, transform .2s ease;
}
.area-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.area-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.area-head .a-icon {
  width: 48px; height: 48px; border-radius: 13px; flex: none;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: grid; place-items: center;
}
.area-head .a-icon svg { width: 24px; height: 24px; color: var(--amber-500); }
.area-head h3 { font-size: 20px; }
.area-head span { display: block; font-size: 13px; color: var(--muted); font-weight: 500; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.area-tags li {
  font-size: 13px; font-weight: 600; color: var(--navy-700);
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: 6px 13px; border-radius: 999px;
}
.area-card .card-link { font-size: 14px; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 16px;
}
.testi-stars { display: flex; gap: 3px; }
.testi-stars svg { width: 18px; height: 18px; color: var(--amber-500); }
.testi-card p { font-size: 14.5px; color: var(--ink); flex: 1; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: var(--amber-500); font-family: var(--font-head); font-weight: 800; font-size: 16px;
  display: grid; place-items: center;
}
.testi-who strong { display: block; font-size: 14.5px; color: var(--navy-800); }
.testi-who span { font-size: 12.5px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--navy-800);
}
.faq-q .faq-icon {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--bg-soft); display: grid; place-items: center;
  transition: transform .25s ease, background .25s ease;
}
.faq-q .faq-icon svg { width: 15px; height: 15px; color: var(--navy-700); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--amber-500); }
.faq-item.open .faq-icon svg { color: var(--navy-900); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 22px; font-size: 15px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  border-radius: 26px; padding: 54px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-band::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  border-radius: 50%; background: rgba(255,255,255,0.18);
}
.cta-band::after {
  content: ""; position: absolute; right: 40px; bottom: -80px; width: 180px; height: 180px;
  border-radius: 50%; background: rgba(7,27,54,0.10);
}
.cta-band h2 { font-size: clamp(24px, 3vw, 34px); color: var(--navy-900); letter-spacing: -0.6px; margin-bottom: 8px; }
.cta-band p { color: rgba(7,27,54,0.75); font-weight: 600; max-width: 520px; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band .btn-navy { box-shadow: 0 10px 26px rgba(7,27,54,0.3); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #A9BAD2; font-size: 14.5px; }
.footer-main {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding-block: 64px 44px;
}
.footer-brand .logo-text strong { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 15.5px; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { transition: color .15s ease; }
.footer-col a:hover { color: var(--amber-500); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--amber-500); flex: none; margin-top: 3px; }
.footer-contact a:hover { color: var(--amber-500); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 20px; font-size: 13px; color: #7E93B1;
}
.footer-legal .container { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-legal a { color: #A9BAD2; }
.footer-legal a:hover { color: var(--amber-500); }
.footer-reg {
  background: rgba(255,255,255,0.04); border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 16px; font-size: 12.5px; color: #7E93B1; text-align: center; line-height: 1.8;
}

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed; right: 22px; bottom: 24px; z-index: 1100;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--green-wa); display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform .2s ease;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 32px; height: 32px; color: #fff; }
.float-wa::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5); animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ---------- Mobile sticky call bar ---------- */
.mobile-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -6px 24px rgba(7,27,54,0.18);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 10px; font-family: var(--font-head); font-weight: 700; font-size: 15.5px;
}
.mobile-bar a svg { width: 21px; height: 21px; flex: none; }
.mobile-bar .mb-call { background: linear-gradient(135deg, var(--amber-500), var(--amber-600)); color: var(--navy-900); }
.mobile-bar .mb-wa { background: var(--green-wa); color: #fff; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 400px at 90% -20%, rgba(27,68,128,0.55), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: #fff;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M0 47.5h48M47.5 0v48' stroke='%23ffffff' stroke-opacity='0.045' fill='none'/%3E%3C/svg%3E");
}
.page-hero .container { position: relative; padding-block: 64px 70px; max-width: 900px; text-align: center; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 13.5px; color: #8FA5C4; margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--amber-500); }
.breadcrumb .sep { color: #51678a; }
.breadcrumb .current { color: #C9D6E8; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 16px; }
.page-hero h1 .accent { color: var(--amber-500); }
.page-hero .hero-sub { margin-inline: auto; margin-bottom: 28px; }
.page-hero .hero-actions { justify-content: center; margin-bottom: 0; }
.page-hero .hero-points { justify-content: center; margin-top: 30px; }

/* ---------- Problems grid (service pages) ---------- */
.problems-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.problem-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px 20px; display: flex; gap: 13px; align-items: flex-start;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.problem-card:hover { border-color: rgba(245,158,11,0.55); box-shadow: var(--shadow-sm); }
.problem-card svg { width: 22px; height: 22px; color: var(--amber-600); flex: none; margin-top: 2px; }
.problem-card strong { display: block; font-family: var(--font-head); font-size: 14.5px; color: var(--navy-800); margin-bottom: 3px; }
.problem-card span { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ---------- Content split (service pages) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-content h2 { font-size: clamp(26px, 3vw, 34px); letter-spacing: -0.6px; margin-bottom: 16px; }
.split-content p { color: var(--muted); margin-bottom: 16px; }
.check-list { display: grid; gap: 13px; margin: 22px 0 28px; }
.check-list li { display: flex; gap: 12px; font-size: 15.5px; font-weight: 500; }
.check-list li svg { width: 22px; height: 22px; color: var(--green-wa); flex: none; margin-top: 1px; }
.info-panel {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  border-radius: 22px; padding: 38px 34px; color: #fff; box-shadow: var(--shadow-lg);
}
.info-panel h3 { color: #fff; font-size: 21px; margin-bottom: 20px; }
.info-panel .ip-row {
  display: flex; gap: 14px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,0.1);
}
.info-panel .ip-row:first-of-type { border-top: 0; padding-top: 0; }
.info-panel .ip-row svg { width: 22px; height: 22px; color: var(--amber-500); flex: none; margin-top: 2px; }
.info-panel .ip-row strong { display: block; font-size: 15px; }
.info-panel .ip-row span { font-size: 13.5px; color: #AEBFD6; }
.info-panel .btn { width: 100%; margin-top: 22px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .brands-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Policy pages ---------- */
.policy-body { max-width: 820px; margin-inline: auto; padding-block: 64px 84px; }
.policy-body h2 { font-size: 24px; margin: 40px 0 14px; }
.policy-body h3 { font-size: 18px; margin: 28px 0 10px; }
.policy-body p, .policy-body li { color: #3C4D68; font-size: 15.5px; margin-bottom: 12px; }
.policy-body ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.policy-body .policy-meta { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.policy-box {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px 26px; margin: 20px 0;
}
.policy-box p { margin-bottom: 6px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .quote-card { max-width: 560px; }
  .services-grid, .why-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid, .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 1500;
    flex-direction: column; align-items: flex-start; gap: 6px;
    width: min(320px, 82vw); padding: 90px 30px 30px;
    background: #fff; box-shadow: -20px 0 60px rgba(7,27,54,0.18);
    transform: translateX(105%); transition: transform .3s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a { font-size: 17px; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--bg-softer); }
  .nav-toggle { display: inline-flex; }
  .nav-overlay {
    position: fixed; inset: 0; z-index: 1400; background: rgba(7,27,54,0.45);
    opacity: 0; pointer-events: none; transition: opacity .25s ease;
  }
  .nav-overlay.show { opacity: 1; pointer-events: auto; }
  .header-cta .btn-amber { display: none; }
  .topbar .tb-areas { display: none; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .section { padding-block: 60px; }
  .hero .container { padding-block: 52px 60px; }
  .hero-actions .btn { width: 100%; }
  .services-grid, .why-grid, .testi-grid, .steps-grid, .problems-grid, .areas-grid { grid-template-columns: 1fr; }
  .quote-card .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .cta-band { padding: 40px 28px; }
  .cta-band .cta-actions .btn { width: 100%; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 58px; }
  .float-wa { display: none; }
  .footer-legal .container { justify-content: center; text-align: center; }
}
