/* ============================================================
   NAVROOP HOMES — MAIN STYLESHEET
   Layout: Replicates layout104 (evonicmedia)
   Palette: Navy #1a2e5a | Gold #c9a227 | Cream #f8f5ef
   ============================================================ */

/* ── CSS CUSTOM PROPERTIES ───────────────────────────────── */
:root {
  --navy:    #1a2e5a;
  --navy-dk: #111d3a;
  --gold:    #c9a227;
  --gold-lt: #e2b93b;
  --cream:   #f8f5ef;
  --white:   #ffffff;
  --dark:    #2d2d2d;
  --gray:    #6b7280;
  --light:   #f3f4f6;
  --border:  #e5e1d8;
  --radius:  6px;
  --shadow:  0 4px 24px rgba(26,46,90,0.10);
  --trans:   0.3s ease;
  /* Thin “external link” arrow icon (stroke only, matches simple line style) */
  --nh-arrow-ring: #1f1f1f;
  --nh-arrow-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f1f1f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'/%3E%3Cpolyline points='7 7 17 7 17 17'/%3E%3C/svg%3E");
  --nh-arrow-svg-on-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f0f0f0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'/%3E%3Cpolyline points='7 7 17 7 17 17'/%3E%3C/svg%3E");
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--trans); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.8;
}

/* ── LAYOUT UTILITIES ────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0;
margin-top: -5%;

}
.section-pad-sm { padding: 60px 0; }
.bg-cream  { background: var(--cream); }
.bg-navy   { background: var(--navy); }
.bg-navy-dk{ background: var(--navy-dk); }
.text-white { color: var(--white) !important; }
.text-gold  { color: var(--gold) !important; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* Indian ornamental divider */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 12px 0 28px;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(to left, transparent, var(--gold)); }
.ornament-icon { color: var(--gold); font-size: 1.1rem; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,0.35); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-dk); border-color: var(--navy-dk); transform: translateY(-2px); }

/* ── HEADER / NAVIGATION ─────────────────────────────────── */
/*
  Design: Matches layout104 screenshot exactly
  - White background, bottom shadow
  - Logo left | Nav center | Pill CTA button right
  - Active nav link = gold color
  - Scrolled = slight elevated shadow only (stays white)
*/
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(26,46,90,0.07);
  transition: box-shadow var(--trans);
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(26,46,90,0.13);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; padding: 0 32px; max-width: 1240px; margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex; align-items: center; flex-shrink: 0;
}
.site-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

/* Center Nav */
.main-nav {
  flex: 1;
  display: flex; justify-content: center;
}
.main-nav ul {
  display: flex; gap: 4px; align-items: center;
}
.main-nav ul li { position: relative; }
.main-nav ul li a {
  color: var(--dark);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
  letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 4px;
}
.main-nav ul li a:hover { color: var(--gold); background: rgba(201,162,39,0.07); }
.main-nav ul li a.active { color: var(--gold); font-weight: 600; }

/* Dropdown arrow for "More" */
.main-nav .has-dropdown > a::after {
  content: '▾';
  font-size: 0.7rem;
  margin-left: 2px;
  color: inherit;
}
.main-nav .dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(26,46,90,0.12);
  min-width: 180px;
  padding: 8px 0;
  z-index: 100;
}
.main-nav .has-dropdown:hover .dropdown { display: block; }
.main-nav .dropdown li a {
  padding: 10px 20px; border-radius: 0;
  font-size: 0.88rem; color: var(--dark);
}
.main-nav .dropdown li a:hover { color: var(--gold); background: rgba(201,162,39,0.07); }

/* Right CTA */
.header-cta {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.header-phone {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.header-phone i { color: var(--gold); font-size: 0.9rem; }

/* Pill CTA button — matches layout104 "Get Started" button exactly */
.btn-header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy);
  color: var(--white) !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-header-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.30);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ENTRANCE ANIMATIONS (add-only, no existing code changed) ───── */

/* Slide in from left */
@keyframes hero-from-left {
  from { opacity: 0; transform: translateX(-70px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Zoom out (right image) */
@keyframes hero-zoom-out {
  from { transform: scale(1); }
  to   { transform: scale(1.18); }
}

/* Apply to hero headline children — staggered */
.hl-title-row1 {
  animation: hero-from-left 0.75s cubic-bezier(0.22,0.61,0.36,1) 0.15s both;
}
.hl-text > h2:nth-child(2) {           /* "Your Unique" */
  animation: hero-from-left 0.75s cubic-bezier(0.22,0.61,0.36,1) 0.4s both;
}
.hl-text > h2:nth-child(3) {           /* "Needs" */
  animation: hero-from-left 0.75s cubic-bezier(0.22,0.61,0.36,1) 0.65s both;
}

/* Zoom-out on the right house image */
/* .hero-right-img {
  animation: hero-zoom-out 10s linear 0s both;
} */

/* ── HERO SECTION ────────────────────────────────────────── */
/*
  Layout104 exact replica.
  LEFT  (63%): text left  |  hero-center.png collage (absolute right)
               [worker]  [description]  [Read More]  [↗]  ← bottom CTA row
  RIGHT (37%): tall house photo  +  Professional workers card (bottom)
*/

#hero { background: var(--white); overflow: hidden; }

.hero-wrap {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  align-items: stretch;
}

/* ══ LEFT SECTION ════════════════════════════════════════════ */
.hero-left {
  position: relative;
  padding: 44px 0 44px 44px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

/* HEADLINE: natural flow, z-index 3 (appears above collage image) */
.hl-text {
  position: relative;
  z-index: 3;
}

/* Line 1: icon + first title on same row */
.hl-title-row1 {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.05;
  margin-bottom: 0;
}

/* 3 overlapping diamonds — replicates layout104 icon mark */
.hl-diamonds {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  /* margin-left: 3%; */
  /* margin-left: 7%; */
}
.hl-diamonds i {
  display: block;
  width: 20px; height: 20px;
  transform: rotate(45deg);
  border-radius: 3px;
  position: relative;
  /* margin-left: 5%; */
}
.hl-diamonds i:nth-child(1) { background: var(--gold); right: 8px; z-index: 1; }
.hl-diamonds i:nth-child(2) { background: var(--gold); opacity: 0.65; right: 4px; z-index: 2; }
.hl-diamonds i:nth-child(3) { background: var(--navy); z-index: 3; }

/* All headings: same bold uppercase style */
.hl-hdg {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  /* font-size: clamp(2.2rem, 3.8vw, 3.8rem); */
  font-size: 45px;
  font-weight: 530;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.16;
  letter-spacing: 0.01em;
  margin: 0;
  /* margin-left: 6%; */
  /* border: 2px solid green; */
}
.hl-hdg-sub { display: block; 
  margin-left: 10%;
  font-size: 45px;


}

/* COLLAGE IMAGE: absolute right, z-index 1 (behind headline text) */
.hl-center-img {
  position: absolute;
  top: 11%;
  right: 2%;
  width: 90%;
  z-index: 1;
 
}
.hl-center-img img {
  width: 100%;
  height: auto;
  display: block;

}

/* CTA: [large worker image LEFT] | [paragraph + buttons RIGHT stacked] */
.hl-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42%;
  padding-top: 20px;
  padding-right: 28px;
  position: relative;
  z-index: 4;
  margin-left: 6%;
  width: 90%;
 
}

/* Worker image — large on the left (matches screenshot proportions) */
.hl-worker-lg {
  flex: 0 0 34%;
  height: 170px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26,46,90,0.10);
}
.hl-worker-lg img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Right side: description on top, buttons below */
.hl-cta-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hl-desc {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.75;
}
.hl-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Read More pill button */
.btn-hero-pill {
  display: inline-flex; align-items: center;
  background: var(--navy); color: var(--white);
  font-size: 0.9rem; font-weight: 600;
  padding: 13px 32px;
  border-radius: 50px;
  border: 2px solid var(--navy);
  cursor: pointer; transition: all var(--trans);
  white-space: nowrap; letter-spacing: 0.02em; text-decoration: none;
}
.btn-hero-pill:hover {
  background: var(--gold); border-color: var(--gold); color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.3);
}

/* Circle + thin line arrow (SVG). Hides legacy unicode character. */
.btn-circle-arrow {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--nh-arrow-ring);
  background: transparent !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  overflow: hidden;
  cursor: pointer;
  transition: opacity var(--trans), transform var(--trans), border-color var(--trans);
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: none;
}
.btn-circle-arrow::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  height: 46%;
  max-width: 19px;
  max-height: 19px;
  background: var(--nh-arrow-svg) center / contain no-repeat;
  pointer-events: none;
}
.btn-circle-arrow:hover {
  background: transparent !important;
  opacity: 0.82;
  transform: scale(1.05);
  border-color: var(--navy);
}

/* ══ RIGHT SECTION ═══════════════════════════════════════════ */
.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 24px 24px 0 0; /* rounded top corners like layout104 */
}
/* .hero-right-img {
  width:85%; height:80%;
  margin-top: 7%;
  border-radius: 50px;
  object-fit: cover; display: block; min-height: 500px;
} */
.hero-right-img {
  width: 85%;
  height: 80%;
  margin-top: 7%;
  border-radius: 50px;
  object-fit: cover;
  display: block;
  min-height: 500px;

  animation: zoomIn 1.4s ease-out;
}

@keyframes zoomIn {
  0% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.hero-right-card {
  position: absolute;
  /* bottom: 0; left: 0; right: 0; */
  background: var(--navy);
  padding: 22px 18px 22px 22px;
  display: flex; align-items: center;
  width: 80%;
 margin-top: -24%;
 margin-left: 5%;
  border-radius:15px;
  justify-content: space-between; gap: 12px;
}

.hero-right-card-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 700;
 
  color: var(--white); line-height: 1.3; margin-bottom: 5px;
}
.hero-right-card-text p {
  font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.5;
}
.hero-right-card .btn-circle-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-color: rgba(255, 255, 255, 0.88);
}
.hero-right-card .btn-circle-arrow::after {
  background-image: var(--nh-arrow-svg-on-dark);
}
.hero-right-card .btn-circle-arrow:hover {
  border-color: #fff;
}

/* Hero stats bar below the collage section */
.hero-stats-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero-stats-bar .hstat {
  flex: 1; text-align: center;
  padding: 20px 16px;
  border-right: 1px solid var(--border);
}
.hero-stats-bar .hstat:last-child { border-right: none; }
.hero-stats-bar .hstat .num {
  font-size: 1.7rem; font-weight: 800;
  color: var(--navy); font-family: 'Playfair Display', serif;
  display: block; line-height: 1;
}
.hero-stats-bar .hstat .num span { color: var(--gold); }
.hero-stats-bar .hstat .lbl {
  font-size: 0.78rem; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 4px; display: block;
}

/* ── PLAN CARDS STAGGER ANIMATION (add-only) ─────────────── */
@keyframes plst-card-rise {
  from {
    opacity: 0;
    transform: translateY(52px) scale(0.94);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Cards hidden until parent scrolls into view */
.plst-top .plst-card {
  opacity: 0;
}

/* Trigger: parent .plst-top gets .visible from IntersectionObserver */
.plst-top.visible .plst-cards .plst-card {
  animation: plst-card-rise 0.68s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.plst-top.visible .plst-cards .plst-card:nth-child(1) { animation-delay: 0.05s; }
.plst-top.visible .plst-cards .plst-card:nth-child(2) { animation-delay: 0.24s; }
.plst-top.visible .plst-cards .plst-card:nth-child(3) { animation-delay: 0.44s; }

/* ── PLANS+STATS BLOCK SLIDE ANIMATIONS (add-only) ────────── */
@keyframes slide-from-left-blk {
  from { opacity: 0; transform: translateX(-80px) scale(0.97); }
  to   { opacity: 1; transform: translateX(0)     scale(1);    }
}
@keyframes slide-from-right-blk {
  from { opacity: 0; transform: translateX(80px)  scale(0.97); }
  to   { opacity: 1; transform: translateX(0)     scale(1);    }
}

/* Hidden until parent scrolls in */
.plst-bottom .plst-exp-block,
.plst-bottom .plst-stats-block {
  opacity: 0;
}

/* Crimson left block: slides in from LEFT */
.plst-bottom.visible .plst-exp-block {
  animation: slide-from-left-blk 0.72s cubic-bezier(0.22,0.61,0.36,1) 0.05s both;
}

/* Navy right block: slides in from RIGHT */
.plst-bottom.visible .plst-stats-block {
  animation: slide-from-right-blk 0.72s cubic-bezier(0.22,0.61,0.36,1) 0.2s both;
}

/* ── PLANS + STATS SECTION ──────────────────────────────── */
.plst-section {
  background: var(--white);
  padding: 80px 60px 90px;
}

/* ── TOP: Heading + Cards ── */
.plst-top { margin-bottom: 44px;
margin-left  :5%;
margin-right: 5%;

}

.plst-title {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 36px;
  margin-left  :2%;
}

.plst-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-left  :2%;
margin-right: 2%;

}

.plst-card {
  
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px 22px;
  background: var(--white);
  transition: all var(--trans);
}
.plst-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 28px rgba(201,162,39,0.13);
  transform: translateY(-3px);
}
.plst-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.plst-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.72;
  margin-bottom: 18px;
}

/* Price row */
.plst-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 18px;
}
.plst-price-val {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.plst-price-label {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Card actions */
.plst-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.plst-get-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 26px;
  border: 1.5px solid #c0bcb5;
  border-radius: 50px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  transition: all var(--trans);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.plst-get-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

/* ── BOTTOM: Experienced block + Stats block ── */
/* Two SEPARATE floating cards with gap — matching reference design */
.plst-bottom {
  margin-left  :6%;
  margin-right: 6%;
  display: flex;
  gap: 20px;
  align-items: stretch;
  min-height: 240px;
}

/* Left: crimson square card — fully rounded, all sides */
.plst-exp-block {
  background: #1a2e5a;
  padding: 52px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  flex: 0 0 290px;
  box-shadow: 0 8px 32px rgba(26,46,90,0.25);
}
.plst-exp-block h3 {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-align: left;
}

/* Right: navy card — fully rounded, all sides */
.plst-stats-block {
  background: var(--navy);
  padding: 44px 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  border-radius: 20px;
  flex: 1;
  box-shadow: 0 8px 32px rgba(26,46,90,0.20);
}
.plst-divider {
  width: 1px;
  height: 90px;
  background: rgba(255,255,255,0.18);
  margin: 0 36px;
  flex-shrink: 0;
}
.plst-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plst-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.plst-stat-lbl {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.5;
  max-width: 160px;
}
.plst-stat-icon {
  margin-top: 16px;
  color: rgba(255,255,255,0.55);
}
.plst-stat-icon svg {
  width: 44px;
  height: 44px;
}

/* ── COMPLETED PROJECTS FAN SLIDER ─────────────────────── */
.psc-section {
  background: var(--white);
  padding: 90px 0 56px;
  overflow: hidden;
  position: relative;
}
.psc-header {
  text-align: center;
  margin-bottom: 60px;
}
.psc-title {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.psc-desc {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
  text-align: center;
}

/* Stage: full-width relative block, fixed height */
.psc-stage {
  position: relative;
  height: 540px;
  width: 100%;
 
  margin-top: -5%;
}

/* Decorative repeating diamond pattern on right */
.psc-deco {
  position: absolute;
  right: 0;
  top: -30px;
  width: 260px;
  height: 560px;
  opacity: 0.11;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 3 L53 28 L28 53 L3 28 Z' fill='none' stroke='%231a2e5a' stroke-width='1.6'/%3E%3C/svg%3E");
  background-size: 52px 52px;
  background-repeat: repeat;
}

/* Fan: absolutely centred within stage */
.psc-fan {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 840px;
  height: 100%;
}

/* ── Card base ── */
.psc-card {
  position: absolute;
  bottom: 0;
  width: 340px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 52px rgba(26,46,90,0.24);
  will-change: transform, opacity;
}
.psc-card-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  /* border: 2px solid rgb(241, 26, 26); */
}

/* LEFT card */
.psc-lcard {
  height: 440px;
  right: calc(50% + 60px);
  transform: rotate(-9deg);
  transform-origin: bottom center;
  z-index: 2;
}

/* CENTER card */
.psc-ccard {
  height: 500px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

/* RIGHT card */
.psc-rcard {
  height: 440px;
  left: calc(50% + 60px);
  transform: rotate(9deg);
  transform-origin: bottom center;
  z-index: 2;
}

/* Gradient overlay on centre card — navy theme, light at top, subtle at bottom */
.psc-center-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 46, 90, 0.10) 0%,
    rgba(26, 46, 90, 0.30) 55%,
    rgba(26, 46, 90, 0.72) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.psc-arrow-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  background: transparent !important;
  border: 1px solid var(--nh-arrow-ring);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  overflow: hidden;
  z-index: 5;
  text-decoration: none;
  transition: opacity var(--trans), transform var(--trans), border-color var(--trans);
  box-shadow: none;
}
.psc-arrow-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  height: 46%;
  max-width: 18px;
  max-height: 18px;
  background: var(--nh-arrow-svg) center / contain no-repeat;
  pointer-events: none;
}
.psc-arrow-btn:hover {
  background: transparent !important;
  opacity: 0.82;
  transform: scale(1.08);
  border-color: var(--navy);
}

/* Project title on centre card */
.psc-clabel {
  position: absolute;
  bottom: 24px;
  left: 22px;
  right: 22px;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  z-index: 5;
}

/* Dots nav */
.psc-dots-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.psc-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.psc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0ccc4;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--trans), transform var(--trans), width var(--trans);
}
.psc-dot.active {
  background: var(--navy);
  transform: scale(1.25);
}

/* ── PROCESS TIMELINE SECTION ───────────────────────────── */
.pt-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.pt-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,162,39,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.pt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Each step: connector column + content column */
.pt-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Left connector: num → line → icon (stacked vertically, centered) */
.pt-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 56px;
}

/* Number circle */
.pt-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: 'Inter', sans-serif;
  background: transparent;
  flex-shrink: 0;
}

/* Animated vertical line */
.pt-line {
  width: 1.5px;
  height: 58px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.pt-line span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: rgba(255,255,255,0.30);
  /* line draws from top → bottom when .pt-step gets class .pt-animated */
  transition: height 0s; /* default: no animation */
}
.pt-step.pt-animated .pt-line span {
  height: 100%;
  transition: height 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon circle */
.pt-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.80);
  flex-shrink: 0;
  background: transparent;
  transition: border-color var(--trans), color var(--trans);
}
.pt-step.pt-animated .pt-icon {
  border-color: rgba(201,162,39,0.55);
  color: var(--gold-lt);
}

/* Right content */
.pt-content {
  flex: 1;
  padding-top: 4px;
}
.pt-content h3 {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 48px; /* pushes description down to roughly icon level */
}
.pt-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
}

/* ── EXPERT INTRO SECTION ────────────────────────────────── */
#expert-intro {
  background: var(--white);
}

/* Top 2-column grid */
.ei-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

/* Left column */
.ei-title {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.ei-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 32px;
}
.ei-btn-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn-ei-pill {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all var(--trans);
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
}
.btn-ei-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.3);
}

/* Right column */
.ei-right p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 18px;
}

/* Founder row */
.ei-founder-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 4px;
  margin-bottom: 16px;
}
.ei-founder-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ei-founder-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  overflow: hidden;
}
.ei-founder-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ei-founder-text h4 {
  font-size: 0.95rem;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 2px;
}
.ei-founder-text span {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ei-divider-v {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
.ei-signature {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 8px;
  opacity: 0.85;
}

/* Need Help row */
.ei-need-help {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 500;
}
.ei-need-help a {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity var(--trans);
}
.ei-need-help a:hover { opacity: 0.85; }

/* ── 4 Service Cards ── */
.ei-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ei-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px 28px;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.ei-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,162,39,0.14);
  transform: translateY(-4px);
}
.ei-card-featured {
  background: var(--navy);
  border-color: var(--navy);
}
.ei-card-featured:hover {
  background: var(--navy-dk);
  border-color: var(--navy-dk);
  box-shadow: 0 8px 32px rgba(26,46,90,0.25);
}
.ei-card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
}
.ei-card-featured .ei-card-icon {
  color: var(--gold);
}
.ei-card h4 {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.ei-card-featured h4 { color: var(--white); }
.ei-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
}
.ei-card-featured p { color: rgba(255,255,255,0.70); }

/* ── SERVICES SECTION (TABS) ─────────────────────────────── */
#services {
  background: var(--white);
}
.services-header { text-align: center; margin-bottom: 48px; }
.services-tabs-nav {
  display: flex; justify-content: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 48px;
}
.tab-btn {
  padding: 12px 28px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  transition: all var(--trans);
  letter-spacing: 0.03em;
}
.tab-btn:hover { border-color: var(--gold); color: var(--gold); }
.tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tab-content-left { }
.tab-content-left h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 16px; }
.tab-content-left p { color: var(--gray); margin-bottom: 24px; line-height: 1.8; }
.tab-checklist { margin-top: 8px; }
.tab-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.tab-checklist li:last-child { border-bottom: none; }
.tab-checklist li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.tab-content-right img {
  border-radius: 12px;
  width: 100%; height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.tab-img-placeholder {
  width: 100%; height: 420px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a4a8a 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.tab-img-placeholder::after {
  content: attr(data-label);
  position: absolute; bottom: 24px; left: 24px;
  color: var(--gold);
  font-size: 1.1rem; font-weight: 700;
  font-family: 'Playfair Display', serif;
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.about-img-placeholder {
  width: 100%; height: 480px;
  background: linear-gradient(160deg, var(--navy) 0%, #2a4080 100%);
  border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,0.3); font-size: 4rem;
}
.about-experience-badge {
  position: absolute; bottom: 32px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 24px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,162,39,0.4);
  z-index: 1;
}
.about-experience-badge .num { font-size: 2.2rem; font-weight: 800; font-family: 'Playfair Display', serif; display: block; }
.about-experience-badge .txt { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.about-content { }
.about-content p { color: var(--gray); margin-bottom: 20px; line-height: 1.85; }
.about-intro-bold { font-size: 1.05rem; color: var(--dark) !important; font-weight: 500; }
.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 28px 0;
  display: flex; align-items: center; gap: 16px;
}
.founder-avatar {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.4rem; font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.founder-info h4 { font-size: 1rem; color: var(--navy); margin-bottom: 2px; }
.founder-info .role { font-size: 0.82rem; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; }
.founder-info .phone { font-size: 0.88rem; color: var(--gray); margin-top: 4px; }
.about-mini-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px;
}
.mini-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: all var(--trans);
}
.mini-service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,162,39,0.15);
  transform: translateY(-2px);
}
.mini-service-card .icon {
  width: 44px; height: 44px;
  background: rgba(201,162,39,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.mini-service-card h5 { font-size: 0.88rem; color: var(--navy); font-family: 'Inter', sans-serif; font-weight: 600; }
.mini-service-card p { font-size: 0.78rem; color: var(--gray); margin-top: 2px; }

/* ── PROCESS STEPS ───────────────────────────────────────── */
/* ── PROCESS STEPS — layout104 exact replica ─────────────────── */
/*
  Crimson bg. Each step = 2-col grid:
  LEFT col (96px): continuous vertical line passing through both circles
                   line-top → [01 circle] → line-mid → [icon circle] → line-btm
  RIGHT col (1fr): title aligned with num-circle | desc aligned with icon-circle
*/

.process-section {
  background: #1a2e5a;
  padding: 72px 0;
}

/* Outer 3-column grid — one ps-step per column */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
  align-items: start;
}

/* Inner 2-column grid per step: [96px timeline] | [1fr text] */
.ps-step {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
}

/* ── Vertical line segments (left column, centered in 96px) ── */
.ps-line-top,
.ps-line-mid,
.ps-line-btm {
  width: 2px;
  background: rgba(255,255,255,0.28);
  justify-self: center;
}
.ps-line-top { height: 48px; }
.ps-line-mid { height: 44px; }
.ps-line-btm { height: 48px; }

/* Invisible right-column placeholders for line rows */
.ps-step span { display: block; }

/* ── Number circle (sits on the line) ── */
.ps-num-circle {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  background: #1a2e5a;
}

/* Title (right of number circle) */
.ps-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
  padding-left: 20px;
}

/* ── Icon circle (sits on the line, below number) ── */
.ps-icon-circle {
  width: 88px;
  height: 88px;
  border: 2px solid rgba(255,255,255,0.40);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  background: transparent;
}
.ps-icon-circle i {
  font-size: 1.65rem;
  color: var(--white);
}

/* Description (right of icon circle) */
.ps-desc {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
  padding-left: 20px;
}

/* ── PORTFOLIO GRID ──────────────────────────────────────── */
#portfolio { background: var(--white); }
.portfolio-header { text-align: center; margin-bottom: 48px; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.portfolio-item {
  position: relative; overflow: hidden;
  border-radius: 10px;
  background: var(--navy);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.portfolio-item:nth-child(1) { grid-column: span 2; aspect-ratio: unset; min-height: 280px; }
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,46,90,0.85) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--trans);
  display: flex; align-items: flex-end; padding: 24px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--white); font-size: 1rem; }
.portfolio-overlay span { color: var(--gold); font-size: 0.82rem; font-weight: 600; }

/* ── OUR PROMISE (replaces pricing) ─────────────────────── */
#promise { background: var(--cream); }
.promise-header { text-align: center; margin-bottom: 48px; }
.promise-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.promise-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: all var(--trans);
  position: relative;
}
.promise-card.featured {
  background: var(--navy);
  border-top-color: var(--gold);
}
.promise-card.featured h3,
.promise-card.featured p { color: var(--white); }
.promise-card:hover:not(.featured) {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26,46,90,0.12);
}
.promise-card .p-icon {
  font-size: 2.8rem; margin-bottom: 20px;
  display: block;
}
.promise-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; }
.promise-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.75; }
.promise-card .p-tag {
  display: inline-block;
  margin-top: 20px;
  background: rgba(201,162,39,0.12);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 30px;
  text-transform: uppercase;
}

/* ── STATS COUNTER ───────────────────────────────────────── */
#stats {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(201,162,39,0.07) 0%, transparent 50%);
}
.stats-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0;
}
.stat-block {
  text-align: center;
  padding: 60px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-block:last-child { border-right: none; }
.stat-block .big-num {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-block .stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
#testimonials { background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: calc(33.33% - 14px);
  margin-right: 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 20px; left: 28px;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: var(--gray); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 50px; height: 50px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700; font-size: 1.1rem;
}
.testimonial-author-info h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 2px; }
.testimonial-author-info span { font-size: 0.8rem; color: var(--gold); font-weight: 600; }
.slider-controls {
  display: flex; justify-content: center; gap: 12px; margin-top: 36px;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: all var(--trans);
  padding: 0;
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }
.slider-prev, .slider-next {
  width: 44px; height: 44px;
  background: var(--white); border: 2px solid var(--border);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--navy);
  transition: all var(--trans);
}
.slider-prev:hover, .slider-next:hover {
  background: var(--gold); border-color: var(--gold); color: var(--navy);
}

/* ── WHY CHOOSE US ───────────────────────────────────────── */
#why-choose { background: var(--cream); }
.why-choose-header { text-align: center; margin-bottom: 48px; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: all var(--trans);
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,162,39,0.12);
  transform: translateY(-3px);
}
.why-card-icon {
  width: 52px; height: 52px;
  background: rgba(201,162,39,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.why-card-body h4 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.why-card-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ── VISION & MISSION + JOINT VENTURE ───────────────────── */
#vision-mission { background: var(--white); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 50px; }
.vm-card {
  border-radius: 12px;
  overflow: hidden;
}
.vm-card-inner {
  padding: 40px 36px;
  height: 100%;
  position: relative;
}
.vm-card.vision .vm-card-inner { background: var(--navy); }
.vm-card.mission .vm-card-inner { background: var(--cream); border: 1px solid var(--border); }
.vm-card-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.vm-card.vision h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 12px; }
.vm-card.vision p { color: rgba(255,255,255,0.75); line-height: 1.8; }
.vm-card.mission h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 12px; }
.vm-card.mission p { color: var(--gray); line-height: 1.8; }
.joint-venture-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4a8a 100%);
  border-radius: 16px;
  padding: 56px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
}
.joint-venture-banner::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(201,162,39,0.08);
  border-radius: 50%;
}
.jv-text { flex: 1; }
.jv-text .jv-tag {
  display: inline-block;
  background: rgba(201,162,39,0.2);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.jv-text h3 { font-size: 1.6rem; color: var(--white); margin-bottom: 12px; }
.jv-text p { color: rgba(255,255,255,0.70); font-size: 0.95rem; line-height: 1.8; }
.jv-contact {
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 28px 32px;
  text-align: center;
  min-width: 220px;
}
.jv-contact .avatar {
  width: 60px; height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.3rem; font-weight: 700;
  margin: 0 auto 12px;
  font-family: 'Playfair Display', serif;
}
.jv-contact h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.jv-contact .jv-role { color: var(--gold); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 10px; }
.jv-contact .jv-num { color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 700; }

/* ── CTA BANNER ──────────────────────────────────────────── */
#cta-banner {
  background: var(--gold);
  position: relative; overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  padding: 60px 24px; max-width: 1200px; margin: 0 auto;
}
.cta-text h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 8px; }
.cta-text p { color: rgba(26,46,90,0.75); font-size: 1rem; }
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover { background: #1ebe59; border-color: #1ebe59; transform: translateY(-2px); }

/* ── CONTACT SECTION (landing #contact) ──────────────────── */
#contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  min-width: 0;
}
.contact-form-wrap {
  min-width: 0;
  max-width: 100%;
}
.contact-form {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
  min-width: 0;
}
.contact-form .form-group {
  margin-bottom: 16px;
  min-width: 0;
  max-width: 100%;
}
.contact-form-wrap h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 24px; }
.contact-form label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--dark); margin-bottom: 6px; letter-spacing: 0.03em;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  background: var(--white);
  color: var(--dark);
  transition: border-color var(--trans);
  outline: none;
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a2e5a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
}
.contact-info-wrap h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 20px; }
.contact-info-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
}
.contact-info-item .c-icon {
  width: 42px; height: 42px;
  background: rgba(201,162,39,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  line-height: 1;
}
.contact-info-item > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.contact-info-item h5 {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 3px;
  line-height: 1;
}
.contact-info-item p {
  font-size: 0.88rem;
  color: var(--dark);
  margin: 0;
  line-height: 1.5;
  word-break: break-word;
}
.contact-info-item a { color: var(--navy); font-weight: 600; }
.contact-info-item a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  border: 2px solid var(--border);
  color: var(--navy);
  transition: all var(--trans);
  text-decoration: none;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ── FOOTER ──────────────────────────────────────────────── */
#site-footer {
  background: var(--navy-dk);
  color: rgba(255,255,255,0.75);
}
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding: 70px 0 48px;
}
.footer-brand .footer-logo { height: 56px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: all var(--trans);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  letter-spacing: 0.04em;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--trans);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a::before { content: '›'; color: var(--gold); }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.footer-contact-list .fc-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: var(--gold); }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--trans), box-shadow var(--trans);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }
.whatsapp-float .wa-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: var(--white);
  font-size: 0.78rem; font-weight: 600;
  padding: 6px 12px; border-radius: 6px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity var(--trans);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ── SERVICES CARDS STAGGER (add-only) ───────────────────── */
@keyframes svc-card-in {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Tab buttons stay visible without JS (live servers where IO/JS may be delayed) */
.svc-showcase-tabs.visible .svc-tab-btn {
  animation: svc-card-in 0.55s cubic-bezier(0.22,0.61,0.36,1) both;
}
.svc-showcase-tabs.visible .svc-tab-btn:nth-child(1) { animation-delay: 0.05s; }
.svc-showcase-tabs.visible .svc-tab-btn:nth-child(2) { animation-delay: 0.22s; }
.svc-showcase-tabs.visible .svc-tab-btn:nth-child(3) { animation-delay: 0.39s; }
.svc-showcase-tabs.visible .svc-tab-btn:nth-child(4) { animation-delay: 0.56s; }

/* ── SERVICES SHOWCASE SECTION ───────────────────────────── */
#services-showcase {
  background: var(--white);
}
.svc-showcase-header {
  text-align: center;
  margin-bottom: 40px;
}
.svc-showcase-title {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

/* ── Tab Buttons ── */
.svc-showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.svc-tab-btn {
  padding: 13px 32px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--navy);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--trans);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.svc-tab-btn:hover {
  background: var(--navy-dk);
  border-color: var(--navy-dk);
  transform: translateY(-2px);
}
.svc-tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(201,162,39,0.35);
}

/* ── Panel Layout ── */
.svc-showcase-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.svc-showcase-panel.active {
  display: grid;
}

/* ── Left Image ── */
.svc-showcase-img {
  width: 100%;
  min-width: 0;
}
.svc-showcase-content {
  min-width: 0;
}
.svc-img-ph {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #d4cfc4 0%, #b5ada0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(26,46,90,0.18);
  position: relative;
  box-shadow: 0 8px 32px rgba(26,46,90,0.12);
}
.svc-img-ph::after {
  content: attr(data-emoji);
  font-size: 5rem;
  position: absolute;
}
.svc-img-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 20px;
}

/* ── Right Content ── */
.svc-showcase-content {
  padding: 8px 0;
}
.svc-showcase-heading {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  line-height: 1.2;
}
.svc-showcase-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 18px;
}
.svc-showcase-sub {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  margin-top: 6px;
}

/* ── Tag Pills ── */
.svc-tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.svc-tag-pills span {
  display: inline-block;
  padding: 7px 20px;
  border: 1.5px solid #c5c5c5;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  background: transparent;
  transition: all var(--trans);
  cursor: default;
}
.svc-tag-pills span:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: rgba(201,162,39,0.08);
}

/* ── TESTIMONIALS SECTION ──────────────────────────────────── */
.tns-section {
  background: #fff;
  padding: 90px 0 80px;
}
.tns-title {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.22;
  letter-spacing: 0.03em;
  margin-bottom: 52px;
}
.tns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.tns-img-wrap {
  border-radius: 13px;
  overflow: hidden;
  height: 570px;
}
.tns-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tns-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tns-card {
  background: #fff;
  border: 1.5px solid #e4e8f0;
  border-radius: 14px;
  padding: 22px 26px 20px;
  transition: box-shadow 0.3s ease;
}
.tns-card:hover {
  box-shadow: 0 8px 28px rgba(26,46,90,0.10);
}
.tns-stars {
  color: #f5a623;
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
  line-height: 1;
}
.tns-card p {
  font-size: 0.88rem;
  color: #555e72;
  line-height: 1.75;
  margin: 0 0 14px;
}
.tns-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tns-avatar-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.tns-author h4 {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 2px;
}
.tns-author span {
  font-size: 0.78rem;
  color: #8a93a8;
}
.tns-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 52px;
}
.btn-tns-pill {
  background: #1a2e5a;
  color: #fff;
  padding: 15px 52px;
  border-radius: 50px;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-tns-pill:hover {
  background: var(--navy);
  transform: translateY(-2px);
  color: #fff;
}
.btn-tns-arrow {
  position: relative;
  width: 50px;
  height: 50px;
  background: transparent !important;
  border: 1px solid var(--nh-arrow-ring);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  overflow: hidden;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  box-shadow: none;
}
.btn-tns-arrow::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  height: 46%;
  max-width: 19px;
  max-height: 19px;
  background: var(--nh-arrow-svg) center / contain no-repeat;
  pointer-events: none;
}
.btn-tns-arrow:hover {
  background: transparent !important;
  transform: translateY(-2px);
  opacity: 0.82;
  border-color: var(--navy);
}

/* ── WHY CHOOSE US SECTION ──────────────────────────────────── */
section#why-choose.wcu-section,
.wcu-section {
  background: #1a2e5a !important;
  width: 100%;
  position: relative;
}
.wcu-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 64px 80px 72px;
}
.wcu-left {
  padding-right: 52px;
}
.wcu-heading {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
  font-weight: 800;
  color: #ffffff !important;
  text-transform: uppercase;
  line-height: 1.18;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.wcu-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78) !important;
  line-height: 1.82;
  max-width: 370px;
}

/* Cards grid */
.wcu-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* ── All cards: bare default (icon + text on crimson) ── */
.wcu-card {
  background: transparent;
  border-radius: 14px;
  padding: 30px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  box-shadow: none;
  transition: transform 0.25s ease;
  cursor: default;
}
.wcu-card .wcu-icon { color: rgba(255,255,255,0.90); }
.wcu-card span      { color: rgba(255,255,255,0.92); }

/* ── Boxed cards: 1st, 4th, 5th (checkerboard like reference) ── */
.wcu-card:nth-child(1),
.wcu-card:nth-child(4),
.wcu-card:nth-child(5) {
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.wcu-card:nth-child(1) .wcu-icon,
.wcu-card:nth-child(4) .wcu-icon,
.wcu-card:nth-child(5) .wcu-icon { color: #1a2e5a; }
.wcu-card:nth-child(1) span,
.wcu-card:nth-child(4) span,
.wcu-card:nth-child(5) span      { color: #1a2e5a; }

.wcu-card:hover { transform: translateY(-4px); }
.wcu-card:nth-child(1):hover,
.wcu-card:nth-child(4):hover,
.wcu-card:nth-child(5):hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.22);
}

.wcu-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wcu-icon svg {
  width: 42px;
  height: 42px;
}
.wcu-card span {
  font-size: 0.87rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.01em;
}

/* ── TESTIMONIALS ANIMATIONS (add-only) ───────────────────── */

/* Zoom-out keyframe for left image */
@keyframes tns-img-zoom-out {
  from { transform: scale(1.20); }
  to   { transform: scale(1); }
}

/* Slide-in from right for review cards */
@keyframes tns-card-from-right {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Image: hidden (scale doesn't affect visibility but blur does) */
.tns-img-wrap img {
  transform: scale(1.20);
}

/* Cards: hidden initially */
.tns-cards .tns-card {
  opacity: 0;
  transform: translateX(60px);
}

/* When parent .tns-grid gets .visible → trigger both animations */
.tns-grid.visible .tns-img-wrap img {
  animation: tns-img-zoom-out 1.4s cubic-bezier(0.25,0.46,0.45,0.94) 0.1s both;
}

.tns-grid.visible .tns-cards .tns-card {
  animation: tns-card-from-right 0.6s cubic-bezier(0.22,0.61,0.36,1) both;
}
.tns-grid.visible .tns-cards .tns-card:nth-child(1) { animation-delay: 0.15s; }
.tns-grid.visible .tns-cards .tns-card:nth-child(2) { animation-delay: 0.32s; }
.tns-grid.visible .tns-cards .tns-card:nth-child(3) { animation-delay: 0.50s; }

/* ── BLOG / ARTICLES SECTION ──────────────────────────────── */
.blg-section {
  background: #fff;
  padding: 88px 0 96px;
}
.blg-title {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 52px;
}
.blg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blg-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(26,46,90,0.10);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,46,90,0.16);
}
.blg-img {
  width: 100%;
  height: 230px;
  overflow: hidden;
  flex-shrink: 0;
}
.blg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blg-card:hover .blg-img img {
  transform: scale(1.05);
}
.blg-body {
  background: #1a2e5a;
  padding: 20px 22px 22px;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blg-date {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
}
.blg-card-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45;
  margin: 0;
  padding-right: 44px;
}
.blg-arrow {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  overflow: hidden;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
  box-shadow: none;
}
.blg-arrow::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  height: 46%;
  max-width: 16px;
  max-height: 16px;
  background: var(--nh-arrow-svg-on-dark) center / contain no-repeat;
  pointer-events: none;
}
.blg-arrow:hover {
  background: transparent !important;
  transform: scale(1.08);
  opacity: 0.9;
  border-color: rgba(255, 255, 255, 0.95);
}

/* ── PARTNERS / LOGO MARQUEE ──────────────────────────────── */
.prt-section {
  background: #fff;
  padding: 80px 0 88px;
  overflow: hidden;
}
.prt-title {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.22;
  margin-bottom: 56px;
}

/* Track wrapper clips overflow */
.prt-track-wrap {
  overflow: hidden;
  width: 100%;
  margin-bottom: 18px;
}
.prt-track-wrap:last-child { margin-bottom: 0; }

/* Scrolling track — flex row, doubled content for seamless loop */
.prt-track {
  display: flex;
  gap: 18px;
  width: max-content;
}

/* Row 1: scroll left */
@keyframes prt-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.prt-track--left {
  animation: prt-scroll-left 22s linear infinite;
}

/* Row 2: scroll right (reverse) */
@keyframes prt-scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.prt-track--right {
  animation: prt-scroll-right 22s linear infinite;
}

/* Pause on hover */
.prt-track-wrap:hover .prt-track { animation-play-state: paused; }

/* Individual logo pill */
.prt-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #dde2ec;
  border-radius: 10px;
  padding: 14px 26px;
  min-width: 168px;
  background: #fff;
  flex-shrink: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.prt-logo:hover {
  border-color: #1a2e5a;
  box-shadow: 0 4px 16px rgba(26,46,90,0.12);
}
.prt-logo svg {
  width: 26px;
  height: 26px;
  color: var(--navy);
  flex-shrink: 0;
}
.prt-logo span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ── ORNAMENTAL SECTION DIVIDER ──────────────────────────── */
.section-divider {
  text-align: center; padding: 8px 0;
  position: relative;
}
.section-divider svg { width: 120px; height: 20px; color: var(--gold); opacity: 0.5; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE ONLY — #page-contact (does not affect homepage)
   ═══════════════════════════════════════════════════════════ */
#page-contact .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Section 1: Why choose ── */
#page-contact .pc-why {
  background: var(--cream);
  padding: calc(78px + 28px) 0 80px;
}
#page-contact .pc-why-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.35fr);
  gap: 48px 56px;
  align-items: start;
}
#page-contact .pc-why-title {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 18px;
}
#page-contact .pc-why-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.85;
  max-width: 420px;
}service-hero
#page-contact .pc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
#page-contact .pc-why-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(26, 46, 90, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform var(--trans), box-shadow var(--trans);
}
#page-contact .pc-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(26, 46, 90, 0.12);
}
#page-contact .pc-why-icon {
  color: var(--navy);
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
#page-contact .pc-why-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.35;
}

/* ── Section 2: Contact information ── */
#page-contact .pc-info-block {
  background: var(--white);
  padding: 72px 0 56px;
}
#page-contact .pc-info-head {
  max-width: 560px;
  margin-bottom: 40px;
}
#page-contact .pc-info-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
#page-contact .pc-info-intro {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.75;
}
#page-contact .pc-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
#page-contact .pc-info-col {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
#page-contact .pc-info-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
#page-contact .pc-info-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
#page-contact .pc-info-detail {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}
#page-contact .pc-info-detail a {
  color: var(--navy);
  font-weight: 500;
}
#page-contact .pc-info-detail a:hover {
  color: var(--gold);
}

/* ── Section 3: Get in touch + map ── */
#page-contact .pc-touch {
  background: var(--white);
  padding: 0 0 90px;
}
#page-contact .pc-touch-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
  min-width: 0;
}
#page-contact .pc-touch-form-wrap {
  min-width: 0;
  max-width: 100%;
}
#page-contact .pc-form {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
#page-contact .pc-form .pc-form-group {
  min-width: 0;
  max-width: 100%;
}
#page-contact .pc-touch-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}
#page-contact .pc-form .pc-form-group {
  margin-bottom: 18px;
}
#page-contact .pc-form input[type='text'],
#page-contact .pc-form input[type='tel'],
#page-contact .pc-form input[type='email'],
#page-contact .pc-form select,
#page-contact .pc-form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 14px 16px;
  font-size: 0.92rem;
  border: 1.5px solid #c5c5c5;
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  transition: border-color var(--trans);
  outline: none;
}
#page-contact .pc-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a2e5a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
#page-contact .pc-form input:focus,
#page-contact .pc-form select:focus,
#page-contact .pc-form textarea:focus {
  border-color: var(--navy);
}
#page-contact .pc-form textarea {
  resize: vertical;
  min-height: 120px;
}
#page-contact .pc-submit-btn {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  padding: 14px 32px;
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--trans);
  font-family: inherit;
}
#page-contact .pc-submit-btn:hover {
  background: var(--navy);
  color: var(--white);
}
#page-contact .pc-map-embed {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(26, 46, 90, 0.1);
  min-height: 420px;
  background: var(--light);
}
#page-contact .pc-map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ── SERVICES PAGE — inner hero ─────────────────────────── */
.service-hero {
  position: relative;
  padding: calc(78px + 36px) 0 52px;
  overflow: hidden;
  margin-top: -3%;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 72%);
}
.service-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 55% at 50% -10%, rgba(201, 162, 39, 0.09) 0%, transparent 55%);
  pointer-events: none;
}
.service-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.service-hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.service-hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.95rem;
  opacity: 0.9;
}
.service-hero-ornament::before,
.service-hero-ornament::after {
  content: '';
  width: 48px;
  max-width: 22vw;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.service-hero-ornament::after {
  background: linear-gradient(to left, transparent, var(--gold));
}
.service-hero-title {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.service-hero-desc {
  font-size: 1.02rem;
  color: var(--gray);
  line-height: 1.75;
  margin: 0 auto;
  max-width: 520px;
}
.service-hero-accent {
  width: 56px;
  height: 4px;
  margin: 28px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  box-shadow: 0 2px 12px rgba(201, 162, 39, 0.35);
}

/* ── ABOUT PAGE — editor content (optional) ─────────────── */
#page-about .page-about-content {
  background: var(--white);
}
#page-about .entry-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--dark);
  line-height: 1.8;
}
#page-about .entry-content p {
  margin-bottom: 1.1em;
  color: var(--gray);
}
#page-about .entry-content h2,
#page-about .entry-content h3 {
  color: var(--navy);
  margin-top: 1.5em;
  margin-bottom: 0.6em;
}

/* ── ABOUT PAGE — Professional Team Members ───────────── */
.abt-team {
  background: var(--white);
  padding-top: 70px;
  padding-bottom: 90px;
}
.abt-team-title {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0 auto 48px;
  max-width: 900px;
  line-height: 1.2;
}
.abt-team-slider-wrap {
  width: 100%;
}
.abt-team-slider {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.abt-team-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  transition: transform 0.45s ease;
  will-change: transform;
  align-items: stretch;
}
.abt-team-slider .abt-team-card {
  flex-shrink: 0;
  box-sizing: border-box;
  min-width: 0;
}
.abt-team-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.abt-team-prev,
.abt-team-next {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--navy);
  transition: background var(--trans), border-color var(--trans), color var(--trans), opacity var(--trans);
  padding: 0;
}
.abt-team-prev:hover:not(:disabled),
.abt-team-next:hover:not(:disabled) {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.abt-team-prev:disabled,
.abt-team-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.abt-team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(26, 46, 90, 0.08);
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
}
.abt-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(26, 46, 90, 0.12);
}
.abt-team-img {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: linear-gradient(145deg, #e8e4dc 0%, #d4cfc4 100%);
}
.abt-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.abt-team-img--ph .abt-team-ph-initials {
  display: flex;
}
.abt-team-ph-initials {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(26, 46, 90, 0.2);
}
.abt-team-info {
  padding: 22px 20px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.abt-team-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.25;
}
.abt-team-role {
  font-size: 0.88rem;
  font-weight: 600;
  color: #7a1528;
  margin: 0 0 0;
  line-height: 1.4;
}
.abt-team-phone {
  font-size: 0.84rem;
  font-weight: 600;
  margin: 6px 0 0;
  line-height: 1.35;
}
.abt-team-phone a {
  color: var(--gold);
  text-decoration: none;
}
.abt-team-phone a:hover {
  text-decoration: underline;
}
.abt-team-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding: 18px 16px 18px 20px;
  border-top: 1px solid var(--border);
  position: relative;
}
.abt-team-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.abt-team-social a {
  color: var(--navy);
  font-size: 0.95rem;
  opacity: 0.85;
  transition: color var(--trans), opacity var(--trans);
}
.abt-team-social a:hover {
  color: var(--gold);
  opacity: 1;
}
.abt-team-arrow {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent !important;
  border: 1px solid var(--nh-arrow-ring);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  overflow: hidden;
  text-decoration: none;
  margin-right: -6px;
  margin-bottom: -10px;
  box-shadow: none;
  transition: opacity var(--trans), transform var(--trans), border-color var(--trans);
}
.abt-team-arrow::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  height: 46%;
  max-width: 19px;
  max-height: 19px;
  background: var(--nh-arrow-svg) center / contain no-repeat;
  pointer-events: none;
}
.abt-team-arrow:hover {
  background: transparent !important;
  opacity: 0.82;
  transform: scale(1.05);
  border-color: var(--navy);
}

/* ── ABOUT PAGE — FAQ accordion (theme: navy + gold + cream) ─ */
.abt-faq {
  background: var(--cream);
  padding-top: 56px;
  padding-bottom: 88px;
}
.abt-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.abt-faq-title {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.2;
}
.abt-faq-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  box-shadow: 0 2px 12px rgba(201, 162, 39, 0.35);
}
.abt-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.abt-faq-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--trans), border-color var(--trans);
}
.abt-faq-item:not(.is-open) .abt-faq-card:hover {
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 6px 28px rgba(26, 46, 90, 0.08);
}
.abt-faq-item:not(.is-open) .abt-faq-card {
  border-radius: 999px;
}
.abt-faq-item.is-open .abt-faq-card {
  border-color: rgba(26, 46, 90, 0.18);
  box-shadow: 0 10px 40px rgba(26, 46, 90, 0.1);
}
.abt-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  border: none;
  background: var(--white);
  color: var(--navy);
  transition: background var(--trans), color var(--trans), border-radius var(--trans);
}
.abt-faq-qtext {
  flex: 1;
  line-height: 1.45;
}
.abt-faq-num {
  font-weight: 800;
  margin-right: 6px;
  color: var(--gold);
}
.abt-faq-item.is-open .abt-faq-trigger {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dk) 100%);
  color: var(--white);
  border-radius: 13px 13px 0 0;
}
.abt-faq-item.is-open .abt-faq-num {
  color: var(--gold);
}
.abt-faq-chev {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color var(--trans);
  color: var(--navy);
}
.abt-faq-item:not(.is-open) .abt-faq-chev {
  transform: rotate(180deg);
  color: var(--navy);
  opacity: 0.85;
}
.abt-faq-item.is-open .abt-faq-chev {
  color: var(--gold);
}
.abt-faq-panel {
  padding: 0 22px 22px;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
  background: var(--white);
  border-top: 1px solid rgba(201, 162, 39, 0.28);
}
.abt-faq-panel p {
  margin: 0;
  padding-top: 16px;
}
.abt-faq-panel[hidden] {
  display: none !important;
}

/* ── BLOG INDEX (home.php / page-blog.php) ──────────────── */
.nh-blog {
  background: var(--cream);
  padding-top: 48px;
  padding-bottom: 90px;
}
.nh-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}
.nh-blog-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(26, 46, 90, 0.06);
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
}
.nh-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26, 46, 90, 0.1);
  border-color: rgba(201, 162, 39, 0.35);
}
.nh-blog-card-img {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--light);
}
.nh-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nh-blog-card-ph {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--navy) 0%, #2a4080 100%);
}
.nh-blog-card-ph-ico {
  font-size: 3rem;
  opacity: 0.35;
}
.nh-blog-card-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nh-blog-date {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.nh-blog-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 12px;
}
.nh-blog-card-title a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--trans);
}
.nh-blog-card-title a:hover {
  color: var(--gold);
}
.nh-blog-excerpt {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.nh-blog-excerpt p {
  margin: 0;
}
.nh-blog-readmore {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  align-self: flex-start;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--trans);
}
.nh-blog-readmore:hover {
  color: var(--gold);
}
.nh-blog-empty {
  text-align: center;
  color: var(--gray);
  padding: 40px 20px;
  font-size: 1rem;
}
.nh-blog-pagination {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.nh-blog-pagination .navigation,
.nh-blog-pagination nav {
  width: 100%;
}
.nh-blog-pagination .nav-links,
.nh-blog-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nh-blog-pagination a.page-numbers,
.nh-blog-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--navy);
  background: var(--white);
  transition: all var(--trans);
}
.nh-blog-pagination a.page-numbers:hover,
.nh-blog-pagination span.page-numbers.current {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.nh-blog-pagination span.page-numbers.dots {
  border: none;
  background: transparent;
}

/* ── SINGLE POST (single.php) ─────────────────────────── */
.service-hero--compact {
  padding-bottom: 36px;
}
.service-hero--compact .service-hero-desc {
  display: none;
}
.nh-single-meta {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.nh-single-hero-title {
  font-size: clamp(1.35rem, 3vw, 2rem) !important;
  line-height: 1.2;
}
.nh-single {
  background: var(--cream);
  padding-bottom: 80px;
}
.nh-single-inner {
  max-width: 760px;
  margin: 0 auto;
}
.nh-single-thumb {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.nh-single-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.nh-single-content {
  background: var(--white);
  padding: 36px 40px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.85;
}
.nh-single-content p {
  margin-bottom: 1.2em;
}
.nh-single-content h2,
.nh-single-content h3,
.nh-single-content h4 {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  margin-top: 1.5em;
  margin-bottom: 0.6em;
}
.nh-single-content a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold);
}
.nh-single-content a:hover {
  color: var(--gold);
}
.nh-single-back {
  margin-top: 28px;
  text-align: center;
}
.nh-single-back a {
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--trans);
}
.nh-single-back a:hover {
  color: var(--gold);
}