@charset "UTF-8";
/* ==========================================================================
   ProFix Appliance Repair — Dammam
   Single stylesheet. Direction-agnostic: written with CSS logical properties
   so the same file serves the Arabic (RTL) and English (LTR) trees.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts — self-hosted, no external requests (PDPL + LCP)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Plex Arabic';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/plex-arabic-400-ar.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+08A0-08FF, U+200C-200E,
                 U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}
@font-face {
  font-family: 'Plex Arabic';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/plex-arabic-400-lat.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plex Arabic';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/plex-arabic-700-ar.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+08A0-08FF, U+200C-200E,
                 U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}
@font-face {
  font-family: 'Plex Arabic';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/plex-arabic-700-lat.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+FEFF, U+FFFD;
}
/* Utility face: prices, phone numbers, error codes. Latin/digits only. */
@font-face {
  font-family: 'Plex Mono';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/plex-mono-500-lat.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+2000-206F, U+2212;
}
@font-face {
  font-family: 'Plex Mono';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/plex-mono-600-lat.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+2000-206F, U+2212;
}

/* --------------------------------------------------------------------------
   2. Tokens
   The palette is a temperature system, borrowed from the machines themselves:
   deep blue and ice = working / cold / fixed. Ember = fault / heat / broken.
   Ember appears only on things that are wrong. Nothing decorative uses it.
   -------------------------------------------------------------------------- */
:root {
  --ink:        #0B1B2B;
  --ink-soft:   #4A5A6B;
  --ink-faint:  #7C8B99;
  --line:       #DDE5ED;
  --line-soft:  #EDF2F7;
  --paper:      #FFFFFF;
  --chill:      #F1F6FA;   /* cool off-white — the ground, never cream */

  --blue:       #0B4F8A;   /* logo blue */
  --blue-deep:  #072F52;   /* hero + footer ground */
  --blue-dark:  #06243F;
  --blue-tint:  #E7F1F9;

  --ice:        #37C6E8;   /* cold air — accent, mostly on dark */
  --ice-deep:   #0E7E9B;   /* same hue, safe as text on light */

  --ember:      #E2601F;   /* fault state only */
  --ember-ink:  #B4430D;   /* fault text on light */
  --ember-tint: #FDEFE7;

  --wa:         #25D366;
  --wa-dark:    #1DA851;

  --radius:     12px;
  --radius-sm:  8px;
  --shadow-sm:  0 1px 2px rgba(7,47,82,.06), 0 2px 8px rgba(7,47,82,.05);
  --shadow-md:  0 2px 6px rgba(7,47,82,.07), 0 14px 34px rgba(7,47,82,.09);

  --gutter:     clamp(1rem, 4vw, 2rem);
  --wrap:       1140px;
  --wrap-tight: 760px;
  --bar-h:      0px;       /* raised on mobile by the sticky call bar */

  --sans: 'Plex Arabic', system-ui, -apple-system, 'Segoe UI', Tahoma, 'Noto Sans Arabic', sans-serif;
  --mono: 'Plex Mono', ui-monospace, 'SF Mono', 'Cascadia Mono', Consolas, monospace;
}

/* --------------------------------------------------------------------------
   3. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  padding-block-end: var(--bar-h);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* Arabic must never be letter-spaced — it breaks the joining of the script. */
[lang="ar"], [lang="ar"] * { letter-spacing: normal !important; }

h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 700; line-height: 1.28; }
h1 { font-size: clamp(1.95rem, 1.25rem + 2.7vw, 3.05rem); line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 1.1rem + 1.55vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 1.02rem + .35vw, 1.3rem); }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a  { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ice-deep); }
img, svg, video { max-width: 100%; height: auto; display: block; }
strong, b { font-weight: 700; }
hr { border: 0; border-block-start: 1px solid var(--line); margin: 2.5rem 0; }
ul, ol { margin: 0 0 1.1em; padding-inline-start: 1.35em; }
li { margin-block-end: .4em; }
table { border-collapse: collapse; width: 100%; }

/* Numerals, prices, phone numbers and error codes get the utility face. */
.num, .price, .code, time, [dir] .tabular { font-family: var(--mono); font-variant-numeric: tabular-nums; }

:focus-visible {
  outline: 3px solid var(--ice-deep);
  outline-offset: 2px;
  border-radius: 4px;
}
::selection { background: var(--blue); color: #fff; }

.skip-link {
  position: absolute; inset-block-start: -100px; inset-inline-start: 1rem;
  z-index: 200; background: var(--blue-deep); color: #fff;
  padding: .7rem 1.1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { inset-block-start: 0; color: #fff; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-tight { max-width: var(--wrap-tight); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   4. Section rhythm
   -------------------------------------------------------------------------- */
.section { padding-block: clamp(3rem, 7vw, 5.25rem); }
.section--chill { background: var(--chill); }
.section--tight { padding-block: clamp(2.25rem, 5vw, 3.5rem); }
.section--dark { background: var(--blue-deep); color: #EAF3FA; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark a { color: var(--ice); }

.section-head { max-width: 62ch; margin-block-end: clamp(1.75rem, 4vw, 2.75rem); }
.section-head p { color: var(--ink-soft); font-size: 1.075rem; }
.section--dark .section-head p { color: #B7CFE2; }

/* Eyebrow: a short structural label. Uppercase applies to Latin only —
   Arabic has no case, so it renders as a small tracked mono/sans label. */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 700; color: var(--ice-deep);
  margin-block-end: .85rem;
}
.eyebrow::before {
  content: ""; inline-size: 22px; block-size: 2px;
  background: var(--ice-deep); flex: none;
}
.section--dark .eyebrow { color: var(--ice); }
.section--dark .eyebrow::before { background: var(--ice); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.5rem; border: 1px solid transparent; border-radius: var(--radius-sm);
  font: inherit; font-weight: 700; font-size: 1.02rem; line-height: 1.2;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { inline-size: 1.15em; block-size: 1.15em; flex: none; fill: currentColor; }

.btn--call  { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn--call:hover { background: #0A4477; color: #fff; }
.btn--wa    { background: var(--wa); color: #06341A; }
.btn--wa:hover { background: #2FE174; color: #06341A; }
.btn--ghost { background: transparent; color: var(--blue); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); background: var(--blue-tint); color: var(--blue); }
.btn--light { background: #fff; color: var(--blue-deep); }
.btn--light:hover { background: #fff; color: var(--blue-deep); }
.btn--onDark { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--onDark:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.6); }
.btn--block { inline-size: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; inset-block-start: 0; z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-block-end: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  min-block-size: 68px; padding-block: .6rem;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); flex: none; }
.brand:hover { color: var(--ink); }
.brand-mark { inline-size: 38px; block-size: 38px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 700; font-size: 1.06rem; letter-spacing: -.01em; }
.brand-sub { font-size: .74rem; color: var(--ink-soft); font-weight: 400; }
[lang="ar"] .brand-name { letter-spacing: normal; }

.nav { margin-inline-start: auto; display: none; }
.nav ul { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav a {
  display: block; padding: .5rem .7rem; border-radius: var(--radius-sm);
  color: var(--ink); text-decoration: none; font-size: .96rem; font-weight: 700;
}
.nav a:hover { background: var(--blue-tint); color: var(--blue); }
.nav .current-menu-item > a, .nav .current_page_item > a { color: var(--blue); background: var(--blue-tint); }

/* Dropdowns. Hover and :focus-within do the work; JS only handles taps. */
.nav .menu-item-has-children { position: relative; }
.nav .menu-item-has-children > a::after {
  content: ""; display: inline-block; vertical-align: middle;
  inline-size: 6px; block-size: 6px; margin-inline-start: .45rem;
  border: 1.6px solid currentColor; border-block-start: 0; border-inline-start: 0;
  transform: translateY(-2px) rotate(45deg); opacity: .55;
}
.nav .sub-menu {
  position: absolute; inset-block-start: calc(100% + .35rem); inset-inline-start: 0;
  min-inline-size: 232px; margin: 0; padding: .4rem; list-style: none;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); display: block;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .14s ease, transform .14s ease, visibility .14s;
}
.nav .menu-item-has-children:hover > .sub-menu,
.nav .menu-item-has-children:focus-within > .sub-menu,
.nav .menu-item-has-children.is-open > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav .sub-menu a { font-weight: 400; font-size: .93rem; padding: .55rem .7rem; white-space: nowrap; }

/* The mobile panel shows the same menu flat, children indented. */
.mobile-nav .sub-menu { list-style: none; margin: 0; padding: 0; }
.mobile-nav .sub-menu a { padding-inline-start: calc(var(--gutter) + 1.1rem); font-weight: 400; color: var(--ink-soft); }
.mobile-nav .menu-item-has-children > a[href="#"] { color: var(--ink-faint); font-size: .82rem; }

.header-cta { margin-inline-start: auto; display: flex; align-items: center; gap: .5rem; }
.header-phone {
  display: none; align-items: center; gap: .45rem;
  font-family: var(--mono); font-weight: 600; font-size: 1.02rem;
  color: var(--blue-deep); text-decoration: none; white-space: nowrap;
  padding: .5rem .75rem; border-radius: var(--radius-sm);
}
.header-phone:hover { background: var(--blue-tint); color: var(--blue-deep); }
.header-phone svg { inline-size: 1.05em; block-size: 1.05em; fill: var(--blue); }

.lang-switch {
  font-size: .82rem; font-weight: 700; text-decoration: none; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: .3rem .7rem; white-space: nowrap;
}
.lang-switch:hover { border-color: var(--blue); color: var(--blue); }

.nav-toggle {
  margin-inline-start: auto; display: inline-flex; align-items: center; gap: .45rem;
  background: transparent; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .55rem .7rem; font: inherit; font-size: .88rem; font-weight: 700;
  color: var(--ink); cursor: pointer;
}
.nav-toggle svg { inline-size: 18px; block-size: 18px; fill: currentColor; }

.mobile-nav { display: none; border-block-start: 1px solid var(--line); background: #fff; }
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: .5rem 0 1rem; }
.mobile-nav li { margin: 0; }
.mobile-nav a {
  display: block; padding: .8rem var(--gutter); text-decoration: none;
  color: var(--ink); font-weight: 700; border-block-end: 1px solid var(--line-soft);
}
.mobile-nav a:hover { background: var(--chill); color: var(--blue); }

@media (min-width: 1000px) {
  .nav { display: block; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .header-phone { display: inline-flex; }
  .nav + .header-cta { margin-inline-start: 1rem; }
}

/* --------------------------------------------------------------------------
   7. Hero
   The ground carries a fin texture — the parallel aluminium fins of a
   condenser coil, which is the surface a technician actually cleans.
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--blue-deep); color: #fff;
  padding-block: clamp(2.75rem, 7vw, 5.5rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    to bottom, transparent 0 5px, rgba(255,255,255,.05) 5px 6px);
}
.hero::after {
  content: ""; position: absolute; pointer-events: none;
  inset-block-start: -30%; inset-inline-end: -12%;
  inline-size: 60vw; block-size: 60vw; max-inline-size: 620px; max-block-size: 620px;
  background: radial-gradient(circle, rgba(55,198,232,.22), transparent 62%);
}
.hero > * { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-inline-size: 17ch; }
.hero-lede {
  font-size: clamp(1.06rem, 1rem + .4vw, 1.25rem);
  color: #C3DCEE; max-inline-size: 46ch; margin-block-end: 1.75rem;
}
.hero .btn-row { margin-block-end: 1.5rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(55,198,232,.14); border: 1px solid rgba(55,198,232,.35);
  color: #9FE6F8; border-radius: 999px; padding: .4rem .9rem;
  font-size: .84rem; font-weight: 700; margin-block-end: 1.25rem;
}
.hero-badge .dot {
  inline-size: 8px; block-size: 8px; border-radius: 50%; background: var(--ice); flex: none;
}

/* Trust strip — three facts, hairline separated. No icons-in-circles. */
.hero-facts {
  display: grid; gap: 0; margin-block-start: 2.25rem;
  border-block-start: 1px solid rgba(255,255,255,.16);
}
.hero-fact {
  padding-block: 1rem; border-block-end: 1px solid rgba(255,255,255,.16);
}
.hero-fact dt {
  font-size: .8rem; color: #8FB6D3; font-weight: 700; margin-block-end: .15rem;
}
.hero-fact dd { margin: 0; font-weight: 700; font-size: 1.06rem; color: #fff; }
@media (min-width: 720px) {
  .hero-facts { grid-template-columns: repeat(3, 1fr); border-block-end: 1px solid rgba(255,255,255,.16); }
  .hero-fact { border-block-end: 0; padding-inline-end: 1.5rem; }
  .hero-fact + .hero-fact {
    border-inline-start: 1px solid rgba(255,255,255,.16);
    padding-inline-start: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   8. Fault grid — the signature block
   Navigation by symptom, in the customer's own words, with the price band
   already visible. Every competitor leads with "about our company"; the
   person on the other end has a machine that is broken right now.
   -------------------------------------------------------------------------- */
.faults { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .faults { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .faults { grid-template-columns: repeat(3, 1fr); } }

.fault {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.35rem 1.35rem 1.15rem;
  text-decoration: none; color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.fault::before {
  content: ""; position: absolute; inset-block: 14px auto;
  inset-inline-start: -1px; inline-size: 3px; block-size: 26px;
  background: var(--ember); border-radius: 999px;
  transition: block-size .18s ease;
}
.fault:hover, .fault:focus-visible {
  border-color: #C3D4E2; box-shadow: var(--shadow-md);
  transform: translateY(-2px); color: var(--ink);
}
.fault:hover::before, .fault:focus-visible::before { block-size: calc(100% - 28px); }

.fault-code {
  font-family: var(--mono); font-size: .74rem; font-weight: 600;
  color: var(--ember-ink); background: var(--ember-tint);
  border-radius: 4px; padding: .15rem .45rem; align-self: flex-start;
  margin-block-end: .7rem;
}
.fault-title { font-size: 1.12rem; font-weight: 700; line-height: 1.4; margin: 0 0 .4rem; }
.fault-note { font-size: .93rem; color: var(--ink-soft); line-height: 1.65; margin: 0 0 1.1rem; }
.fault-foot {
  margin-block-start: auto; display: flex; align-items: center;
  justify-content: space-between; gap: .75rem;
  border-block-start: 1px solid var(--line-soft); padding-block-start: .85rem;
}
.fault-price { font-family: var(--mono); font-weight: 600; font-size: .95rem; color: var(--blue-deep); }
.fault-price small { font-family: var(--sans); font-weight: 400; color: var(--ink-faint); font-size: .8rem; }
.fault-go { display: inline-flex; align-items: center; gap: .3rem; font-size: .88rem; font-weight: 700; color: var(--blue); }
.fault-go svg { inline-size: 14px; block-size: 14px; fill: currentColor; transition: transform .16s ease; }
[dir="rtl"] .fault-go svg { transform: scaleX(-1); }
.fault:hover .fault-go svg { transform: translateX(3px); }
[dir="rtl"] .fault:hover .fault-go svg { transform: scaleX(-1) translateX(3px); }

/* --------------------------------------------------------------------------
   9. Service cards
   -------------------------------------------------------------------------- */
.cards { display: grid; gap: 1.15rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
  text-decoration: none; color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
a.card:hover, a.card:focus-visible {
  border-color: #C3D4E2; box-shadow: var(--shadow-md); transform: translateY(-2px); color: var(--ink);
}
.card-icon {
  inline-size: 40px; block-size: 40px; margin-block-end: .95rem;
  color: var(--blue); flex: none;
}
.card-icon svg { inline-size: 100%; block-size: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; }
.card h3 { margin-block-end: .4rem; }
.card p { color: var(--ink-soft); font-size: .96rem; line-height: 1.7; }
.card-link {
  margin-block-start: auto; padding-block-start: 1rem;
  font-weight: 700; font-size: .92rem; color: var(--blue);
  display: inline-flex; align-items: center; gap: .35rem;
}
.card-link svg { inline-size: 14px; block-size: 14px; fill: currentColor; }
[dir="rtl"] .card-link svg { transform: scaleX(-1); }

/* --------------------------------------------------------------------------
   10. Process — a real ordered sequence, so it is numbered
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: 1.5rem; counter-reset: step; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 1.15rem; } }
.step { position: relative; padding-block-start: 1.6rem; border-block-start: 2px solid var(--line); counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; inset-block-start: -.85rem; inset-inline-start: 0;
  background: var(--paper); padding-inline-end: .6rem;
  font-family: var(--mono); font-size: .95rem; font-weight: 600; color: var(--ice-deep);
}
.section--chill .step::before { background: var(--chill); }
.step h3 { font-size: 1.06rem; margin-block-end: .3rem; }
.step p { font-size: .95rem; color: var(--ink-soft); line-height: 1.7; }

/* --------------------------------------------------------------------------
   11. Price table
   -------------------------------------------------------------------------- */
.price-note {
  display: flex; gap: .85rem; align-items: flex-start;
  background: var(--blue-tint); border-inline-start: 3px solid var(--blue);
  border-radius: var(--radius-sm); padding: 1.1rem 1.25rem; margin-block-end: 1.75rem;
}
.price-note strong { display: block; color: var(--blue-deep); }
.price-note p { font-size: .96rem; color: var(--ink-soft); margin: .2rem 0 0; }
.price-note svg { inline-size: 22px; block-size: 22px; flex: none; fill: var(--blue); margin-block-start: .2rem; }

.price-table-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.price-table { font-size: 1rem; }
.price-table caption {
  text-align: start; padding: 1.1rem 1.25rem; background: var(--chill);
  font-weight: 700; border-block-end: 1px solid var(--line);
}
.price-table th, .price-table td { padding: .95rem 1.25rem; text-align: start; vertical-align: top; }
.price-table thead th {
  background: var(--chill); font-size: .82rem; color: var(--ink-soft);
  border-block-end: 1px solid var(--line); font-weight: 700;
}
.price-table tbody tr + tr td { border-block-start: 1px solid var(--line-soft); }
.price-table tbody tr:hover { background: #FBFDFE; }
.price-table td:last-child, .price-table th:last-child { text-align: end; white-space: nowrap; }
.price-table .price { font-weight: 600; color: var(--blue-deep); }
.price-table .price-quote { font-family: var(--sans); font-weight: 400; font-size: .92rem; color: var(--ink-soft); }
.price-table .row-label small { display: block; font-size: .85rem; color: var(--ink-faint); font-weight: 400; line-height: 1.55; }

/* --------------------------------------------------------------------------
   12. Checklist / feature lists
   -------------------------------------------------------------------------- */
.check { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
@media (min-width: 700px) { .check--2 { grid-template-columns: repeat(2, 1fr); gap: .7rem 2rem; } }
.check li { position: relative; padding-inline-start: 1.85rem; margin: 0; line-height: 1.7; }
.check li::before {
  content: ""; position: absolute; inset-inline-start: 0; inset-block-start: .6em;
  inline-size: 11px; block-size: 6px; border: 2px solid var(--ice-deep);
  border-block-start: 0; border-inline-end: 0; transform: rotate(-45deg);
}
.section--dark .check li::before { border-color: var(--ice); }

/* --------------------------------------------------------------------------
   13. FAQ
   -------------------------------------------------------------------------- */
.faq { border-block-start: 1px solid var(--line); }
.faq details { border-block-end: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 2.5rem 1.15rem 0;
  font-weight: 700; font-size: 1.05rem; position: relative;
}
[dir="rtl"] .faq summary { padding: 1.15rem 0 1.15rem 2.5rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; inset-inline-end: .4rem; inset-block-start: 1.55rem;
  inline-size: 10px; block-size: 10px; border: 2px solid var(--blue);
  border-block-start: 0; border-inline-start: 0; transform: rotate(45deg);
  transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); inset-block-start: 1.75rem; }
.faq summary:hover { color: var(--blue); }
.faq-body { padding-block-end: 1.25rem; color: var(--ink-soft); max-inline-size: 68ch; }

/* --------------------------------------------------------------------------
   14. Reviews
   -------------------------------------------------------------------------- */
.reviews { display: grid; gap: 1.15rem; }
@media (min-width: 700px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .reviews--3 { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column;
}
.stars { display: flex; gap: 2px; margin-block-end: .75rem; }
.stars svg { inline-size: 16px; block-size: 16px; fill: #F5A623; }
.review blockquote { margin: 0 0 1.15rem; font-size: 1rem; line-height: 1.8; }
.review-meta {
  margin-block-start: auto; padding-block-start: 1rem; border-block-start: 1px solid var(--line-soft);
  display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; flex-wrap: wrap;
}
.review-who { font-weight: 700; font-size: .95rem; }
.review-where { font-size: .85rem; color: var(--ink-faint); }

/* --------------------------------------------------------------------------
   15. Brands
   -------------------------------------------------------------------------- */
.brand-grid { display: grid; gap: .85rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .brand-grid { grid-template-columns: repeat(4, 1fr); } }
.brand-chip {
  display: flex; flex-direction: column; align-items: flex-start; gap: .2rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.15rem; text-decoration: none; color: var(--ink); background: var(--paper);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.brand-chip:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); color: var(--ink); }
.brand-chip b { font-size: 1.02rem; }
.brand-chip span { font-size: .84rem; color: var(--ink-faint); }

/* --------------------------------------------------------------------------
   16. Coverage / districts
   -------------------------------------------------------------------------- */
.districts { display: flex; flex-wrap: wrap; gap: .5rem; margin-block-start: 1.25rem; padding: 0; list-style: none; }
.districts li {
  margin: 0; font-size: .92rem; padding: .4rem .85rem; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #DCEBF6;
}
.section:not(.section--dark) .districts li {
  background: var(--chill); border-color: var(--line); color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   17. Split / prose
   -------------------------------------------------------------------------- */
.split { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr .95fr; } }
.prose { max-inline-size: 70ch; }
.prose h2 { margin-block-start: 2.25rem; }
.prose h2:first-child { margin-block-start: 0; }
.prose h3 { margin-block-start: 1.75rem; }
.prose ul { padding-inline-start: 1.35em; }

.panel {
  background: var(--chill); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.35rem, 3vw, 1.85rem);
}
.panel h3 { margin-block-end: .75rem; }
.panel--warn { background: var(--ember-tint); border-color: #F6D3C0; }
.panel--warn h3 { color: var(--ember-ink); }

/* Diagnostic list — symptom on the left, likely cause on the right */
.diag { border-block-start: 1px solid var(--line); }
.diag-row {
  display: grid; gap: .3rem 1.5rem; padding-block: 1.05rem;
  border-block-end: 1px solid var(--line);
}
@media (min-width: 700px) { .diag-row { grid-template-columns: 15rem 1fr; gap: 1.5rem; } }
.diag-sym { font-weight: 700; }
.diag-sym .code {
  display: inline-block; font-size: .78rem; color: var(--ember-ink);
  background: var(--ember-tint); border-radius: 4px; padding: .1rem .4rem;
  margin-inline-end: .4rem; font-weight: 600;
}
.diag-cause { color: var(--ink-soft); font-size: .97rem; line-height: 1.75; }

/* --------------------------------------------------------------------------
   18. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--blue); color: #fff; position: relative; overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(to bottom, transparent 0 5px, rgba(255,255,255,.05) 5px 6px);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-block-end: .5rem; }
.cta-band p { color: #C9E2F5; max-inline-size: 52ch; margin-block-end: 1.5rem; }
.cta-phone {
  display: inline-flex; align-items: center; gap: .5rem; margin-block-start: 1.1rem;
  font-family: var(--mono); font-size: 1.35rem; font-weight: 600;
  color: #fff; text-decoration: none; direction: ltr;
}
.cta-phone:hover { color: #fff; text-decoration: underline; }

/* --------------------------------------------------------------------------
   19. Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; gap: 1.15rem; }
@media (min-width: 760px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; background: var(--paper); display: flex; flex-direction: column;
}
.contact-card h3 { margin-block-end: .35rem; }
.contact-card p { color: var(--ink-soft); font-size: .96rem; }
.contact-value {
  font-family: var(--mono); font-size: 1.2rem; font-weight: 600;
  color: var(--blue-deep); text-decoration: none; direction: ltr; display: inline-block;
  margin-block: .35rem .85rem;
}
.contact-card .btn { margin-block-start: auto; }

.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding-block: .55rem; border-block-end: 1px solid var(--line-soft); margin: 0;
}
.hours li:last-child { border-block-end: 0; }
.hours .h-time { font-family: var(--mono); font-size: .95rem; color: var(--ink-soft); direction: ltr; }

/* Form */
.pf-form { display: grid; gap: 1rem; }
.pf-field label { display: block; font-weight: 700; font-size: .92rem; margin-block-end: .35rem; }
.pf-field input, .pf-field textarea, .pf-field select {
  inline-size: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff;
}
.pf-field input:focus, .pf-field textarea:focus, .pf-field select:focus {
  border-color: var(--blue); outline: 3px solid rgba(11,79,138,.16); outline-offset: 0;
}
.pf-field textarea { min-block-size: 120px; resize: vertical; }
.pf-form-note { font-size: .86rem; color: var(--ink-faint); }

/* --------------------------------------------------------------------------
   20. Breadcrumbs
   -------------------------------------------------------------------------- */
.crumbs { font-size: .87rem; color: #9FC0DA; padding-block-start: 1.25rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.crumbs li { margin: 0; display: flex; gap: .4rem; align-items: center; }
.crumbs li + li::before { content: "/"; color: rgba(255,255,255,.3); }
.crumbs a { color: #C3DCEE; text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs [aria-current] { color: #fff; }

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--blue-dark); color: #A9C6DD; padding-block: clamp(2.5rem, 6vw, 4rem) 0; font-size: .95rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; } }
.site-footer h3 { color: #fff; font-size: .95rem; margin-block-end: .9rem; }
.site-footer a { color: #A9C6DD; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-block-end: .5rem; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: #8FB0C9; font-size: .93rem; max-inline-size: 34ch; margin-block-start: .85rem; }
.footer-contact { font-family: var(--mono); font-size: 1.08rem; color: #fff; direction: ltr; display: inline-block; }

.legal-strip {
  margin-block-start: 2.5rem; border-block-start: 1px solid rgba(255,255,255,.12);
  padding-block: 1.35rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  align-items: center; font-size: .86rem; color: #7FA3BF;
}
.legal-strip .reg { font-family: var(--mono); }
.legal-strip .sep { color: rgba(255,255,255,.2); }
.maroof-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-sm);
  padding: .4rem .75rem; color: #DCEBF6 !important; font-weight: 700; font-size: .84rem;
  text-decoration: none !important;
}
.maroof-badge:hover { border-color: var(--ice); }
.footer-bottom { padding-block: 1.15rem; border-block-start: 1px solid rgba(255,255,255,.12); font-size: .85rem; color: #6E93B0; }

/* --------------------------------------------------------------------------
   22. Sticky call bar (mobile) — from the build kit, restyled
   -------------------------------------------------------------------------- */
.pf-bar {
  position: fixed; inset-block-end: 0; inset-inline: 0; z-index: 90; display: flex;
  box-shadow: 0 -2px 16px rgba(7,47,82,.18);
}
.pf-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1rem .5rem; font-weight: 700; font-size: 1.04rem; line-height: 1;
  color: #fff; text-decoration: none;
}
.pf-bar svg { inline-size: 1.15em; block-size: 1.15em; fill: currentColor; }
.pf-bar .pf-call { background: var(--blue); }
.pf-bar .pf-wa { background: var(--wa); color: #06341A; }
@media (min-width: 1000px) { .pf-bar { display: none; } }
@media (max-width: 999px) { :root { --bar-h: 56px; } }

/* --------------------------------------------------------------------------
   23. WordPress editor fallback + misc
   -------------------------------------------------------------------------- */
.entry-content > *:first-child { margin-block-start: 0; }
.entry-content img { border-radius: var(--radius); }
.wp-block-image figcaption { font-size: .87rem; color: var(--ink-faint); }
.alignwide, .alignfull { margin-inline: auto; }
.post-meta { color: var(--ink-faint); font-size: .9rem; }

.notice-404 { text-align: center; padding-block: clamp(3rem, 10vw, 6rem); }

/* Header WhatsApp button keeps its label only where there is room for it. */
@media (max-width: 599px) {
  .sr-only-sm {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
  }
  .brand-sub { display: none; }
}

/* Blog pagination */
.nav-links { display: flex; flex-wrap: wrap; gap: .4rem; }
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-inline-size: 42px; padding: .5rem .7rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 700; font-size: .95rem; color: var(--ink);
}
.page-numbers:hover { border-color: var(--blue); color: var(--blue); }
.page-numbers.current { background: var(--blue); border-color: var(--blue); color: #fff; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   24. Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* --------------------------------------------------------------------------
   25. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .pf-bar, .cta-band, .nav-toggle, .mobile-nav { display: none !important; }
  body { padding-block-end: 0; }
  .hero { background: #fff !important; color: #000 !important; }
  .hero h1, .hero-lede { color: #000 !important; }
}
