/* ==========================================================================
   RK Smart Water Tech — Design System v2
   Warm, rounded "clean water" consumer aesthetic — soft blue gradients,
   circular icon badges, pill buttons, wave dividers.
   ========================================================================== */

:root {
  --ink:        #0C2F4E;
  --ink-soft:   #35526B;
  --steel:      #5C7690;
  --steel-soft: #8CA2B7;
  --teal:       #0B84D6;
  --teal-dark:  #084A85;
  --teal-pale:  #E7F3FC;
  --accent:     #FF7A1E;
  --accent-dark:#E0630A;
  --bg:         #F5F9FD;
  --surface:    #FFFFFF;
  --line:       #DEEAF3;
  --line-strong:#BBD3E3;

  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

p { max-width: 62ch; }

.container-narrow { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------------------------------------------------------------------- */
/* Utility label — small pill-style eyebrow tag                            */
/* ---------------------------------------------------------------------- */
.spec-label {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-pale);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.spec-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* ---------------------------------------------------------------------- */
/* Top utility bar                                                         */
/* ---------------------------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: #CFE4F7;
  font-size: 0.82rem;
}
.topbar a { color: #CFE4F7; }
.topbar a:hover { color: #fff; }
.topbar .divider { color: var(--steel-soft); margin: 0 0.6rem; }

/* ---------------------------------------------------------------------- */
/* Navbar                                                                   */
/* ---------------------------------------------------------------------- */
.navbar-aq {
  background: var(--surface);
  border-bottom: none;
  box-shadow: 0 4px 22px rgba(12,47,78,0.06);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.navbar-aq .nav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar-aq .navbar-brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.navbar-aq .navbar-brand .brand-logo {
  height: 54px;
  width: auto;
  flex-shrink: 0;
}
.navbar-aq .navbar-brand .brand-sub {
  display: none;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  color: var(--steel);
  letter-spacing: 0.03em;
  padding-top: 2px;
  border-left: 1px solid var(--line-strong);
  padding-left: 0.7rem;
}
@media (min-width: 1200px) {
  .navbar-aq .navbar-brand .brand-sub { display: block; }
}
.navbar-aq .nav-link {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 0.55rem 0.85rem !important;
  border-radius: var(--radius-pill);
  transition: background 0.15s ease, color 0.15s ease;
}
.navbar-aq .nav-link:hover,
.navbar-aq .nav-link.active {
  color: var(--teal);
  background: var(--teal-pale);
}
.navbar-aq .dropdown-menu {
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 40px rgba(12,47,78,0.14);
  padding: 0.5rem;
}
.navbar-aq .dropdown-item { font-size: 0.92rem; padding: 0.6rem 1rem; border-radius: var(--radius-sm); }
.navbar-aq .dropdown-item:hover { background: var(--teal-pale); color: var(--teal-dark); }
.navbar-aq .dropdown-item:active { background: var(--teal); }
.btn-nav-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  transition: background 0.15s ease, transform 0.15s ease;
  box-shadow: 0 8px 18px rgba(255,122,30,0.28);
}
.btn-nav-cta:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }

/* ---------------------------------------------------------------------- */
/* Buttons                                                                  */
/* ---------------------------------------------------------------------- */
.btn-aq-primary {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.96rem;
  box-shadow: 0 10px 24px rgba(255,122,30,0.3);
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-aq-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; transform: translateY(-2px); }

.btn-aq-outline {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.65);
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.96rem;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-aq-outline:hover { background: rgba(255,255,255,0.18); color: #fff; border-color: #fff; transform: translateY(-2px); }

.btn-aq-outline-dark {
  background: transparent;
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
  font-weight: 600;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.96rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-aq-outline-dark:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ---------------------------------------------------------------------- */
/* Hero — soft gradient with wave divider                                  */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  overflow: hidden;
  padding: 5.5rem 0 7.5rem;
}
/* Dark colour-wash scrim over the full-bleed photo so text stays readable */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(6,54,94,0.58) 0%, rgba(8,74,133,0.5) 45%, rgba(11,100,163,0.38) 100%),
    radial-gradient(circle at 85% 12%, rgba(255,255,255,0.14) 0, transparent 45%),
    radial-gradient(circle at 8% 85%, rgba(255,255,255,0.10) 0, transparent 40%);
  z-index: 1;
}
.hero .container-narrow { position: relative; z-index: 2; }
.hero-eyebrow {
  color: #D5EEFF;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.14);
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.3rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.35rem);
  max-width: 16ch;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 10px rgba(4,28,48,0.45);
}
.hero p.lead-text {
  color: #DBEFFC;
  font-size: 1.08rem;
  max-width: 46ch;
  margin-bottom: 2.1rem;
  text-shadow: 0 1px 6px rgba(4,28,48,0.35);
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-photo {
  /* Image now spans the full hero section, sitting behind the text */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Slight blur keeps the photo present without competing with the text */
  filter: blur(1.5px) saturate(1.05) contrast(1.03);
  /* Scale up a touch so the blur never reveals soft edges */
  transform: scale(1.02);
}
.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}
.hero-slider .hero-slide.active { opacity: 1; z-index: 1; }
@media (max-width: 767px) {
  .hero .container-narrow { text-align: left; }
}

/* wave divider at the base of hero + page-hero, transitions into page bg */
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 3; line-height: 0; }
.hero-wave svg { display: block; width: 100%; height: 70px; }
.hero-wave svg path { fill: var(--bg); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2.6rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.9rem;
  max-width: 640px;
  position: relative;
  z-index: 2;
}
.hero-stats .stat-value {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 6px rgba(4,28,48,0.4);
}
.hero-stats .stat-label {
  font-size: 0.8rem;
  color: #BFE0F5;
  margin-top: 0.4rem;
}

/* Small hero for interior pages */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 3.6rem 0 5.2rem;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle at 88% 15%, rgba(255,255,255,0.16) 0, transparent 42%);
}
.page-hero .container-narrow { position: relative; z-index: 2; }
.page-hero .crumb { color: #D5EEFF; font-size: 0.85rem; margin-bottom: 0.8rem; }
.page-hero .crumb a { color: #D5EEFF; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.5rem); max-width: 24ch; margin: 0; }
.page-hero p { color: #DBEFFC; margin-top: 0.9rem; max-width: 56ch; }

.page-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}
.page-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,74,133,0.94) 0%, rgba(8,74,133,0.88) 32%, rgba(11,132,214,0.68) 58%, rgba(11,132,214,0.42) 80%, rgba(11,132,214,0.28) 100%);
}
@media (max-width: 767px) {
  .page-hero-photo::after {
    background: rgba(8,74,133,0.86);
  }
}

/* ---------------------------------------------------------------------- */
/* Happy customers — install log strip + photo cards                       */
/* ---------------------------------------------------------------------- */
.hc-logstrip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}
.hc-logstrip .stat-value {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
}
.hc-logstrip .stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--steel);
  margin-top: 0.3rem;
}
.hc-card {
  margin: 0;
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  height: 100%;
  box-shadow: 0 10px 26px rgba(12,47,78,0.08);
}
.hc-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hc-card figcaption {
  padding: 0.85rem 1.1rem 1.1rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.hc-card figcaption .tag {
  display: block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: var(--teal);
  margin-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .hc-logstrip { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 1rem; }
}

/* ---------------------------------------------------------------------- */
/* Facility photo band                                                     */
/* ---------------------------------------------------------------------- */
.facility-photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: none;
  box-shadow: 0 14px 34px rgba(12,47,78,0.12);
}
.facility-photo img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.facility-photo-caption {
  position: absolute;
  left: 0; bottom: 0;
  max-width: 420px;
  padding: 1.6rem 1.8rem;
  background: linear-gradient(0deg, rgba(8,74,133,0.92) 0%, rgba(8,74,133,0.78) 60%, rgba(8,74,133,0) 100%);
}
.facility-photo-caption .spec-label { background: rgba(255,255,255,0.16); color: #D5EEFF; }
.facility-photo-caption p { color: #E9F5FD; font-size: 0.92rem; margin: 0; max-width: 42ch; }
.facility-photo-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.01em;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 20px rgba(12,47,78,0.28);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
@media (max-width: 767px) {
  .facility-photo img { height: 240px; }
  .facility-photo-caption { padding: 1.1rem 1.2rem; }
}

/* Our Story — feature grid replacing the old stat-strip (fixes cramped wrapping) */
.story-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.story-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.1rem;
  box-shadow: 0 6px 16px rgba(12,47,78,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.story-feature:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(12,47,78,0.1); }
.story-feature .icon-circle {
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: linear-gradient(155deg, var(--teal-pale), #fff);
  color: var(--teal-dark);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(11,132,214,0.16), inset 0 0 0 1px rgba(11,132,214,0.12);
}
.story-feature h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 0.2rem;
}
.story-feature p { font-size: 0.8rem; color: var(--steel); margin: 0; }
@media (max-width: 575px) {
  .story-feature-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------- */
/* Sections                                                                 */
/* ---------------------------------------------------------------------- */
.section { padding: 4.8rem 0; }
.section-tight { padding: 3.2rem 0; }
.section-alt { background: var(--surface); border-top: none; border-bottom: none; }
.section-dark { background: var(--ink); color: #C7D9E8; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head { max-width: 62ch; margin-bottom: 2.6rem; }
.section-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.15rem); }
.section-head p { color: var(--steel); margin-top: 0.7rem; }

/* ---------------------------------------------------------------------- */
/* Spec cards — rounded, soft-shadow feature cards                         */
/* ---------------------------------------------------------------------- */
.spec-card {
  background: var(--surface);
  border: none;
  border-radius: var(--radius-md);
  padding: 1.9rem 1.7rem;
  height: 100%;
  position: relative;
  box-shadow: 0 8px 24px rgba(12,47,78,0.07);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.spec-card:hover { box-shadow: 0 16px 34px rgba(12,47,78,0.14); transform: translateY(-4px); }
.spec-card .icon-box {
  width: 54px; height: 54px;
  border: none;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.spec-card h3 { font-size: 1.08rem; margin-bottom: 0.55rem; }
.spec-card p { font-size: 0.92rem; color: var(--steel); margin-bottom: 0; }

/* Trust / icon-stat row — simple, no card chrome */
.trust-section { position: relative; }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.trust-item { text-align: center; padding: 0 0.5rem; }
.trust-item .icon-circle {
  width: 62px; height: 62px;
  border-radius: 18px;
  background: linear-gradient(155deg, var(--teal-pale), #fff);
  color: var(--teal-dark);
  font-size: 1.55rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 8px 18px rgba(11,132,214,0.16), inset 0 0 0 1px rgba(11,132,214,0.12);
}
.trust-item h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.trust-item p { font-size: 0.88rem; color: var(--steel); margin: 0 auto; max-width: 26ch; }
@media (max-width: 767px) {
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 2.2rem 1rem; }
}

/* Scope list — used for "Line of work" — friendly checklist with round bullets */
.scope-list { border-top: 1px solid var(--line); }
.scope-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}
.scope-item .idx {
  font-family: var(--font-head);
  color: #fff;
  background: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.scope-item .txt { font-size: 0.98rem; color: var(--ink-soft); padding-top: 0.15rem; }
.scope-item:hover .idx { background: var(--accent); }

/* Line of work section — decorative backdrop */
.line-of-work-section { position: relative; overflow: hidden; }
.line-of-work-section::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255,122,30,0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Service chips — compact tag-cloud version of "Line of work" */
.service-chips { display: flex; flex-wrap: wrap; gap: 0.8rem; position: relative; z-index: 1; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border: 1px solid rgba(11,132,214,0.18);
  padding: 0.55rem 1.15rem 0.55rem 0.6rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(11,132,214,0.07);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  cursor: default;
}
.chip i {
  width: 26px; height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: #fff;
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.chip:hover { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 22px rgba(11,132,214,0.22); }
.chip:hover i { background: rgba(255,255,255,0.22); color: #fff; }

/* Industry cards */
.industry-card {
  position: relative;
  background: linear-gradient(160deg, var(--teal-dark), var(--teal));
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  height: 100%;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 12px 28px rgba(8,74,133,0.22);
}
.industry-card h3 { color: #fff; font-size: 1.12rem; margin-bottom: 0.6rem; }
.industry-card p { color: #CDE8FA; font-size: 0.9rem; margin-bottom: 1.2rem; }
.industry-card a { color: #fff; font-weight: 600; font-size: 0.88rem; }
.industry-card a::after { content: " →"; }

/* Who We Serve — relocated, row-list style (distinct from old gradient cards) */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.serve-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.serve-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--teal), var(--accent));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s ease;
}
.serve-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(12,47,78,0.12);
  border-color: transparent;
}
.serve-row:hover::before { transform: scaleY(1); }
.serve-idx {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--steel-soft);
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  letter-spacing: 0.04em;
}
.serve-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.serve-row:hover .serve-icon { background: var(--teal); color: #fff; }
.serve-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.02rem;
  color: var(--ink);
}
.serve-text small {
  display: block;
  font-size: 0.85rem;
  color: var(--steel);
  margin-top: 0.15rem;
}
.serve-arrow {
  margin-left: auto;
  color: var(--steel-soft);
  font-size: 1rem;
  transition: transform 0.2s ease, color 0.2s ease;
}
.serve-row:hover .serve-arrow { color: var(--accent); transform: translateX(5px); }

@media (max-width: 767px) {
  .serve-grid { grid-template-columns: 1fr; }
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(12,47,78,0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.testimonial-card:hover { box-shadow: 0 18px 38px rgba(12,47,78,0.16); transform: translateY(-4px); }
.testimonial-card .photo { aspect-ratio: 16/10; overflow: hidden; background: var(--surface); }
.testimonial-card .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-card .body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.testimonial-card .stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.15em; margin-bottom: 0.9rem; }
.testimonial-card .quote { color: var(--ink-soft); font-size: 0.95rem; flex: 1; margin-bottom: 1.3rem; }
.testimonial-card .person { border-top: 1px solid var(--line); padding-top: 1rem; }
.testimonial-card .person .name { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.testimonial-card .person .loc { font-size: 0.8rem; color: var(--steel-soft); }

/* Sliding testimonial carousel — auto-scrolls continuously, pauses on hover/touch */
.testimonial-slider {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.testimonial-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0.4rem 1.5rem 1rem;
  animation: testimonial-scroll 42s linear infinite;
}
.testimonial-slider:hover .testimonial-track,
.testimonial-slider:focus-within .testimonial-track { animation-play-state: paused; }
.testimonial-track .testimonial-card {
  flex: 0 0 320px;
  width: 320px;
}
@keyframes testimonial-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 575px) {
  .testimonial-track .testimonial-card { flex-basis: 84vw; width: 84vw; }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-track { animation: none; }
}

/* Stat strip removed — replaced by .story-feature-grid on the About page */

/* Timeline / steps */
.step-row { display: flex; gap: 1.3rem; padding: 1.4rem 0; border-top: 1px solid var(--line); }
.step-row:last-child { border-bottom: 1px solid var(--line); }
.step-row .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--teal);
  background: var(--teal-pale);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.step-row h4 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.step-row p { font-size: 0.92rem; color: var(--steel); margin: 0; }

/* ---------------------------------------------------------------------- */
/* Category / product-range cards (photo top, rounded)                     */
/* ---------------------------------------------------------------------- */
.category-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 24px rgba(12,47,78,0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.category-card:hover { box-shadow: 0 18px 38px rgba(12,47,78,0.16); transform: translateY(-4px); }
.category-card .cat-photo { aspect-ratio: 16/11; background: var(--teal-pale); overflow: hidden; }
.category-card .cat-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.category-card .cat-body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.category-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.category-card p { font-size: 0.88rem; color: var(--steel); flex: 1; margin-bottom: 1rem; }
.category-card .cat-link { font-weight: 600; font-size: 0.88rem; color: var(--teal); }
.category-card .cat-link::after { content: " →"; transition: margin 0.15s ease; }
.category-card:hover .cat-link::after { margin-left: 4px; }

/* Product-group sub-headings on the homepage best-sellers grid */
.product-group-head h3 { font-family: var(--font-head); font-size: 1.05rem; margin: 0; }
.product-group-head a.cat-link { font-weight: 600; font-size: 0.85rem; color: var(--teal); white-space: nowrap; }
.product-group-head a.cat-link:hover { color: var(--teal-dark); }

/* "Available for every space" icon row */
.avail-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.avail-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  text-align: center;
  box-shadow: 0 8px 22px rgba(12,47,78,0.06);
}
.avail-item .icon-circle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.avail-item h3 { font-size: 0.98rem; margin-bottom: 0.4rem; }
.avail-item p { font-size: 0.84rem; color: var(--steel); margin: 0; }
@media (max-width: 767px) {
  .avail-row { grid-template-columns: repeat(2, 1fr); }
}

/* "Why choose us" split block — redesigned */
.why-section { position: relative; overflow: hidden; }
.why-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(11,132,214,0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-list { position: relative; }
.why-block { position: relative; display: flex; gap: 1.2rem; padding-bottom: 1.7rem; }
.why-list .why-block:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 54px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(var(--line-strong), rgba(222,234,243,0));
}
.why-block .icon-circle {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(155deg, var(--teal-pale), #fff);
  color: var(--teal-dark);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 18px rgba(11,132,214,0.16), inset 0 0 0 1px rgba(11,132,214,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-block:hover .icon-circle {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(11,132,214,0.24), inset 0 0 0 1px rgba(11,132,214,0.18);
}
.why-block h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.why-block p { font-size: 0.9rem; color: var(--steel); margin: 0; }

.why-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 0.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.why-trust-item { display: flex; flex-direction: column; }
.why-trust-item .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--ink);
  line-height: 1;
}
.why-trust-item .num small { font-size: 0.95rem; font-weight: 600; color: var(--teal); margin-left: 2px; }
.why-trust-item .lbl { font-size: 0.78rem; color: var(--steel); margin-top: 0.35rem; }

.why-photo-wrap { position: relative; }
.why-photo-glow {
  position: absolute;
  inset: -30px;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(11,132,214,0.16), transparent 55%),
    radial-gradient(circle at 85% 85%, rgba(255,122,30,0.14), transparent 55%);
  filter: blur(6px);
}
.why-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 18px 40px rgba(12,47,78,0.14); height: 100%; min-height: 320px; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-photo-clean {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.6rem;
  box-shadow: 0 30px 60px -18px rgba(12,47,78,0.28);
}
.why-photo-clean img { width: 100%; height: 100%; object-fit: contain; max-height: 420px; }
.why-photo-badge {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  z-index: 2;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.01em;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 20px rgba(12,47,78,0.28);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

@media (max-width: 767px) {
  .why-trust { gap: 1.3rem; }
}

/* Gallery masonry */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  gap: 0.9rem;
}
.gallery-grid a {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }
@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 110px; }
  .gallery-grid .wide { grid-column: span 2; }
}

/* Brand strip */
.brand-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.6rem 3.2rem; }
.brand-strip .brand-word {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--steel-soft);
  opacity: 0.85;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.brand-strip .brand-word:hover { color: var(--teal); opacity: 1; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--teal-dark), var(--teal));
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.6rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
  box-shadow: 0 18px 44px rgba(8,74,133,0.28);
}
.cta-band h3 { color: #fff; margin-bottom: 0.35rem; font-size: 1.35rem; }
.cta-band p { color: #D3ECFC; margin: 0; }

/* ---------------------------------------------------------------------- */
/* Cards: blog / product / store                                          */
/* ---------------------------------------------------------------------- */
.media-card {
  position: relative;
  background: var(--surface);
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(12,47,78,0.07);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.media-card:hover { box-shadow: 0 16px 34px rgba(12,47,78,0.14); transform: translateY(-4px); }
.media-card .best-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}
.media-card .media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--teal-pale), #DDEFFB);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 2.1rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.media-card .media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.1rem;
  mix-blend-mode: multiply;
}
.media-card .media.has-photo {
  background: #FFFFFF;
}
.media-card .media.media-cover img {
  object-fit: cover;
  padding: 0;
  mix-blend-mode: normal;
}
.media-card .body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.media-card .tag {
  font-size: 0.7rem; color: var(--teal); font-weight: 700; letter-spacing: 0.03em;
  text-transform: uppercase; margin-bottom: 0.5rem;
  background: var(--teal-pale); display: inline-block; padding: 0.2rem 0.65rem; border-radius: var(--radius-pill);
}
.media-card h3 { font-size: 1.08rem; margin-bottom: 0.55rem; }
.media-card p { font-size: 0.9rem; color: var(--steel); flex: 1; }
.media-card .meta { font-size: 0.8rem; color: var(--steel-soft); margin-top: 0.9rem; border-top: 1px solid var(--line); padding-top: 0.9rem; }

.price-tag { font-family: var(--font-head); color: var(--ink); font-weight: 700; font-size: 1.15rem; }
.price-tag .old { text-decoration: line-through; color: var(--steel-soft); font-weight: 400; font-size: 0.9rem; margin-right: 0.4rem; }

/* Filter pills (store) */
.pill-filter { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.pill-filter .btn {
  border: 1.5px solid var(--line-strong);
  color: var(--ink-soft);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.86rem;
  font-weight: 500;
}
.pill-filter .btn.active,
.pill-filter .btn:hover { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ---------------------------------------------------------------------- */
/* Forms                                                                    */
/* ---------------------------------------------------------------------- */
.form-control, .form-select {
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.95rem;
  font-size: 0.95rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(11,132,214,0.12);
}
label { font-size: 0.86rem; font-weight: 600; color: var(--ink); margin-bottom: 0.35rem; display: block; }

.contact-info-card {
  background: linear-gradient(150deg, var(--teal-dark), var(--teal));
  color: #fff;
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
  box-shadow: 0 18px 40px rgba(8,74,133,0.22);
}
.contact-info-card h3 { color: #fff; }
.contact-info-card .row-item { display: flex; gap: 0.9rem; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.16); }
.contact-info-card .row-item:first-of-type { border-top: none; }
.contact-info-card .row-item .lbl { color: #BFE0F5; font-size: 0.78rem; }
.contact-info-card .row-item .val { color: #fff; font-size: 0.98rem; }
.contact-info-card a { color: #fff; }

.map-frame { border: none; border-radius: var(--radius-md); overflow: hidden; height: 100%; min-height: 260px; box-shadow: 0 10px 26px rgba(12,47,78,0.1); }

/* ---------------------------------------------------------------------- */
/* Accordion (FAQ / industries detail)                                     */
/* ---------------------------------------------------------------------- */
.accordion-aq .accordion-item { border: none; border-radius: var(--radius-md) !important; margin-bottom: 0.9rem; overflow: hidden; box-shadow: 0 6px 20px rgba(12,47,78,0.06); }
.accordion-aq .accordion-button { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink); background: var(--surface); }
.accordion-aq .accordion-button:not(.collapsed) { background: var(--teal-pale); color: var(--teal-dark); box-shadow: none; }
.accordion-aq .accordion-button:focus { box-shadow: none; }
.accordion-aq .accordion-button::after { filter: hue-rotate(190deg) saturate(1.4); }

/* ---------------------------------------------------------------------- */
/* Footer                                                                   */
/* ---------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #A9C4DB; padding: 3.8rem 0 0; }
.site-footer h5 { color: #fff; font-size: 0.95rem; margin-bottom: 1.1rem; }
.site-footer a { color: #A9C4DB; }
.site-footer a:hover { color: #fff; }
.site-footer .brand { color: #fff; font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; }
.site-footer .footer-logo { height: 64px; width: auto; background: #fff; border-radius: var(--radius-sm); padding: 6px 10px; }
.site-footer .locations { font-size: 0.9rem; letter-spacing: 0.02em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.6rem; font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.8rem; padding: 1.3rem 0; font-size: 0.82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; }
.social-row { display: flex; gap: 0.7rem; }
.social-row a {
  width: 38px; height: 38px;
  border: none;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--teal); }

/* ---------------------------------------------------------------------- */
/* Cookie banner                                                           */
/* ---------------------------------------------------------------------- */
.cookie-banner {
  position: fixed; left: 1.2rem; right: 1.2rem; bottom: 1.2rem;
  max-width: 620px; margin: 0 auto;
  background: var(--ink);
  color: #D6E7F5;
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
  z-index: 1080;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-banner.hide { transform: translateY(30px); opacity: 0; pointer-events: none; }
.cookie-banner p { margin: 0; font-size: 0.86rem; flex: 1; min-width: 220px; }
.cookie-banner .actions { display: flex; gap: 0.6rem; }
.cookie-banner .btn-decline { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 0.85rem; padding: 0.45rem 1.1rem; border-radius: var(--radius-pill); }
.cookie-banner .btn-accept { background: var(--accent); border: none; color: #fff; font-size: 0.85rem; padding: 0.45rem 1.1rem; border-radius: var(--radius-pill); font-weight: 600; }

/* Back to top */
.back-to-top {
  position: fixed; right: 1.4rem; bottom: 5.6rem;
  width: 46px; height: 46px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(8,74,133,0.3);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); background: var(--teal-dark); }

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 24px rgba(37,211,102,0.4);
  z-index: 1050;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2.4s infinite;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); color: #fff; box-shadow: 0 14px 28px rgba(37,211,102,0.5); }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Floating Call button — sits directly above the WhatsApp button */
.call-float {
  position: fixed; right: 1.4rem; bottom: 6.6rem;
  width: 58px; height: 58px;
  background: var(--accent, #F5822C);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 10px 24px rgba(245,130,44,0.45);
  z-index: 1050;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: call-pulse 2.4s infinite;
}
.call-float:hover { transform: translateY(-3px) scale(1.05); color: #fff; box-shadow: 0 14px 28px rgba(245,130,44,0.55); }
@keyframes call-pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,130,44,0.45); }
  70% { box-shadow: 0 0 0 14px rgba(245,130,44,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,130,44,0); }
}
/* Push back-to-top above both floating buttons */
.back-to-top { bottom: 11.8rem; }
@media (max-width: 575px) {
  .whatsapp-float, .call-float { width: 52px; height: 52px; font-size: 1.4rem; }
  .call-float { bottom: 5.8rem; }
  .back-to-top { bottom: 10.4rem; }
}

/* Enquire Now modal */
.modal-aq { border: none; border-radius: var(--radius-md); overflow: hidden; }
.modal-aq .modal-header { background: linear-gradient(120deg, var(--teal-dark), var(--teal)); border-bottom: none; padding: 1.1rem 1.4rem; }
.modal-aq .modal-header .modal-title { color: #fff; font-family: var(--font-head); font-weight: 600; }
.modal-aq .modal-header .btn-close { filter: invert(1) grayscale(100%) brightness(200%); }
.modal-aq .modal-body { padding: 1.5rem 1.4rem 1.7rem; }
.enquire-product-line { font-size: 0.92rem; color: var(--steel); }
.enquire-product-line strong { color: var(--ink); }

/* ---------------------------------------------------------------------- */
/* Responsive                                                              */
/* ---------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .hero-stats { grid-template-columns: repeat(3, auto); gap: 1.6rem; }
  .cta-band { flex-direction: column; align-items: flex-start; text-align: left; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .avail-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
  .hero { padding: 3.2rem 0 4.5rem; text-align: left; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .hero-stats .stat-value { font-size: 1.3rem; }
  .section { padding: 3.2rem 0; }
  .contact-info-card { padding: 1.7rem 1.4rem; }
  .why-photo { min-height: 220px; }
}