/* ==========================================================================
   Self-hosted fonts (added 2026-07 — removes the last render-blocking
   third-party request and the fonts.googleapis/gstatic dependency)
   ========================================================================== */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/poppins-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/poppins-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/poppins-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/poppins-latin-800-normal.woff2') format('woff2'); }

/* ==========================================================================
   Dr. Kitchen Qatar — An Aamtron Group Company
   Commercial Kitchen Equipment Maintenance
   Master stylesheet
   ========================================================================== */

/* ----------  Design tokens  ---------- */
:root {
  /* Brand navy (aligned with Aamtron Group #0B1F3A) */
  --navy-900: #0B1F3A;
  --navy-850: #0F2A4D;
  --navy-800: #143862;
  --navy-700: #1C4B82;
  --navy-600: #2A5C99;

  /* Flame accent — cooking / heat / energy */
  --flame-500: #FF6A2C;
  --flame-600: #F25415;
  --flame-300: #FF9A5A;

  /* Teal accent — refrigeration / fresh / clean */
  --teal-500: #12B5A6;
  --teal-600: #0E9488;

  /* Gold — premium highlights, stars */
  --gold-500: #F5B301;

  /* Neutrals */
  --ink: #0B1726;
  --slate: #4A5A6E;
  --slate-light: #6B7C92;
  --line: #E5EAF1;
  --line-soft: #EEF2F7;
  --bg: #FFFFFF;
  --bg-soft: #F5F8FC;
  --bg-softer: #FAFCFE;
  --white: #FFFFFF;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.16);
  --shadow-flame: 0 14px 34px rgba(242, 84, 21, 0.30);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 40px);

  --grad-flame: linear-gradient(135deg, var(--flame-300) 0%, var(--flame-600) 100%);
  --grad-navy: linear-gradient(150deg, var(--navy-800) 0%, var(--navy-900) 100%);
  --grad-teal: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --ff-head: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ----------  Reset  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--ff-head); line-height: 1.15; font-weight: 700; color: var(--navy-900); letter-spacing: -0.02em; }
:focus-visible { outline: 3px solid var(--flame-500); outline-offset: 3px; border-radius: 4px; }

/* ----------  Layout helpers  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 116px) 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--grad-navy); color: #DCE6F4; }
.section--tight { padding: clamp(48px, 6vw, 72px) 0; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--flame-600);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-flame); border-radius: 2px; }
.eyebrow--center { justify-content: center; }
.section--navy .eyebrow { color: var(--flame-300); }

.section-title { font-size: clamp(28px, 4vw, 44px); margin-top: 14px; }
.section--navy .section-title { color: #fff; }
.section-lead { font-size: clamp(16px, 2vw, 19px); color: var(--slate); max-width: 64ch; margin-top: 16px; }
.section--navy .section-lead { color: #AFC2DC; }
.section-head { max-width: 760px; }
.section-head--center { margin-inline: auto; }

.text-gradient { background: var(--grad-flame); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ----------  Buttons  ---------- */
.btn {
  --btn-bg: var(--flame-500);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px;
  font-family: var(--ff-head); font-weight: 600; font-size: 15.5px; line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap; cursor: pointer; position: relative;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--grad-flame); color: #fff; box-shadow: var(--shadow-flame); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(242,84,21,.42); }
.btn--ghost { background: rgba(255,255,255,.10); color: #fff; border: 1.5px solid rgba(255,255,255,.34); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }
.btn--dark { background: var(--navy-900); color: #fff; }
.btn--dark:hover { background: var(--navy-800); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--navy-900); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--navy-800); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn--wa { background: #25D366; color: #08361A; }
.btn--wa:hover { background: #1FBE5A; transform: translateY(-3px); box-shadow: 0 16px 34px rgba(37,211,102,.34); }
.btn--lg { padding: 18px 36px; font-size: 17px; }
.btn--block { width: 100%; }

/* ----------  Top bar  ---------- */
.topbar { background: var(--navy-900); color: #C7D6EC; font-size: 13.5px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 42px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar__left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__right { display: flex; gap: 16px; align-items: center; }
.topbar svg { width: 15px; height: 15px; color: var(--flame-300); }
.topbar__badge { display: inline-flex; align-items: center; gap: 6px; color: var(--teal-500); font-weight: 600; }
.topbar__badge svg { color: var(--teal-500); }
@media (max-width: 760px) { .topbar__left .topbar__hideMobile { display: none; } }

/* ----------  Header / Nav  ---------- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line-soft); transition: box-shadow .3s, background .3s; }
.header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.94); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { height: 46px; width: auto; max-width: 170px; flex: none; border-radius: 10px; background: #fff; padding: 5px 8px; object-fit: contain; box-shadow: var(--shadow-sm); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--ff-head); font-weight: 800; font-size: 20px; color: var(--navy-900); letter-spacing: -0.02em; }
.brand__name span { color: var(--flame-500); }
.brand__tag { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-light); font-weight: 600; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link { display: inline-flex; align-items: center; gap: 5px; padding: 10px 14px; border-radius: 10px; font-family: var(--ff-head); font-weight: 500; font-size: 15px; color: var(--navy-850); transition: color .2s, background .2s; }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--flame-600); background: var(--bg-soft); }
.nav__link svg { width: 14px; height: 14px; opacity: .7; transition: transform .25s; }

.nav__item { position: relative; }
.nav__item--has-drop:hover .nav__link svg { transform: rotate(180deg); }
.nav__drop {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 290px; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transition: opacity .25s, transform .25s;
}
.nav__item--has-drop:hover .nav__drop, .nav__item--has-drop:focus-within .nav__drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__drop::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav__drop a { display: flex; gap: 12px; align-items: flex-start; padding: 11px 13px; border-radius: 12px; transition: background .2s; }
.nav__drop a:hover { background: var(--bg-soft); }
.nav__drop .di { width: 38px; height: 38px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--bg-soft); color: var(--flame-600); }
.nav__drop .di svg { width: 20px; height: 20px; }
.nav__drop .dt { font-family: var(--ff-head); font-weight: 600; font-size: 14.5px; color: var(--navy-900); }
.nav__drop .dd { font-size: 12.5px; color: var(--slate-light); line-height: 1.4; }

.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: #fff; }
.nav__toggle span { display: block; width: 21px; height: 2px; background: var(--navy-900); margin: 4px auto; border-radius: 2px; transition: .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav__menu { position: fixed; inset: 118px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 18px var(--gutter) 28px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); transform: translateY(-140%); transition: transform .4s var(--ease); max-height: calc(100vh - 118px); overflow-y: auto; }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__link { padding: 14px 12px; font-size: 16px; justify-content: space-between; border-radius: 12px; }
  .nav__drop { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; min-width: 0; padding: 4px 0 8px 12px; }
  .nav__item--has-drop .nav__drop { display: none; }
  .nav__item--has-drop.is-open .nav__drop { display: block; }
  .nav__toggle { display: block; }
  .nav__cta .btn--hide-mobile { display: none; }
}

/* ----------  Hero  ---------- */
.hero { position: relative; background: var(--grad-navy); color: #fff; overflow: hidden; padding: clamp(64px, 9vw, 116px) 0 clamp(72px,10vw,128px); }
.hero__glow { position: absolute; inset: 0; pointer-events: none; }
.hero__glow::before, .hero__glow::after { content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.hero__glow::before { width: 540px; height: 540px; background: radial-gradient(circle, rgba(255,106,44,.55), transparent 65%); top: -160px; right: -120px; }
.hero__glow::after { width: 520px; height: 520px; background: radial-gradient(circle, rgba(18,181,166,.45), transparent 65%); bottom: -200px; left: -140px; }
.hero__grid-bg { position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%); }
.hero .container { position: relative; z-index: 2; }
.hero__layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 64px); align-items: center; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border-radius: 999px; font-size: 13px; font-weight: 500;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #DDE7F5; }
.chip svg { width: 15px; height: 15px; color: var(--teal-500); }
.chip--flame svg { color: var(--flame-300); }

.hero h1 { font-size: clamp(33px, 5.2vw, 60px); color: #fff; font-weight: 800; line-height: 1.06; }
.hero h1 .text-gradient { display: inline; }
.hero__lead { font-size: clamp(16.5px, 2vw, 20px); color: #B9C9E0; margin-top: 22px; max-width: 56ch; }
.hero__lead strong { color: #fff; font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 38px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.hero__trust .t { display: flex; flex-direction: column; }
.hero__trust .t b { font-family: var(--ff-head); font-size: 26px; color: #fff; font-weight: 700; }
.hero__trust .t span { font-size: 13px; color: #9DB2D2; }

/* Hero side card */
.hero__card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 26px; backdrop-filter: blur(10px); box-shadow: var(--shadow-lg); }
.hero__card h3 { color: #fff; font-size: 19px; display: flex; align-items: center; gap: 10px; }
.hero__card h3 .dot { width: 10px; height: 10px; border-radius: 50%; background: #25D366; box-shadow: 0 0 0 4px rgba(37,211,102,.25); animation: pulse 2s infinite; }
.hero__card .muted { color: #9DB2D2; font-size: 13.5px; margin-top: 4px; }
.hero__svc { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.hero__svc li { display: flex; align-items: center; gap: 13px; padding: 13px 15px; border-radius: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); transition: transform .25s var(--ease), background .25s; }
.hero__svc li:hover { transform: translateX(4px); background: rgba(255,255,255,.09); }
.hero__svc .ic { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: rgba(255,106,44,.16); color: var(--flame-300); }
.hero__svc .ic svg { width: 21px; height: 21px; }
.hero__svc .tx b { display: block; color: #fff; font-family: var(--ff-head); font-weight: 600; font-size: 15px; }
.hero__svc .tx span { font-size: 12.5px; color: #9DB2D2; }

@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(37,211,102,.25);} 50% { box-shadow: 0 0 0 8px rgba(37,211,102,0);} }
@media (max-width: 960px) { .hero__layout { grid-template-columns: 1fr; } .hero__card { order: 2; } }

/* ----------  Logo / trust strip  ---------- */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line-soft); }
.trust-strip__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 34px; padding: 26px 0; }
.trust-strip__label { font-size: 13px; color: var(--slate-light); font-weight: 600; letter-spacing: .04em; }
.trust-strip__items { display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: center; }
.trust-badge { display: inline-flex; align-items: center; gap: 9px; font-family: var(--ff-head); font-weight: 600; font-size: 14px; color: var(--navy-800); }
.trust-badge svg { width: 22px; height: 22px; color: var(--teal-600); }

/* ----------  Cards grid  ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1040px) { .grid--4 { grid-template-columns: repeat(2,1fr);} .grid--3 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 680px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.s-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; overflow: hidden; }
.s-card::after { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; transform: scaleX(0); transform-origin: left; background: var(--grad-flame); transition: transform .35s var(--ease); }
.s-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.s-card:hover::after { transform: scaleX(1); }
.s-card__icon { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, #FFF1E9, #FFE2D2); color: var(--flame-600); margin-bottom: 20px; transition: transform .3s var(--ease); }
.s-card:hover .s-card__icon { transform: scale(1.06) rotate(-4deg); }
.s-card__icon svg { width: 30px; height: 30px; }
.s-card--teal .s-card__icon { background: linear-gradient(135deg, #E2F7F4, #CFF1EC); color: var(--teal-600); }
.s-card--teal::after { background: var(--grad-teal); }
.s-card h3 { font-size: 20px; margin-bottom: 10px; }
.s-card p { color: var(--slate); font-size: 15px; }
.s-card__list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.s-card__list li { display: flex; gap: 9px; font-size: 14px; color: var(--navy-850); align-items: flex-start; }
.s-card__list svg { width: 17px; height: 17px; color: var(--teal-600); flex: none; margin-top: 3px; }
.s-card__link { margin-top: 20px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--ff-head); font-weight: 600; font-size: 14.5px; color: var(--flame-600); }
.s-card__link svg { width: 16px; height: 16px; transition: transform .25s; }
.s-card:hover .s-card__link svg { transform: translateX(4px); }
.s-card__tag { position: absolute; top: 18px; right: 18px; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--flame-600); background: #FFF1E9; padding: 5px 10px; border-radius: 999px; }

/* ----------  Stats band  ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 14px; }
.stat__num { font-family: var(--ff-head); font-weight: 800; font-size: clamp(36px, 5vw, 54px); line-height: 1; background: var(--grad-flame); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { margin-top: 10px; color: #AFC2DC; font-size: 14.5px; }
.section--navy .stat__label { color: #AFC2DC; }
@media (max-width: 680px) { .stats { grid-template-columns: repeat(2,1fr); gap: 28px 12px; } }

/* ----------  Why-us  ---------- */
.feature { display: flex; gap: 18px; }
.feature__icon { width: 54px; height: 54px; flex: none; border-radius: 14px; display: grid; place-items: center; background: var(--bg-soft); color: var(--flame-600); }
.section--navy .feature__icon { background: rgba(255,255,255,.07); color: var(--flame-300); }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 18px; margin-bottom: 6px; }
.section--navy .feature h3 { color: #fff; }
.feature p { font-size: 14.5px; color: var(--slate); }
.section--navy .feature p { color: #AFC2DC; }

/* ----------  Process steps  ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
@media (max-width: 1040px){ .steps { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .steps { grid-template-columns: 1fr;} }
.step { position: relative; padding: 30px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .3s var(--ease), box-shadow .3s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__n { width: 50px; height: 50px; border-radius: 14px; background: var(--grad-navy); color: #fff; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 700; font-size: 21px; margin-bottom: 18px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--slate); }
.step__line { position: absolute; top: 55px; right: -30px; width: 30px; height: 2px; background: var(--line); }
@media (max-width: 1040px){ .step__line { display:none; } }

/* ----------  Sectors  ---------- */
.sector { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.sector:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.sector__icon { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--bg-soft); color: var(--navy-700); }
.sector:hover .sector__icon { background: var(--grad-flame); color: #fff; }
.sector__icon svg { width: 25px; height: 25px; }
.sector b { font-family: var(--ff-head); font-size: 16px; color: var(--navy-900); }
.sector span { font-size: 13.5px; color: var(--slate-light); }

/* ----------  Split / showcase  ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 900px){ .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media { position: relative; }
.media-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: var(--grad-navy); aspect-ratio: 4 / 3.4; position: relative; }
.media-card__illustration { position: absolute; inset: 0; }
.ck-list { margin-top: 26px; display: grid; gap: 14px; }
.ck-list li { display: flex; gap: 13px; align-items: flex-start; }
.ck-list .ck { width: 28px; height: 28px; flex: none; border-radius: 9px; background: #E2F7F4; color: var(--teal-600); display: grid; place-items: center; }
.ck-list .ck svg { width: 17px; height: 17px; }
.ck-list b { font-family: var(--ff-head); font-size: 15.5px; color: var(--navy-900); display: block; }
.ck-list span { font-size: 14px; color: var(--slate); }

.float-badge { position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); padding: 16px 18px; display: flex; align-items: center; gap: 13px; border: 1px solid var(--line); }
.float-badge--br { bottom: -22px; right: -10px; }
.float-badge--tl { top: -22px; left: -10px; }
.float-badge .fb-ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--grad-flame); color: #fff; flex: none; }
.float-badge .fb-ic svg { width: 22px; height: 22px; }
.float-badge b { font-family: var(--ff-head); font-size: 17px; color: var(--navy-900); display: block; line-height: 1.1; }
.float-badge span { font-size: 12.5px; color: var(--slate-light); }
@media (max-width: 520px){ .float-badge--br, .float-badge--tl { position: static; margin-top: 14px; } }

/* ----------  Testimonials  ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; display: flex; flex-direction: column; gap: 18px; transition: transform .3s var(--ease), box-shadow .3s; }
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stars { display: flex; gap: 3px; color: var(--gold-500); }
.stars svg { width: 19px; height: 19px; }
.quote-card p { color: var(--navy-850); font-size: 15.5px; line-height: 1.7; }
.quote-card__by { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.quote-card__av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 700; color: #fff; font-size: 17px; background: var(--grad-navy); flex: none; }
.quote-card__by b { font-family: var(--ff-head); font-size: 15px; color: var(--navy-900); display: block; }
.quote-card__by span { font-size: 13px; color: var(--slate-light); }

/* ----------  CTA band  ---------- */
.cta-band { position: relative; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 68px); background: var(--grad-navy); color: #fff; overflow: hidden; text-align: center; }
.cta-band::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(255,106,44,.42), transparent 65%); top: -180px; right: -120px; filter: blur(40px); }
.cta-band::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(18,181,166,.36), transparent 65%); bottom: -200px; left: -120px; filter: blur(40px); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); }
.cta-band p { color: #B9C9E0; font-size: 18px; margin: 14px auto 0; max-width: 60ch; }
.cta-band__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ----------  WhatsApp section  ---------- */
.wa-box { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 56px); align-items: center; background: linear-gradient(135deg, #0B3D24, #0A2E1C); border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 56px); color: #fff; position: relative; overflow: hidden; }
.wa-box::before { content:""; position:absolute; width: 360px; height: 360px; border-radius:50%; background: radial-gradient(circle, rgba(37,211,102,.30), transparent 65%); top:-140px; right:-100px; }
.wa-box > * { position: relative; z-index: 2; }
.wa-box h2 { color: #fff; font-size: clamp(24px, 3.4vw, 36px); }
.wa-box p { color: #BFE6CC; margin-top: 12px; font-size: 16px; }
.wa-box__num { font-family: var(--ff-head); font-weight: 800; font-size: clamp(26px,4vw,38px); color: #fff; margin-top: 6px; }
.wa-box__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.wa-box__hint { font-size: 13px; color: #9FD3B0; margin-top: 16px; }
@media (max-width: 760px){ .wa-box { grid-template-columns: 1fr; } }

/* ----------  Contact / form  ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px,5vw,56px); align-items: start; }
@media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; } }
.info-list { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item__ic { width: 50px; height: 50px; flex: none; border-radius: 13px; background: var(--bg-soft); color: var(--flame-600); display: grid; place-items: center; }
.info-item__ic svg { width: 24px; height: 24px; }
.info-item b { font-family: var(--ff-head); font-size: 15px; color: var(--navy-900); display: block; margin-bottom: 3px; }
.info-item a, .info-item p { color: var(--slate); font-size: 15px; }
.info-item a:hover { color: var(--flame-600); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3.5vw, 38px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px){ .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy-850); margin-bottom: 7px; font-family: var(--ff-head); }
.field label .req { color: var(--flame-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--bg-softer);
  transition: border-color .2s, box-shadow .2s, background .2s; font-size: 15px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--flame-500); background: #fff; box-shadow: 0 0 0 4px rgba(255,106,44,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.form-hp { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: 12.5px; color: var(--slate-light); margin-top: 14px; text-align: center; }
.form-success { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 12px; background: #E7F8EE; border: 1px solid #BBE6CB; color: #14784A; font-size: 14.5px; font-weight: 500; }
.form-success.show { display: block; }

/* ----------  FAQ  ---------- */
.faq { max-width: 860px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq__item.is-open { box-shadow: var(--shadow-md); border-color: transparent; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; font-family: var(--ff-head); font-weight: 600; font-size: 16.5px; color: var(--navy-900); }
.faq__q .ic { width: 30px; height: 30px; flex: none; border-radius: 8px; background: var(--bg-soft); color: var(--flame-600); display: grid; place-items: center; transition: transform .3s, background .3s, color .3s; }
.faq__item.is-open .faq__q .ic { background: var(--grad-flame); color: #fff; transform: rotate(45deg); }
.faq__q .ic svg { width: 18px; height: 18px; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a-inner { padding: 0 24px 22px; color: var(--slate); font-size: 15px; line-height: 1.7; }

/* ----------  Page hero (inner pages)  ---------- */
.page-hero { background: var(--grad-navy); color: #fff; padding: clamp(54px, 7vw, 92px) 0 clamp(48px,6vw,76px); position: relative; overflow: hidden; }
.page-hero__glow { position: absolute; inset: 0; pointer-events: none; }
.page-hero__glow::before { content:""; position:absolute; width: 480px; height: 480px; border-radius:50%; background: radial-gradient(circle, rgba(255,106,44,.40), transparent 65%); top:-200px; right:-100px; filter: blur(50px); }
.page-hero__glow::after { content:""; position:absolute; width: 420px; height: 420px; border-radius:50%; background: radial-gradient(circle, rgba(18,181,166,.32), transparent 65%); bottom:-220px; left:-120px; filter: blur(50px); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13.5px; color: #9DB2D2; margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.breadcrumb .current { color: var(--flame-300); }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.6vw, 50px); max-width: 18ch; }
.page-hero p { color: #B9C9E0; font-size: clamp(16px,2vw,19px); margin-top: 18px; max-width: 62ch; }
.page-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* ----------  Detailed service block  ---------- */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,60px); align-items: center; padding: clamp(28px,4vw,44px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.svc-block--rev .svc-block__media { order: 2; }
@media (max-width: 880px){ .svc-block { grid-template-columns: 1fr; } .svc-block--rev .svc-block__media { order: 0; } }
.svc-block__media { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; position: relative; background: var(--grad-navy); }
.svc-block__tag { display:inline-flex; align-items:center; gap:8px; font-family: var(--ff-head); font-weight:600; font-size: 13px; color: var(--flame-600); background:#FFF1E9; padding:7px 13px; border-radius:999px; }
.svc-block h2 { font-size: clamp(23px,3vw,32px); margin: 14px 0 12px; }
.svc-block p { color: var(--slate); font-size: 15.5px; }

/* ----------  Project cards  ---------- */
.project { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; transition: transform .3s var(--ease), box-shadow .3s; }
.project:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project__media { aspect-ratio: 16/10; position: relative; background: var(--grad-navy); overflow: hidden; }
.project__cat { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: rgba(11,31,58,.7); backdrop-filter: blur(4px); padding: 6px 12px; border-radius: 999px; }
.project__body { padding: 22px 22px 24px; }
.project__body h3 { font-size: 18px; margin-bottom: 8px; }
.project__body p { font-size: 14px; color: var(--slate); }
.project__meta { display: flex; gap: 16px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.project__meta div { font-size: 12.5px; color: var(--slate-light); }
.project__meta b { display: block; font-family: var(--ff-head); font-size: 14px; color: var(--navy-900); }

/* ----------  Footer  ---------- */
.footer { background: var(--navy-900); color: #9DB2D2; padding-top: clamp(56px, 7vw, 84px); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.10); }
@media (max-width: 980px){ .footer__top { grid-template-columns: 1fr 1fr; gap: 36px 28px; } }
@media (max-width: 560px){ .footer__top { grid-template-columns: 1fr; } }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__tag { color: #7E98BC; }
.footer__about { font-size: 14.5px; line-height: 1.7; margin-top: 18px; max-width: 38ch; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.07); color: #C7D6EC; transition: background .25s, transform .25s, color .25s; }
.footer__social a:hover { background: var(--flame-500); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer h4 { color: #fff; font-size: 15px; font-family: var(--ff-head); margin-bottom: 18px; letter-spacing: .02em; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { font-size: 14.5px; transition: color .2s, padding-left .2s; }
.footer__links a:hover { color: #fff; padding-left: 4px; }
.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__contact .fc { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; }
.footer__contact .fc svg { width: 18px; height: 18px; color: var(--flame-300); flex: none; margin-top: 3px; }
.footer__contact .fc a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 24px 0; font-size: 13px; }
.footer__bottom a:hover { color: #fff; }
.footer__bottom .fb-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ----------  Floating WhatsApp  ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: inline-flex; align-items: center; gap: 11px; padding: 13px 20px 13px 14px; border-radius: 999px; background: #25D366; color: #08361A; font-family: var(--ff-head); font-weight: 700; font-size: 14.5px; box-shadow: 0 14px 30px rgba(37,211,102,.4); transition: transform .25s, box-shadow .25s; }
.wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 38px rgba(37,211,102,.5); }
.wa-float .wic { width: 30px; height: 30px; display: grid; place-items: center; background: #fff; border-radius: 50%; }
.wa-float .wic svg { width: 19px; height: 19px; color: #25D366; }
.wa-float__txt { display: flex; flex-direction: column; line-height: 1.1; }
.wa-float__txt small { font-weight: 500; font-size: 11px; opacity: .8; }
@media (max-width: 560px){ .wa-float__txt { display: none; } .wa-float { padding: 14px; } }

/* ----------  Scroll reveal  ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } html { scroll-behavior: auto; } }

/* ----------  Utility  ---------- */
.mt-0 { margin-top: 0; }
.mt-s { margin-top: 12px; }
.mt-m { margin-top: 26px; }
.mt-l { margin-top: 44px; }
.hide { display: none !important; }
.lead-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.badge-inline { display:inline-flex; align-items:center; gap:7px; font-size:13px; font-weight:600; color: var(--teal-600); background:#E2F7F4; padding:6px 12px; border-radius:999px; }
.badge-inline svg { width:15px; height:15px; }

/* ----------  Areas served (local SEO)  ---------- */
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 920px; margin: 38px auto 0; }
.area-pill { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-family: var(--ff-head); font-weight: 600; font-size: 14.5px; color: var(--navy-850); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s, color .25s; }
.area-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; color: var(--flame-600); }
.area-pill svg { width: 16px; height: 16px; color: var(--flame-600); }

/* ==========================================================================
   Sticky mobile action bar  (added 2026-07 — conversion)
   ========================================================================== */
.mobar { display: none; }
@media (max-width: 860px) {
  .mobar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,.94); backdrop-filter: saturate(180%) blur(14px);
    border-top: 1px solid var(--line-soft, #E3E8EF);
    box-shadow: 0 -8px 24px rgba(11,31,58,.10);
  }
  .mobar a {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; border-radius: 12px; font-family: var(--ff-head, inherit);
    font-weight: 700; font-size: 15px; letter-spacing: .01em; text-decoration: none;
  }
  .mobar a svg { width: 19px; height: 19px; flex: none; }
  .mobar__call { background: var(--navy, #0B1F3A); color: #fff; }
  .mobar__wa   { background: #25D366; color: #08361A; }
  .mobar__call:active, .mobar__wa:active { transform: translateY(1px); }
  /* keep the floating bubble clear of the bar */
  .wa-float { bottom: 84px; right: 14px; padding: 11px 16px 11px 12px; font-size: 13.5px; }
  body { padding-bottom: 70px; }
}
@media (max-width: 380px) {
  .mobar a { font-size: 14px; }
  .mobar a .mobar__lbl { display: inline; }
}

/* Error state for the lead form status message */
.form-success.is-error {
  background: #FDECEA; border-color: #E7B9B3; color: #8A2B20;
}
.form-success a { color: inherit; text-decoration: underline; font-weight: 700; }

/* Service-page helpers */
.svc-hero__crumbs { font-size: 13.5px; opacity: .8; margin-bottom: 10px; }
.svc-hero__crumbs a { color: inherit; text-decoration: none; opacity: .85; }
.svc-hero__crumbs a:hover { opacity: 1; text-decoration: underline; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.related-card {
  display: block; padding: 16px 18px; border: 1px solid var(--line-soft, #E3E8EF);
  border-radius: 14px; background: #fff; text-decoration: none; transition: border-color .2s, transform .2s, box-shadow .2s;
}
.related-card:hover { border-color: var(--accent, #F25415); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(11,31,58,.08); }
.related-card b { display: block; font-family: var(--ff-head, inherit); color: var(--navy, #0B1F3A); margin-bottom: 4px; }
.related-card span { font-size: 14px; color: #5A6675; }
.quickform { max-width: 560px; }
.quickform .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 620px) { .quickform .form-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Mobile overflow guard + header fit  (added 2026-07)
   Fixes: .nav__cta pushed past the viewport on ≤560px screens, causing
   horizontal scroll and a clipped header on every page.
   ========================================================================== */
/* NOTE: never use overflow-x:hidden here — it makes html/body a scroll
   container and silently kills `position: sticky` on the header.
   `clip` prevents horizontal scroll WITHOUT creating a scroll container. */
html, body { max-width: 100%; }
body { overflow-x: clip; }
.nav { min-width: 0; }
.brand { min-width: 0; }
.brand__text { min-width: 0; }
.brand__name { overflow-wrap: normal; word-break: normal; }

@media (max-width: 560px) {
  /* the sticky bottom bar already carries Call + WhatsApp, so the header
     CTA is redundant here and is what causes the overflow */
  .nav__cta .btn--primary { display: none; }
  .brand__mark { height: 38px; width: auto; }
  .brand__tag { font-size: 10px; }
}
@media (max-width: 400px) {
  .brand__name { font-size: 16px; }
  .brand__tag { display: none; }
}

/* WhatsApp-styled CTA that stays visible on light backgrounds
   (.btn--ghost is white-on-transparent and disappears on white heroes) */
.btn--wa { background: #25D366; color: #08361A; border: 1.5px solid #1FBE5B; }
.btn--wa:hover { background: #1FBE5B; color: #052a13; transform: translateY(-3px); }

/* Sub-page hero — tighter than the full homepage hero */
.section--hero-sub { padding-top: 34px; padding-bottom: 34px; }
@media (max-width: 760px) { .section--hero-sub { padding-top: 22px; padding-bottom: 26px; } }

/* Tag/eyebrow pill: keep the icon a fixed size even when the label wraps */
.svc-block__tag { align-items: center; }
.svc-block__tag > svg { width: 17px; height: 17px; flex: 0 0 17px; }
@media (max-width: 560px) {
  .svc-block__tag { max-width: 100%; }
  .svc-block__tag > svg { width: 15px; height: 15px; flex: 0 0 15px; }
}
/* Brand text must never wrap mid-word in the header */
.brand__name span { white-space: nowrap; }  /* keep 'Qatar' intact */
@media (max-width: 400px) { .brand__name { font-size: 15px; } }

/* `.lead` was used on the original pages but never defined — define it once
   so intro paragraphs are consistent sitewide. */
.lead { font-size: 17px; line-height: 1.75; color: var(--slate); max-width: 76ch; }
.lead b { color: var(--navy-900); }
@media (max-width: 680px) { .lead { font-size: 16px; } }

/* Single-column variant of .svc-block (no media panel) — used by the
   "What this service covers" card on the service pages. Without this the
   2-column grid leaves the right half empty. */
.svc-block--single { grid-template-columns: 1fr; }
.svc-block--single h2 { margin-top: 0; }

/* ==========================================================================
   Accessibility (added 2026-07 after audit): visible keyboard focus +
   ≥44px tap targets on touch layouts (WCAG 2.4.7 / 2.5.8)
   ========================================================================== */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--flame-600, #F25415);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (max-width: 860px) {
  .footer__links a { display: block; padding: 10px 0; }
  .topbar a, .topbar__right a { padding: 10px 4px; display: inline-flex; align-items: center; }
  .footer__social a { min-width: 44px; min-height: 44px; display: inline-grid; place-items: center; }
}
