/*
Theme Name: ADAG Theme
Theme URI: https://adag.ae
Author: ADAG
Author URI: https://adag.ae
Description: Premium Aluminium, Glass & Architectural Solutions - ADAG Official Website Theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adag-theme
Tags: business, corporate, custom-menu, featured-images, full-width-template
*/

/* ==============================
   RESET & BASE
============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:     #CC1B1B;
  --navy:    #1A2744;
  --white:   #FFFFFF;
  --light-bg:#F5F7FA;
  --gray:    #666666;
  --border:  #E2E8F0;
  --font:    'Manrope', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================
   TYPOGRAPHY
============================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}

/* ==============================
   HEADER / NAVBAR
============================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ── Top bar: logo + main nav + CTA ── */
.header-top-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 8px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .header-inner {
    height: 88px;
  }
}

.site-logo {
  overflow: visible;
  flex-shrink: 0;
}
.site-logo img {
  height: 66px;
  width: auto;
  display: block;
}
@media (max-width: 900px) {
  .site-logo img {
    height: 80px !important;
  }
}
@media (max-width: 560px) {
  .site-logo img {
    height: 76px !important;
  }
}

/* ── Main nav (HOME, ABOUT US, etc.) ── */
.main-nav { flex: 1; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: center;
}

.nav-item > a {
  display: block;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color .15s;
  white-space: nowrap;
}

.nav-item > a:hover { color: var(--red); }

.nav-item.current-menu-item > a {
  color: var(--red);
  border-bottom: 2px solid var(--red);
}

.nav-caret { font-size: 10px; }

/* ══════════════════════════════════════════════
   PRODUCTS BAR  (the second row with 4 tabs)
══════════════════════════════════════════════ */

/* WordPress Customizer toolbar fix */
.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar #site-header { top: 46px; } }

.products-bar {
  background: #fff;
  border-bottom: 1px solid #dde2ea;
  position: relative;
  z-index: 500;
}

.products-tab-list {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ptab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333;
  cursor: pointer;
  border-right: 1px solid #dde2ea;
  user-select: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
  position: relative; /* needed for hover bridge */
}

.ptab:first-child { border-left: none; }
.ptab:hover,
.ptab.ptab-active { background: var(--red); color: #fff; }
.ptab-caret { font-size: 10px; }

/* Invisible hover bridge so mouse can travel from tab to panel */
.ptab::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

/* ══════════════════════════════════════════════
   MEGA PANEL — hidden by default, shown on hover
══════════════════════════════════════════════ */
.mega-panel {
  display: none;              /* CLOSED by default */
  background: #fff;
  border-top: 1px solid #dde2ea;
  box-shadow: 0 8px 28px rgba(0,0,0,0.11);
  padding: 26px 0 30px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 400;
  top: 100%;
}

.mega-panel.is-open { display: block; }

.mega-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* Left: columns of links */
.mega-cols {
  display: flex;
  flex: 1;
  gap: 0;
}

/* Uniform tight column width — same across ALL panels */
.mega-col {
  flex: 0 0 200px;
  width: 200px;
  padding-right: 16px;
  border-right: 1px solid #eef0f4;
  margin-right: 16px;
}

.mega-col:last-child {
  border-right: none;
  margin-right: 0;
}

.mega-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 9px;
}

/* Clickable category headings */
.mega-col-title a {
  color: #1a1a1a;
  transition: color .15s;
}
.mega-col-title a:hover { color: var(--red); }

/* Space between stacked groups within same column */
.mega-col-title.mt { margin-top: 18px; }

.mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-col ul li {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 4px;
}

.mega-col ul li::before {
  content: "▸";
  font-size: 8px;
  color: #999;
  flex-shrink: 0;
  line-height: 2;
}

.mega-col ul li a {
  font-size: 13px;
  color: #333;
  font-weight: 400;
  line-height: 1.5;
  transition: color .15s;
}

.mega-col ul li a:hover { color: var(--red); }

/* Right: product image */
.mega-image {
  flex-shrink: 0;
  width: 360px;
  height: 210px;
  overflow: hidden;
  border-radius: 2px;
  margin-left: auto;
}

.mega-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA Button */
.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 2px;
  transition: background .2s;
  white-space: nowrap;
}

.btn-quote:hover { background: var(--red); }

.btn-quote .arrow {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 4px 8px;
  font-size: 14px;
  border-radius: 1px;
  transition: background .2s;
}

.btn-quote:hover .arrow { background: var(--navy); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s;
}

/* ==============================
   HERO SECTION
============================== */
#hero {
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #e8ecf3 0%, #d0d8e8 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  /* Gradient overlay only — the photo itself lives in the single
     .hero-placeholder-img <img> element, so there's only ever one
     image layer (no duplicate CSS background to flash/swap against). */
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.92) 40%, rgba(255,255,255,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 80px 0;
}

.hero-content h1 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 26px;
  border-radius: 2px;
  transition: background .2s;
}
.btn-primary:hover { background: #0f1b35; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 26px;
  border-radius: 2px;
  transition: background .2s;
}
.btn-secondary:hover { background: #a81515; }

.btn-primary .arrow,
.btn-secondary .arrow {
  font-size: 16px;
}

/* ==============================
   TRUST BAR
============================== */
#trust-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.trust-icon svg { width: 36px; height: 36px; }

.trust-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.trust-text p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ==============================
   PRODUCTS SECTION
============================== */
#products {
  padding: 90px 0 80px;
  background: #fff;
}

.products-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.products-eyebrow,
.products-heading .products-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--red) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.products-heading h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.15;
}

.products-heading p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}

.product-card:hover {
  box-shadow: 0 10px 28px rgba(26,39,68,0.1);
  transform: translateY(-3px);
  border-color: var(--red);
}

.product-card-img {
  height: 210px;
  overflow: hidden;
  background: var(--light-bg);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.product-card-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0 0 6px;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.02em;
}

.product-card-link .arr { font-size: 13px; transition: transform .2s; }
.product-card:hover .product-card-link .arr { transform: translateX(3px); }

.products-viewall {
  margin-top: 36px;
  text-align: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 26px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ==============================
   WHAT WE DO GRID
============================== */
.whatwedo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.whatwedo-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 8px 4px;
}

.whatwedo-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204,27,27,0.08);
  border-radius: 10px;
  color: var(--red);
  margin-bottom: 18px;
}

.whatwedo-icon svg { width: 26px; height: 26px; }

.whatwedo-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.whatwedo-item p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
}

@media (min-width: 561px) {
  .whatwedo-item {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .whatwedo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .whatwedo-grid { grid-template-columns: 1fr; }
}

/* ==============================
   CATALOGUE BANNER
============================== */
#catalogue-banner {
  padding: 0 0 90px;
  background: #fff;
}

.catalogue-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--navy);
  background-image: linear-gradient(120deg, #1A2744 0%, #24345c 100%);
  border-radius: 10px;
  padding: 28px 32px;
  flex-wrap: wrap;
}

.catalogue-card-thumb {
  flex-shrink: 0;
  width: 74px;
  height: 96px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.catalogue-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalogue-card-body {
  flex: 1;
  min-width: 220px;
}

.catalogue-card-body h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.catalogue-card-body p {
  color: rgba(255,255,255,0.75);
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 560px;
}

.catalogue-card-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .catalogue-card { flex-direction: column; align-items: flex-start; text-align: left; }
  .catalogue-card-btn { width: 100%; justify-content: center; }
}

/* ==============================
   EIGHT CATALOGUE FAMILIES
============================== */
#product-families {
  padding: 50px 0 90px;
  background: var(--light-bg);
}

.families-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.family-tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}

.family-tile:hover {
  box-shadow: 0 10px 28px rgba(26,39,68,0.1);
  transform: translateY(-3px);
  border-color: var(--red);
}

.family-tile-img {
  height: 160px;
  overflow: hidden;
  background: #eef1f6;
}

.family-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .3s ease;
}

.family-tile:hover .family-tile-img img { transform: scale(1.05); }

.family-tile-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.family-tile-body h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.35;
}

.family-tile-body p {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.55;
  margin: 0 0 4px;
}

.family-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
}

.family-tile-link .arr { font-size: 12px; transition: transform .2s; }
.family-tile:hover .family-tile-link .arr { transform: translateX(3px); }

@media (max-width: 1024px) {
  .families-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .families-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .families-grid { grid-template-columns: 1fr; }
}

/* ==============================
   STATS / CTA BANNER
============================== */
#stats-banner {
  background: var(--navy);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
}

.stat-item {
  text-align: left;
}

.stat-icon {
  color: var(--red);
  margin-bottom: 8px;
}
.stat-icon svg { width: 40px; height: 40px; }

.stat-item .number {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item .label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.stats-cta h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.stats-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* Watermark cityscape */
#stats-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('images/cityscape-watermark.png') right bottom/contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

/* ==============================
   FOOTER
============================== */
#site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo img { height: 38px; width: auto; }

.footer-copy {
  font-size: 13px;
  color: var(--gray);
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 13px;
  color: #555;
  transition: color .15s;
}
.footer-nav a:hover { color: var(--red); }

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social a {
  color: #fff;
  font-size: 14px;
  transition: color .15s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  box-sizing: border-box;
}

.footer-social a:hover { color: var(--navy); }

/* ==============================
   HERO IMAGE FALLBACK (SVG placeholder)
============================== */
.hero-placeholder-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-placeholder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1100px) {
  .ptab { padding: 10px 14px; font-size: 12px; }
}

@media (max-width: 900px) {
  .main-nav, .btn-quote { display: none; }
  .hamburger { display: flex; }
  .products-tab-list { overflow-x: auto; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-banner-inner { grid-template-columns: 1fr; }

  .mega-inner { flex-direction: column; }
  .mega-image { width: 100%; height: 160px; margin: 16px 0 0; }
  .mega-cols { flex-wrap: wrap; gap: 16px 0; }
  .mega-col { min-width: 140px; }
}

@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 26px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .ptab { font-size: 11px; padding: 9px 10px; }
}

/* Mobile Nav drawer */
.main-nav.open {
  display: block;
  position: absolute;
  top: 88px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 999;
}
.main-nav.open .nav-list {
  flex-direction: column;
  align-items: stretch;
  padding: 8px 0;
}
.main-nav.open .nav-item > a {
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
}

/* ══════════════════════════════════════════════
   PRODUCT CATEGORY & DETAIL PAGES
══════════════════════════════════════════════ */

/* Breadcrumb + hero band */
.page-cat-hero {
  background: var(--navy);
  padding: 0;
  height: 280px;
  display: flex;
  align-items: flex-start;
}

.page-cat-hero .container {
  padding-top: 72px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

.breadcrumb a { color: rgba(255,255,255,0.75); transition: color .15s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .current { color: #fff; font-weight: 600; }

.page-cat-hero h1 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.page-cat-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
}

/* Sub-category card grid */
.product-cat-page { padding: 56px 0 72px; }

.page-intro-content {
  font-size: 15px;
  color: #555;
  max-width: 760px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.product-subcat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.subcat-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  background: #fff;
}

.subcat-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.subcat-card-img {
  height: 180px;
  overflow: hidden;
  background: var(--light-bg);
}

.subcat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.subcat-card:hover .subcat-card-img img { transform: scale(1.05); }

.subcat-card-img--placeholder {
  background: linear-gradient(135deg, #e8ecf3 0%, #d0d8e8 100%);
}

.subcat-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.subcat-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.subcat-card-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}

.subcat-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Product Detail Page */
.product-detail-page { padding: 56px 0 80px; }

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.product-main-img img {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.product-img-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #e8ecf3 0%, #d0d8e8 100%);
  border-radius: 3px;
}

.product-detail-info h1 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.product-description {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .product-detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .product-subcat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .product-subcat-grid { grid-template-columns: 1fr; }
}


/* ==============================
   SECTION HEADER (shared)
============================== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-header .red-bar {
  width: 48px;
  height: 4px;
  background: var(--red);
  margin: 12px auto 16px;
  border-radius: 2px;
}
.section-header p {
  color: var(--gray);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

/* ==============================
   INSIDE ADAG
============================== */
#inside-adag {
  padding: 80px 0;
  background: #fff;
}
.inside-adag-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: center;
}
.inside-adag-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(26,39,68,0.12);
  height: 340px;
}
.inside-adag-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.inside-adag-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  letter-spacing: 0.01em;
}
.inside-adag-content h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 6px 0 18px;
}
.inside-adag-lead {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.inside-adag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.inside-adag-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
}
.inside-adag-list .check-ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(204,27,27,0.1);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

@media (min-width: 861px) {
  .inside-adag-img {
    margin-top: 28px;
  }
}

@media (max-width: 860px) {
  .inside-adag-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .inside-adag-img { height: 260px; }
}

/* ==============================
   WHY CHOOSE US
============================== */
#why-us {
  padding: 80px 0;
  background: var(--light-bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: #fff;
  border-radius: 6px;
  padding: 32px 28px;
  border-bottom: 3px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.why-card:hover {
  border-bottom-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(204,27,27,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--red);
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ==============================
   HOW IT WORKS
============================== */
#how-it-works {
  padding: 80px 0;
  background: #fff;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.step-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.step-icon svg { width: 28px; height: 28px; }
.step-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}
.step-connector { display: none; }

/* ==============================
   TESTIMONIALS
============================== */
#testimonials {
  padding: 80px 0;
  background: #fff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
}
.testimonial-card > p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--gray);
}

/* ==============================
   HOME FAQ
============================== */
#home-faq {
  padding: 80px 0;
  background: var(--light-bg);
}

.home-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .2s;
}

.home-faq-item.open { border-color: var(--red); }

.home-faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.home-faq-question span:first-child {
  flex: 1 1 auto;
  min-width: 0;
  word-wrap: break-word;
  line-height: 1.4;
}

.home-faq-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: transform .2s;
  margin-top: 2px;
}

.home-faq-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.home-faq-item.open .home-faq-icon { transform: rotate(45deg); }

.home-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.home-faq-item.open .home-faq-answer {
  max-height: 300px;
}

.home-faq-answer p {
  padding: 0 22px 18px;
  margin: 0;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.home-faq-more {
  text-align: center;
  margin-top: 32px;
}

/* ==============================
   CTA BANNER
============================== */
#cta-banner {
  padding: 70px 0;
  background: var(--navy);
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.cta-text p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cta-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.cta-btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
.cta-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.cta-btn-phone:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ==============================
   HERO OVERLAY DARK (stronger)
============================== */
.hero-bg::after {
  background: linear-gradient(90deg, rgba(26,39,68,0.82) 35%, rgba(26,39,68,0.2) 100%) !important;
}
.hero-content h1 { color: #fff !important; }
.hero-content p  { color: rgba(255,255,255,0.85) !important; }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .home-faq-question { padding: 16px 16px; font-size: 14px; }
  .home-faq-answer p { padding: 0 16px 16px; }
}

/* ==============================
   PAGE HERO (shared - About/Contact/Legal)
============================== */
.page-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: flex-start;
  background-size: cover;
  background-position: center;
}

.page-hero .container {
  padding-top: 72px;
  width: 100%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,39,68,0.82), rgba(26,39,68,0.55));
}
.about-hero {
  background-image: url('images/about-hero.jpg');
  background-size: cover;
  background-position: center;
}
.page-hero-title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}

/* ==============================
   SECTION HEADER (shared)
============================== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-header .red-bar {
  width: 48px;
  height: 4px;
  background: var(--red);
  margin: 12px auto 16px;
  border-radius: 2px;
}
.section-header p {
  color: var(--gray);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

/* ==============================
   ABOUT US PAGE
============================== */
.about-section { padding: 70px 0; }
.about-section-alt { background: var(--light-bg); }
.about-heading {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  font-family: Georgia, 'Times New Roman', serif;
}
.about-founder-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
  text-align: center;
}
.about-founder-text p {
  color: #444;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-signature {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.about-signature strong { font-size: 16px; color: var(--navy); }
.about-signature span { font-size: 13px; color: var(--gray); font-style: italic; }
.about-founder-img {
  display: flex;
  justify-content: center;
}
.about-founder-img img {
  width: 92%;
  max-width: 440px;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.about-whoweare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
  text-align: center;
}
.about-whoweare-text p { color: #444; font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.about-whoweare-img {
  display: flex;
  justify-content: center;
}
.about-whoweare-img img {
  width: 92%;
  max-width: 480px;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 56px;
  padding: 36px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.about-stats-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-stat-box { border-right: 1px solid var(--border); padding-right: 12px; }
.about-stat-box:nth-child(2n) { border-right: none; }
.about-stat-num { font-size: 32px; font-weight: 800; color: var(--red); line-height: 1; }
.about-stat-label { font-size: 13px; color: var(--gray); margin-top: 6px; }

.about-experience-badge {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(204,27,27,0.35);
}
.about-experience-badge svg { width: 26px; height: 26px; margin-bottom: 6px; }
.about-experience-num { font-size: 26px; font-weight: 800; line-height: 1; }
.about-experience-label { font-size: 11px; text-align: center; margin-top: 4px; padding: 0 8px; }

.about-whychoose { text-align: center; }
.about-whychoose h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.about-whychoose p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.about-checklist { list-style: none; display: flex; flex-direction: column; align-items: stretch; gap: 10px; max-width: 320px; margin: 0 auto; }
.about-checklist li { display: flex; gap: 10px; font-size: 14px; color: #444; line-height: 1.5; text-align: left; }
.about-checklist svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 2px; }

.about-values-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.about-vm-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}
.about-vm-icon {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}
.about-vm-icon svg { width: 22px; height: 22px; }
.about-vm-card h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.about-vm-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* TIMELINE */
.about-timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 0;
}
.about-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 48px;
  box-sizing: border-box;
}
.timeline-left { left: 0; text-align: right; }
.timeline-right { left: 50%; text-align: left; }
.timeline-dot {
  position: absolute;
  top: 4px;
  width: 16px; height: 16px;
  background: var(--red);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--red);
}
.timeline-left .timeline-dot { right: -8px; }
.timeline-right .timeline-dot { left: -8px; }
.timeline-year { display: inline-block; font-size: 13px; font-weight: 800; color: var(--red); letter-spacing: 0.06em; margin-bottom: 6px; }
.timeline-content h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.timeline-content p { font-size: 14px; color: var(--gray); line-height: 1.6; }

@media (max-width: 768px) {
  .about-founder-grid, .about-whoweare-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-founder-img img, .about-whoweare-img img { width: 100%; max-width: 480px; }
  .about-stats-grid { grid-template-columns: 1fr; text-align: center; }
  .about-values-mission-grid { grid-template-columns: 1fr; }
  .about-timeline::before { left: 16px; }
  .timeline-item, .timeline-left, .timeline-right { width: 100%; left: 0; text-align: left; padding-left: 44px; padding-right: 0; }
  .timeline-left .timeline-dot, .timeline-right .timeline-dot { left: 8px; }
}

/* ==============================
   CONTACT US PAGE
============================== */
.contact-section { padding: 70px 0; }
.contact-eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-heading {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-subheading {
  font-size: 16px;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 44px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form-group { margin-bottom: 20px; }
.contact-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  transition: border-color .15s;
  box-sizing: border-box;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact-form-group textarea { resize: vertical; min-height: 120px; }
.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background .2s;
}
.contact-submit-btn:hover { background: #243758; }

.contact-info-list { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(204,27,27,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-card strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.contact-info-card span { display: block; font-size: 13px; color: var(--gray); }
.contact-info-card .contact-info-phone {
  margin-top: 4px;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  display: block;
  font-size: 13px;
}
.contact-info-card a.contact-info-phone:hover {
  text-decoration: underline;
}

.contact-whatsapp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  border-radius: 8px;
  padding: 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s;
}
.contact-whatsapp-card:hover { background: #1ebe5d; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
}

/* ==============================
   LEGAL PAGES (Privacy/Terms/Shipping/Refund)
============================== */
.legal-section { padding: 60px 0 80px; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}
.legal-content h3:first-of-type { margin-top: 8px; }
.legal-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content strong { color: var(--red); }


/* ==============================
   SERVICES PAGE
============================== */

/* Page wrapper */
.services-page {
  padding: 56px 0 80px;
}

/* Intro / section header */
.services-intro {
  margin-bottom: 48px;
}

.services-intro .section-header {
  text-align: center;
}

.services-intro .section-header h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.services-intro .section-header .red-bar {
  width: 48px;
  height: 4px;
  background: var(--red);
  margin-bottom: 16px;
  border-radius: 2px;
}

.services-intro .section-header p {
  font-size: 15px;
  color: var(--gray);
  max-width: 680px;
  line-height: 1.75;
}

/* ── Service group title (e.g. "Aluminium Services", "Glass Services") ── */
.service-group-title {
  margin: 0 0 24px;
}

.service-group-title h2 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-group-title .red-bar {
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

/* ── Service grid (mirrors .product-subcat-grid) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

/* ── Service card (mirrors .subcat-card) ── */
.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s, transform .2s;
}

.service-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--light-bg);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}

.service-card-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: letter-spacing .15s;
  color: var(--red);
}

.service-card:hover .service-card-link {
  letter-spacing: 0.08em;
}

/* WhatsApp CTA — services page only */
.service-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 3px;
  transition: background .2s, transform .2s;
  align-self: flex-start;
}

.service-wa-link svg {
  flex-shrink: 0;
}

.service-wa-link:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  letter-spacing: 0.04em;
}

/* ── CTA Band ── */
.services-cta-band {
  background: var(--navy);
  border-radius: 4px;
  padding: 48px 40px;
}

.services-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.services-cta-text h2 {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.services-cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  line-height: 1.7;
}

.btn-services-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}

.btn-services-cta:hover {
  background: #a81414;
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-cta-band {
    padding: 36px 24px;
  }
}

/* ==============================
   NEWS / BLOG PAGE
============================== */
.news-page { padding: 56px 0 72px; }

/* ── Featured Article ── */
.news-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
  transition: box-shadow .2s, transform .2s;
}

.news-featured:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.news-featured-img {
  height: 100%;
  min-height: 280px;
  overflow: hidden;
  background: var(--light-bg);
}

.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}

.news-featured:hover .news-featured-img img { transform: scale(1.04); }

.news-featured-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-featured-body h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  color: var(--navy);
  margin: 12px 0 14px;
  line-height: 1.3;
}

.news-featured-body p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ── Tags / Category Pills (on cards) ── */
.news-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(204,27,27,0.1);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
}

.news-tag-sm { font-size: 11px; padding: 4px 10px; }

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #94a0b3;
}

.news-readmore {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
}

/* ── Category Filters ── */
.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.news-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--navy);
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: background .15s, color .15s, border-color .15s;
}

.news-filter-pill:hover {
  border-color: var(--red);
  color: var(--red);
}

.news-filter-pill.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ── Article Grid ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 16px;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.news-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.news-card-img {
  height: 190px;
  overflow: hidden;
  background: var(--light-bg);
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.news-card:hover .news-card-img img { transform: scale(1.05); }

.news-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.news-card-body p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}

/* ── Pagination ── */
.news-pagination {
  display: flex;
  justify-content: center;
  margin: 40px 0 8px;
}

.news-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.news-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: background .15s, color .15s;
}

.news-pagination .page-numbers.current {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.news-pagination a.page-numbers:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* ── Empty state ── */
.news-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
  font-size: 15px;
}

.news-empty a { color: var(--red); font-weight: 700; }

/* ── CTA spacing override ── */
.news-cta-band { margin-top: 24px; }

/* ── Single Article Page ── */
.news-article-page { padding: 0 0 72px; }

.news-article-hero {
  background: var(--navy);
  padding: 40px 0 0;
}

.news-article-hero-img {
  width: 100%;
  height: 360px;
  overflow: hidden;
  margin-top: 28px;
}

.news-article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  max-width: 880px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.news-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.news-article-meta .news-tag {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.news-article-meta time,
.news-article-meta .news-author {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.news-article-body-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 0;
}

.news-article-content {
  font-size: 16px;
  color: #333;
  line-height: 1.85;
}

.news-article-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 16px;
}

.news-article-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 14px;
}

.news-article-content p { margin-bottom: 18px; }

.news-article-content ul,
.news-article-content ol {
  margin: 0 0 18px 22px;
  list-style: disc;
}
.news-article-content ol { list-style: decimal; }
.news-article-content li { margin-bottom: 8px; }

.news-article-content strong { color: var(--navy); }

.news-article-share {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 40px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.news-article-share span {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.news-share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--navy);
  transition: background .15s, color .15s;
}

.news-share-link:hover {
  background: var(--red);
  color: #fff;
}

.news-related {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.news-related h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-img { min-height: 220px; }
  .news-featured-body { padding: 28px 28px; }
}

@media (max-width: 768px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-article-hero-img { height: 260px; }
}

@media (max-width: 600px) {
  .news-article-body-wrap { padding: 36px 20px 0; }
}

@media (max-width: 480px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-filters { gap: 8px; }
  .news-filter-pill { padding: 8px 14px; font-size: 12px; }
}

/* ==============================
   PRODUCTS PAGE — FAMILY NAV
============================== */
#family-nav {
  padding: 70px 0 20px;
  background: #fff;
}
.family-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .family-nav-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .family-nav-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .family-nav-grid { grid-template-columns: 1fr; }
}

/* ==============================
   PRODUCTS PAGE — FAMILY DETAIL
============================== */
.family-detail {
  padding: 64px 0;
  background: #fff;
  scroll-margin-top: 90px;
  border-bottom: 1px solid var(--border);
}
.family-detail:last-of-type {
  border-bottom: none;
}
.family-detail--shaded {
  background: var(--light-bg);
}
.family-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.family-detail--reverse .family-detail-grid {
  grid-template-columns: 1.15fr 1fr;
}
.family-detail--reverse .family-detail-img { order: 2; }
.family-detail--reverse .family-detail-body { order: 1; }
.family-detail-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(26,39,68,0.12);
}
.family-detail-img img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.family-detail-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(204, 27, 27, 0.08);
  border: 1px solid rgba(204, 27, 27, 0.15);
}
.family-detail-body h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.family-detail-blurb {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.family-detail-variants {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.family-detail-variants li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}
.family-detail-variants li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.family-detail-spec {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-bottom: 18px;
}
.family-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.family-detail-link .arr { transition: transform .2s ease; }
.family-detail-link:hover .arr { transform: translateX(4px); }

@media (max-width: 860px) {
  .family-detail-grid,
  .family-detail--reverse .family-detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .family-detail--reverse .family-detail-img,
  .family-detail--reverse .family-detail-body {
    order: initial;
  }
  .family-detail-img img { max-height: 260px; }
}

/* ==============================
   PRODUCTS PAGE — MATERIAL SPEC TABLE
============================== */
#material-reference {
  padding: 70px 0 80px;
  background: var(--light-bg) !important;
  border-top: 1px solid var(--border);
}
.spec-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}
.spec-table th,
.spec-table td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.spec-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.spec-table tbody tr:nth-child(even) { background: var(--light-bg); }
.spec-table tbody tr:last-child td { border-bottom: none; }
.spec-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}
.spec-table-note {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-top: 16px;
}

/* Service card image now optionally wraps an <a> to the detail page */
.service-card-img a { display: block; width: 100%; height: 100%; }

/* ══════════════════════════════════════════════
   SINGLE SERVICE PAGE — EDITORIAL DESIGN
   Scoped under .service-editorial so nothing here
   can ever affect any other page on the site.
══════════════════════════════════════════════ */
.service-editorial {
  --svc-serif: 'Cormorant Garamond', Georgia, serif;
}

.svc-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E8B45A;
  margin-bottom: 18px;
}

/* ── Editorial intro: image left, description right ──
   Every service page reuses this same grid + fixed-ratio frame, so no
   matter the source photo's native size or shape, the image always
   renders at the same considered size — never too big, never too small,
   and always cropped to sit naturally beside the copy next to it. */
.svc-intro-section {
  background: #fff;
  padding: 72px 0;
}
.svc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.svc-intro-img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(26,39,68,0.18);
}
.svc-intro-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.svc-intro-img-frame::after {
  /* subtle navy colour-grade wash, ties visually different source photos
     together into one consistent, curated palette */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,39,68,0.14) 0%, rgba(26,39,68,0) 45%, rgba(26,39,68,0.18) 100%);
  pointer-events: none;
}
.svc-intro-text { text-align: left; }
.svc-intro-text .svc-eyebrow { margin-bottom: 14px; }
.svc-lede {
  font-family: var(--svc-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 20px;
}
.svc-body-p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}
.svc-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.svc-cta-row-left { justify-content: flex-start; }

@media (max-width: 860px) {
  .svc-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .svc-intro-img-frame { max-width: 480px; margin: 0 auto; }
  .svc-intro-text { text-align: left; }
  .svc-cta-row-left { justify-content: flex-start; }
}
.svc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  transition: all .2s;
}
.svc-btn-solid {
  background: var(--navy);
  color: #fff !important;
}
.svc-btn-solid:hover { background: var(--red); transform: translateY(-1px); }
.svc-btn-ghost {
  background: transparent;
  color: var(--navy) !important;
  border: 1px solid var(--border);
}
.svc-btn-ghost:hover {
  border-color: #25D366;
  color: #1a9e4f !important;
  background: #f3fdf6;
}

/* ── At a Glance: numbered application / benefit lists ── */
.svc-glance-section {
  background: var(--light-bg);
  padding: 72px 0;
}
.svc-glance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto;
}
.svc-eyebrow-dark {
  color: var(--red);
  display: block;
  margin-bottom: 28px;
}
.svc-numbered-list { display: flex; flex-direction: column; }
.svc-numbered-list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.svc-numbered-list li:first-child { padding-top: 0; }
.svc-num {
  font-family: var(--svc-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--red);
  min-width: 30px;
}
.svc-num-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* ── Why ADAG pull quote ── */
.svc-quote-section {
  background: var(--navy);
  padding: 84px 0;
}
.svc-quote-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.svc-quote-section .svc-eyebrow { color: #E8B45A; }
.svc-quote-text {
  font-family: var(--svc-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.5;
  color: #fff;
}

/* ── FAQ accordion ── */
.svc-faq-section {
  background: #fff;
  padding: 84px 0;
}
.svc-faq-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.svc-section-title { margin-bottom: 40px; }
.svc-section-title-center { text-align: center; }
.svc-section-title h2 {
  font-family: var(--svc-serif);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 38px);
  color: var(--navy);
}
.svc-faq-item {
  background: var(--light-bg);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: border-color .2s;
}
.svc-faq-item.open { border-color: var(--red); background: #fff; }
.svc-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}
.svc-faq-question-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.svc-faq-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--red);
  transition: background .2s, transform .3s, color .2s;
}
.svc-faq-item.open .svc-faq-icon {
  background: var(--red);
  color: #fff;
  transform: rotate(45deg);
}
.svc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(0.4,0,0.2,1);
}
.svc-faq-item.open .svc-faq-answer { max-height: 300px; }
.svc-faq-answer p {
  padding: 0 24px 20px;
  font-size: 14.5px;
  line-height: 1.75;
  color: #555;
}

/* ── Related services ── */
.svc-related-section {
  background: var(--light-bg);
  padding: 84px 0;
}
.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.svc-related-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.svc-related-card:hover {
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.svc-related-img { height: 220px; overflow: hidden; }
.svc-related-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.svc-related-card:hover .svc-related-img img { transform: scale(1.06); }
.svc-related-body { padding: 22px 22px 26px; }
.svc-related-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.svc-related-body h3 {
  font-family: var(--svc-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}
.svc-related-link {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ── Final CTA wrapper ── */
.svc-final-cta { background: #fff; padding: 0 0 84px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .svc-glance-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svc-related-grid { grid-template-columns: 1fr; }
  .svc-cta-row { flex-direction: column; align-items: stretch; }
  .svc-btn { justify-content: center; }
}

