/* cache-bust: 20260713111617 */
/* ============================================================
   Silver Union Nigeria Ltd — Design System (su.css)
   Built on Bootstrap 5.3.3 + custom premium layer
   ============================================================ */

/* ── 1. CSS Variables ────────────────────────────────────────── */
:root {
  /* Brand — refined to blend with logo gradient */
  --su-blue:        #0A4DA2;
  --su-blue-dark:   #083B7A;
  --su-blue-light:  #2D7BE5;
  --su-green:       #2FA34B;
  --su-green-dark:  #228B3A;
  --su-teal:        #0E8B9B;
  --su-gradient:    linear-gradient(135deg, #0A4DA2 0%, #0E8B9B 55%, #2FA34B 100%);
  --su-gradient-h:  linear-gradient(90deg, #0A4DA2 0%, #0E8B9B 50%, #2FA34B 100%);
  --su-gradient-subtle: linear-gradient(135deg, rgba(10,77,162,0.06) 0%, rgba(14,139,155,0.04) 60%, rgba(47,163,75,0.03) 100%);

  /* Silver accent — brand name identity */
  --su-silver:      #B8C4D0;
  --su-silver-light:#DDE3EA;
  --su-silver-dark: #8898AA;

  /* Dark palette — deeper, warmer */
  --su-dark:        #0B1121;
  --su-dark-2:      #101B2E;
  --su-dark-3:      #16253F;
  --su-dark-4:      #1D3155;

  /* Neutrals — warmer undertone */
  --su-white:       #FFFFFF;
  --su-off-white:   #F8F9FC;
  --su-gray-100:    #F0F2F7;
  --su-gray-200:    #E2E6EF;
  --su-gray-300:    #CBD2E0;
  --su-gray-500:    #7B889E;
  --su-gray-700:    #455068;
  --su-gray-900:    #1A2235;

  /* Accent — warm gold */
  --su-gold:        #C9963A;
  --su-gold-light:  #E4B860;

  /* Typography */
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py:  100px;

  /* Transitions */
  --t-fast:   all 0.2s ease;
  --t-base:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow:   all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Shadows — brand-tinted */
  --shadow-xs:  0 1px 4px rgba(10, 17, 33, 0.06);
  --shadow-sm:  0 2px 12px rgba(10, 17, 33, 0.08);
  --shadow-md:  0 4px 24px rgba(10, 17, 33, 0.12);
  --shadow-lg:  0 8px 48px rgba(10, 17, 33, 0.16);
  --shadow-xl:  0 20px 80px rgba(10, 17, 33, 0.22);

  /* Border radius */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  36px;
}

/* ── 2. Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--su-gray-900);
  background-color: var(--su-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--t-fast); }
ul  { list-style: none; padding: 0; margin: 0; }

::selection {
  background: var(--su-blue);
  color: var(--su-white);
}

/* ── 3. Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--su-dark-2);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--su-blue);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 2px;
  background: var(--su-gradient-h);
}
.section-label.light { color: var(--su-gold); }
.section-label.light::before { background: var(--su-gold); }

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--su-dark-2);
  margin-bottom: 20px;
  line-height: 1.18;
}
.section-title.light { color: var(--su-white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--su-gray-500);
  max-width: 600px;
  margin-bottom: 0;
}
.section-subtitle.centered { margin-left: auto; margin-right: auto; text-align: center; }

.section-body {
  font-size: 1.02rem;
  color: var(--su-gray-700);
  margin-bottom: 18px;
  line-height: 1.8;
}
.section-body.light { color: rgba(255,255,255,0.78); }

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

/* ── 4. Layout Utilities ──────────────────────────────────────── */
.section-py      { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.section-pt      { padding-top: var(--section-py); }
.section-pb      { padding-bottom: var(--section-py); }
.bg-su-dark      { background-color: var(--su-dark-2); }
.bg-su-darkest   { background-color: var(--su-dark); }
.bg-su-light     { background-color: var(--su-off-white); }
.bg-su-gray      { background-color: var(--su-gray-100); }

.section-header { margin-bottom: 56px; }
.section-header.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── 5. Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--t-base);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary {
  background: var(--su-blue);
  color: var(--su-white);
  border-color: var(--su-blue);
}
.btn-primary:hover {
  background: var(--su-blue-dark);
  border-color: var(--su-blue-dark);
  color: var(--su-white);
  box-shadow: 0 8px 24px rgba(18, 82, 180, 0.35);
}

.btn-gradient {
  background: var(--su-gradient);
  color: var(--su-white);
  border: none;
}
.btn-gradient:hover {
  opacity: 0.9;
  color: var(--su-white);
  box-shadow: 0 8px 24px rgba(18, 82, 180, 0.35);
}

.btn-outline-primary {
  background: transparent;
  color: var(--su-blue);
  border-color: var(--su-blue);
}
.btn-outline-primary:hover {
  background: var(--su-blue);
  color: var(--su-white);
}

.btn-white {
  background: var(--su-white);
  color: var(--su-dark-2);
  border-color: var(--su-white);
}
.btn-white:hover {
  background: var(--su-off-white);
  color: var(--su-blue);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--su-white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--su-white);
  color: var(--su-white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--su-dark-2);
  border-color: var(--su-dark-2);
}
.btn-outline-dark:hover {
  background: var(--su-dark-2);
  color: var(--su-white);
}

.btn-sm  { padding: 8px 18px; font-size: 0.84rem; }
.btn-lg  { padding: 15px 36px; font-size: 1rem; }
.btn-xl  { padding: 18px 48px; font-size: 1.05rem; }

/* ── 6. Navbar ────────────────────────────────────────────────── */
.su-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.su-navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(6, 15, 30, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: var(--t-base);
}
.su-navbar.scrolled .nav-logo img { filter: none; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}
/* Mobile-only menu items (CTA + quick contact inside the nav-menu list) —
   hidden by default; shown only inside the mobile @media block below. */
.nav-mobile-cta,
.nav-mobile-contact {
  display: none;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--t-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--su-gradient-h);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover,
.nav-link.active {
  color: var(--su-white);
}

.su-navbar.scrolled .nav-link {
  color: var(--su-gray-700);
}
.su-navbar.scrolled .nav-link:hover,
.su-navbar.scrolled .nav-link.active {
  color: var(--su-blue);
}

.nav-cta .btn { padding: 10px 24px; font-size: 0.88rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--su-white);
  border-radius: 2px;
  transition: var(--t-base);
}
.su-navbar.scrolled .nav-hamburger span { background: var(--su-dark-2); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 7. Hero ──────────────────────────────────────────────────── */
.su-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(6, 15, 30, 0.88) 0%,
    rgba(10, 22, 40, 0.78) 50%,
    rgba(13, 31, 60, 0.65) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 100px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--su-green);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  color: var(--su-white);
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-title-accent {
  display: block;
  background: var(--su-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--su-white);
  line-height: 1;
}
.trust-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.trust-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: var(--su-white);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── 8. Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--su-dark-2);
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--su-gradient-h);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 12px 20px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  background: var(--su-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-suffix {
  font-size: 1.6rem;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  margin-top: 8px;
  text-transform: uppercase;
}

/* ── 9. About Snapshot ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 60%; aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--su-white);
}
.about-img-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 32px; left: -24px;
  background: var(--su-gradient);
  color: var(--su-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-badge-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-value-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(18,82,180,0.08), rgba(68,178,58,0.08));
  border: 1px solid rgba(18,82,180,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--su-blue);
}
.about-value-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--su-dark-2);
  margin-bottom: 2px;
}
.about-value-desc {
  font-size: 0.88rem;
  color: var(--su-gray-500);
  margin: 0;
}

/* ── 10. Services Section ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--su-white);
  border: 1px solid var(--su-gray-200);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--t-base);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--su-gradient-h);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--su-gray-100);
  line-height: 1;
  transition: var(--t-base);
}
.service-card:hover .service-card-num { color: var(--su-gray-200); }

.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(18,82,180,0.1), rgba(68,178,58,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--su-blue);
  margin-bottom: 24px;
  transition: var(--t-base);
}
.service-card:hover .service-icon {
  background: var(--su-gradient);
  color: var(--su-white);
  box-shadow: 0 8px 20px rgba(18,82,180,0.3);
}

.service-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--su-dark-2);
  margin-bottom: 12px;
  line-height: 1.4;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--su-gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--su-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--t-fast);
}
.service-link i { font-size: 0.75rem; transition: transform 0.2s ease; }
.service-link:hover { color: var(--su-blue-dark); }
.service-link:hover i { transform: translateX(4px); }

/* ── 11. Portfolio / Projects ─────────────────────────────────── */
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--su-gray-200);
  background: var(--su-white);
  color: var(--su-gray-700);
  cursor: pointer;
  transition: var(--t-fast);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--su-blue);
  border-color: var(--su-blue);
  color: var(--su-white);
}

.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: var(--radius-md); }
.portfolio-item--wide { grid-column: span 2; }

.portfolio-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.portfolio-item--wide .portfolio-img { aspect-ratio: 16/7; }

.portfolio-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-item:hover .portfolio-img img { transform: scale(1.07); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,15,30,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--su-green);
  margin-bottom: 6px;
}
.portfolio-info h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--su-white);
  margin-bottom: 12px;
}
.portfolio-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--su-white);
  color: var(--su-dark-2);
  font-size: 0.85rem;
  transition: var(--t-fast);
}
.portfolio-arrow:hover {
  background: var(--su-gradient);
  color: var(--su-white);
}

/* ── 12. Why Us ───────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.why-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--su-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-check i { font-size: 0.65rem; color: var(--su-white); }
.why-feature-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.why-img-wrap { position: relative; }
.why-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.why-img-main img { width: 100%; height: 100%; object-fit: cover; }

.why-float-card {
  position: absolute;
  bottom: 40px; left: -32px;
  background: var(--su-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}
.why-float-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--su-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--su-white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-float-label { font-size: 1.4rem; font-weight: 700; color: var(--su-dark-2); line-height: 1; }
.why-float-sub   { font-size: 0.78rem; color: var(--su-gray-500); margin-top: 2px; }

/* ── 13. Property Cards ───────────────────────────────────────── */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.property-card {
  background: var(--su-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--su-gray-200);
  transition: var(--t-base);
}
.property-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}

.property-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.property-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.property-card:hover .property-img img { transform: scale(1.05); }

.property-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--su-blue);
  color: var(--su-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.property-badge.for-sale { background: var(--su-green); }

.property-body { padding: 22px; }

.property-location {
  font-size: 0.8rem;
  color: var(--su-gray-500);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.property-location i { color: var(--su-blue); }

.property-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--su-dark-2);
  margin-bottom: 14px;
  line-height: 1.4;
}

.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--su-gray-100);
  border-bottom: 1px solid var(--su-gray-100);
  margin-bottom: 16px;
}
.property-features span {
  font-size: 0.8rem;
  color: var(--su-gray-500);
  display: flex;
  align-items: center;
  gap: 5px;
}
.property-features i { color: var(--su-teal); }

.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.property-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--su-blue);
  font-style: italic;
}

/* ── 14. Blog Cards ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--su-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--su-gray-200);
  transition: var(--t-base);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}

.blog-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.05); }

.blog-cat-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--su-gradient);
  color: var(--su-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.blog-body { padding: 24px; }

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--su-gray-500);
  margin-bottom: 12px;
}
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-meta i { color: var(--su-teal); }

.blog-title {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--su-dark-2);
  margin-bottom: 10px;
  line-height: 1.45;
}
.blog-excerpt {
  font-size: 0.87rem;
  color: var(--su-gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--su-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-link i { font-size: 0.75rem; transition: transform 0.2s ease; }
.blog-link:hover { color: var(--su-blue-dark); }
.blog-link:hover i { transform: translateX(4px); }

/* ── 15. CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--su-dark-2);
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: 0.25;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,82,180,0.7) 0%, rgba(10,22,40,0.9) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--su-white);
  margin-bottom: 18px;
}
.cta-content p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  line-height: 1.75;
}
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ── 16. Footer ───────────────────────────────────────────────── */
.su-footer {
  background: var(--su-dark);
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
}
.su-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--su-gradient-h);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo { height: 42px; width: auto; margin-bottom: 20px; }
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: var(--t-fast);
}
.social-btn:hover {
  background: var(--su-gradient);
  border-color: transparent;
  color: var(--su-white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '–';
  color: var(--su-blue);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.footer-links a:hover { color: var(--su-white); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-contact-item i {
  color: var(--su-teal);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--su-white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-left p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.28);
  margin: 0;
}
.footer-bottom-right { display: flex; gap: 20px; }
.footer-bottom-right a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s ease;
}
.footer-bottom-right a:hover { color: rgba(255,255,255,0.7); }

/* ── 17. WhatsApp Float ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--su-white);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--t-base);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
  color: var(--su-white);
}
.whatsapp-tooltip {
  position: absolute;
  right: 64px;
  background: var(--su-dark-2);
  color: var(--su-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--su-dark-2);
  border-right: 0;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── 18. Back to Top ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 100px; right: 32px;
  z-index: 998;
  width: 42px; height: 42px;
  background: var(--su-white);
  border: 1.5px solid var(--su-gray-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--su-dark-2);
  font-size: 0.85rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--t-base);
  box-shadow: var(--shadow-sm);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--su-blue);
  border-color: var(--su-blue);
  color: var(--su-white);
  box-shadow: 0 4px 16px rgba(18,82,180,0.3);
}

/* ── 19. Page Banner (inner pages) ───────────────────────────── */
.page-banner {
  background: var(--su-dark-2);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--su-gradient-h);
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  object-fit: cover;
  width: 100%; height: 100%;
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--su-teal);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-banner-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--su-teal);
}
.page-banner h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--su-white);
  margin-bottom: 14px;
}
.breadcrumb-su { display: flex; align-items: center; gap: 8px; }
.breadcrumb-su a,
.breadcrumb-su span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb-su a:hover { color: var(--su-white); }
.breadcrumb-su .sep { color: rgba(255,255,255,0.25); }
.breadcrumb-su .current { color: rgba(255,255,255,0.8); }

/* ── 20. Toast Notifications (from PropVault pattern) ────────── */
.su-toast-container {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
}
.su-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--su-white);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--su-blue);
  animation: toastIn 0.35s ease forwards;
  cursor: pointer;
}
.su-toast.success { border-left-color: var(--su-green); }
.su-toast.error   { border-left-color: #EF4444; }
.su-toast.warning { border-left-color: var(--su-gold); }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(100%); }
  to   { opacity: 1; transform: translateX(0); }
}
.toast-icon  { font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }
.toast-body  { flex: 1; }
.toast-title { font-size: 0.88rem; font-weight: 700; color: var(--su-dark-2); }
.toast-msg   { font-size: 0.82rem; color: var(--su-gray-500); margin-top: 2px; }

/* ── 21. Form Styles ──────────────────────────────────────────── */
.su-form-group { margin-bottom: 20px; }
.su-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--su-gray-900);
  margin-bottom: 7px;
}
.su-input,
.su-select,
.su-textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--su-gray-900);
  background: var(--su-white);
  border: 1.5px solid var(--su-gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.su-input:focus,
.su-select:focus,
.su-textarea:focus {
  border-color: var(--su-blue);
  box-shadow: 0 0 0 3px rgba(18,82,180,0.1);
}
.su-textarea { resize: vertical; min-height: 140px; }
.su-input.is-invalid,
.su-textarea.is-invalid { border-color: #EF4444; }
.su-field-error { font-size: 0.8rem; color: #EF4444; margin-top: 5px; }

/* ── 22. Animations ───────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* .reveal initial state — GSAP ScrollTrigger.batch() reads these values
   and animates them to autoAlpha: 1 / y: 0 on scroll. No IntersectionObserver. */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}

/* ── 23. Responsive ───────────────────────────────────────────── */
@media (max-width: 1199px) {
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .about-grid        { gap: 48px; }
  .why-grid          { gap: 48px; }
}

@media (max-width: 991px) {
  :root { --section-py: 70px; }

  .nav-menu, .nav-cta {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--su-dark);
    gap: 8px;
    z-index: 999;
  }
  .nav-menu.open, .nav-cta.open { display: flex; }
  .nav-cta.open { position: static; display: flex; flex-direction: row; justify-content: center; z-index: auto; background: none; }
  .nav-link { font-size: 1.4rem; color: var(--su-white) !important; }
  .nav-hamburger { display: flex; z-index: 1000; }

  .about-grid        { grid-template-columns: 1fr; gap: 48px; }
  .about-badge       { left: 0; }
  .why-grid          { grid-template-columns: 1fr; gap: 48px; }
  .why-float-card    { left: 0; }
  .portfolio-grid    { grid-template-columns: 1fr 1fr; }
  .portfolio-item--wide { grid-column: span 2; }
  .properties-grid   { grid-template-columns: 1fr 1fr; }
  .blog-grid         { grid-template-columns: 1fr 1fr; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item + .stat-item::before { display: none; }
}

@media (max-width: 767px) {
  :root { --section-py: 56px; }

  .hero-title       { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-trust       { display: none; }
  .services-grid    { grid-template-columns: 1fr; }
  .portfolio-grid   { grid-template-columns: 1fr; }
  .portfolio-item--wide { grid-column: span 1; }
  .properties-grid  { grid-template-columns: 1fr; }
  .blog-grid        { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .why-features     { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .whatsapp-float   { bottom: 20px; right: 20px; }
  .back-to-top      { bottom: 86px; right: 20px; }
  .hero-ctas        { flex-direction: column; }
  .hero-ctas .btn   { text-align: center; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICE DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */

/* Banner with service meta */
.service-banner { padding-bottom: 80px; }
.service-banner-inner { max-width: 720px; }
.service-banner-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.service-banner-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  background: var(--su-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
}
.service-banner-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--su-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--su-white);
  box-shadow: 0 8px 28px rgba(18,82,180,0.4);
}
.service-banner-tagline {
  font-size: 1.1rem;
  color: var(--ink-600);
  line-height: 1.7;
  max-width: 600px;
  margin-top: 14px;
}

/* Overview grid */
.service-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-feature-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}
.service-feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-feature-img:hover img { transform: scale(1.04); }
.service-feature-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--su-gradient);
  color: var(--su-white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.sfb-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.sfb-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.sfb-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
}
.service-feature-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--su-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.service-feature-tag i { color: var(--su-green); }

.service-overview-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 24px;
}
.service-trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--su-gray-700);
}
.service-trust-item i { color: var(--su-green); }

/* Scope cards */
.scope-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.scope-card {
  background: var(--su-white);
  border: 1px solid var(--su-gray-200);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: var(--t-base);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.scope-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--su-gradient-h);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.scope-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.scope-card:hover::after { transform: scaleX(1); }
.scope-card-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--su-gray-100);
  position: absolute;
  top: 14px; right: 16px;
  transition: color 0.3s ease;
}
.scope-card:hover .scope-card-num { color: var(--su-gray-200); }
.scope-card-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(18,82,180,0.09), rgba(68,178,58,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--su-blue);
  transition: var(--t-base);
  flex-shrink: 0;
}
.scope-card:hover .scope-card-icon {
  background: var(--su-gradient);
  color: var(--su-white);
}
.scope-card-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--su-dark-2);
  line-height: 1.5;
  margin: 0;
}

/* Process steps */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: rgba(255,255,255,0.08);
}
.process-step {
  position: relative;
  padding: 0 20px;
  text-align: center;
}
.process-step-connector {
  width: 2px;
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  background: rgba(255,255,255,0.06);
}
.process-step-connector.last { display: none; }
.process-step-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--su-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--su-white);
  margin-bottom: 24px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(18,82,180,0.4);
  position: relative;
  z-index: 2;
}
.process-step-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--su-white);
  margin-bottom: 10px;
  line-height: 1.35;
}
.process-step-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0;
}

/* Service Gallery */
.service-gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.service-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--su-gray-100);
}
.service-gallery-item:first-child {
  grid-row: span 2;
}
.service-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.service-gallery-item:hover img { transform: scale(1.06); }
.service-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,15,30,0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.service-gallery-item:hover .service-gallery-overlay { opacity: 1; }
.service-gallery-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--su-white);
}
.service-gallery-label i { color: var(--su-green); }

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  background: var(--su-white);
  border: 1px solid var(--su-gray-200);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--su-gradient-h);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(18,82,180,0.1), rgba(68,178,58,0.07));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--su-blue);
  margin: 0 auto 24px;
  transition: var(--t-base);
}
.benefit-card:hover .benefit-icon {
  background: var(--su-gradient);
  color: var(--su-white);
  box-shadow: 0 12px 30px rgba(18,82,180,0.3);
}
.benefit-title {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--su-dark-2);
  margin-bottom: 12px;
}
.benefit-desc {
  font-size: 0.9rem;
  color: var(--su-gray-500);
  line-height: 1.7;
  margin: 0;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--su-gray-100);
}
.faq-item:first-child { border-top: 1px solid var(--su-gray-100); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--su-dark-2);
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--su-blue); }
.faq-icon {
  font-size: 0.8rem;
  color: var(--su-blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-icon.rotated { transform: rotate(45deg); }
.faq-answer { padding: 0 0 20px; }
.faq-answer p {
  font-size: 0.92rem;
  color: var(--su-gray-500);
  line-height: 1.75;
  margin: 0;
}

/* Related services */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-service-card {
  background: var(--su-white);
  border: 1px solid var(--su-gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}
.related-service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--su-gradient-h);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.related-service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}
.related-service-card:hover::after { transform: scaleX(1); }
.rsc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.rsc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(18,82,180,0.1), rgba(68,178,58,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--su-blue);
  transition: var(--t-base);
}
.related-service-card:hover .rsc-icon {
  background: var(--su-gradient);
  color: var(--su-white);
}
.rsc-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--su-gray-100);
  line-height: 1;
}
.rsc-title {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--su-dark-2);
  margin-bottom: 10px;
  line-height: 1.4;
}
.rsc-desc {
  font-size: 0.86rem;
  color: var(--su-gray-500);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rsc-arrow {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--su-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.rsc-arrow i { font-size: 0.75rem; transition: transform 0.2s ease; }
.related-service-card:hover .rsc-arrow i { transform: translateX(4px); }

/* Prev / Next nav */
.service-pagination {
  background: var(--su-off-white);
  border-top: 1px solid var(--su-gray-100);
  border-bottom: 1px solid var(--su-gray-100);
  padding: 28px 0;
}
.service-pagination-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.service-page-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--su-gray-200);
  background: var(--su-white);
  text-decoration: none;
  transition: var(--t-base);
  color: inherit;
}
.service-page-link.next { justify-content: flex-end; }
.service-page-link:hover {
  border-color: var(--su-blue);
  box-shadow: var(--shadow-sm);
  color: inherit;
}
.service-page-link i { font-size: 1.1rem; color: var(--su-blue); flex-shrink: 0; }
.spn-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--su-gray-500);
  margin-bottom: 3px;
}
.spn-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--su-dark-2);
  line-height: 1.3;
}
.service-page-link.next .spn-label,
.service-page-link.next .spn-title { text-align: right; }
.service-page-all {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--su-white);
  border: 1px solid var(--su-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--su-gray-700);
  font-size: 1rem;
  transition: var(--t-fast);
  text-decoration: none;
}
.service-page-all:hover {
  background: var(--su-blue);
  border-color: var(--su-blue);
  color: var(--su-white);
}

/* Service detail responsive */
@media (max-width: 1199px) {
  .scope-cards-grid   { grid-template-columns: repeat(2, 1fr); }
  .process-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step-connector { display: none; }
  .process-steps-grid::before { display: none; }
  .service-overview-grid { gap: 48px; }
}
@media (max-width: 991px) {
  .service-overview-grid  { grid-template-columns: 1fr; }
  .service-gallery-grid   { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .service-gallery-item:first-child { grid-row: span 1; }
  .benefits-grid          { grid-template-columns: 1fr; }
  .faq-layout             { grid-template-columns: 1fr; gap: 40px; }
  .related-services-grid  { grid-template-columns: 1fr 1fr; }
  .service-trust-row      { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .scope-cards-grid       { grid-template-columns: 1fr; }
  .process-steps-grid     { grid-template-columns: 1fr; }
  .related-services-grid  { grid-template-columns: 1fr; }
  .service-gallery-grid   { grid-template-columns: 1fr; grid-template-rows: auto; }
  .service-gallery-item:first-child { grid-row: span 1; }
  .service-overview-ctas  { flex-direction: column; }
  .service-pagination-inner { grid-template-columns: 1fr; }
  .service-page-link.next .spn-title { text-align: left; }
  .service-page-link.next { justify-content: flex-start; }
  .service-page-all       { display: none; }
  .service-banner-num     { font-size: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   INNER-PAGE COMPONENTS
   (About, Services, Projects, Properties, Blog)
   ═══════════════════════════════════════════════════════════ */

/* ── 24. Image Placeholder Slot ──────────────────────────── */
.img-slot {
  position: relative;
  overflow: hidden;
  background: var(--su-gray-100);
  border-radius: var(--radius-md);
}
.img-slot img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.img-slot-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--su-gray-300);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 8px;
  pointer-events: none;
  opacity: 0;
}
.img-slot:not(:has(img[src])) .img-slot-label,
.img-slot img[src=""] ~ .img-slot-label { opacity: 1; }

/* ── 25. Core Values Grid ─────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--su-white);
  border: 1px solid var(--su-gray-200);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--t-base);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--su-gradient-h);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(18,82,180,0.08), rgba(68,178,58,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--su-blue);
  margin-bottom: 22px;
  transition: var(--t-base);
}
.value-card:hover .value-icon {
  background: var(--su-gradient);
  color: var(--su-white);
}
.value-card h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--su-dark-2);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--su-gray-500);
  line-height: 1.7;
  margin: 0;
}

/* ── 26. Timeline ─────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--su-blue), var(--su-teal), var(--su-green));
}
.timeline-item {
  position: relative;
  padding: 0 0 36px 24px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -30px; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--su-gradient);
  border: 3px solid var(--su-white);
  box-shadow: 0 0 0 2px var(--su-blue);
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--su-blue);
  margin-bottom: 4px;
}
.timeline-item h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--su-dark-2);
  margin-bottom: 5px;
}
.timeline-item p {
  font-size: 0.88rem;
  color: var(--su-gray-500);
  margin: 0;
  line-height: 1.65;
}

/* ── 27. Team Cards ───────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--su-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--su-gray-200);
  transition: var(--t-base);
  text-align: center;
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}
.team-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--su-gray-100);
}
.team-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.team-card:hover .team-img img { transform: scale(1.05); }
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-socials {
  position: absolute;
  bottom: 16px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--t-base);
}
.team-card:hover .team-socials { opacity: 1; transform: translateY(0); }
.team-social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--su-white);
  color: var(--su-dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: var(--t-fast);
}
.team-social-link:hover { background: var(--su-gradient); color: var(--su-white); }
.team-info { padding: 22px 18px; }
.team-name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--su-dark-2);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.8rem;
  color: var(--su-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── 28. Service Detail Sections ──────────────────────────── */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--su-gray-100);
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

.service-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-img-wrap:hover img { transform: scale(1.04); }
.service-img-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--su-gradient);
  color: var(--su-white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
}

.service-detail-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(18,82,180,0.1), rgba(68,178,58,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--su-blue);
  margin-bottom: 24px;
}
.service-num-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--su-teal);
  margin-bottom: 8px;
}
.service-scope {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0 32px;
}
.service-scope-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--su-gray-700);
  line-height: 1.5;
}
.service-scope-item i {
  color: var(--su-green);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── 29. Projects Page Grid ───────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  background: var(--su-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--su-gray-200);
  transition: var(--t-base);
}
.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}
.project-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--su-gray-100);
}
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-img img { transform: scale(1.06); }
.project-cat-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--su-white);
  background: var(--su-gradient);
  padding: 4px 12px;
  border-radius: 100px;
}
.project-body { padding: 24px; }
.project-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--su-dark-2);
  margin-bottom: 8px;
  line-height: 1.4;
}
.project-desc {
  font-size: 0.87rem;
  color: var(--su-gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--su-gray-300);
  padding-top: 14px;
  border-top: 1px solid var(--su-gray-100);
}
.project-meta span { display: flex; align-items: center; gap: 5px; }
.project-meta i { color: var(--su-teal); }

/* ── 30. Property Show Page ───────────────────────────────── */
.property-show-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.property-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--su-gray-100);
  margin-bottom: 12px;
}
.property-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.property-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--su-gray-100);
  position: relative;
}
.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-thumb:hover img { transform: scale(1.08); }
.gallery-thumb.active { outline: 3px solid var(--su-blue); outline-offset: 2px; }

.property-sidebar-card {
  background: var(--su-white);
  border: 1px solid var(--su-gray-200);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.property-sidebar-card h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--su-gray-500);
  margin-bottom: 20px;
}
.property-spec-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.property-spec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--su-gray-100);
}
.property-spec-item:last-child { border-bottom: none; padding-bottom: 0; }
.property-spec-label { color: var(--su-gray-500); display: flex; align-items: center; gap: 7px; }
.property-spec-label i { color: var(--su-teal); }
.property-spec-value { font-weight: 700; color: var(--su-dark-2); }

.property-features-section { margin: 40px 0; }
.property-features-section h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--su-dark-2);
  margin-bottom: 18px;
}
.property-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--su-gray-700);
  padding: 10px 14px;
  background: var(--su-off-white);
  border-radius: var(--radius-sm);
}
.amenity-item i { color: var(--su-blue); font-size: 0.85rem; }

/* ── 31. Blog Article ─────────────────────────────────────── */
.blog-show-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.article-featured-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--su-gray-100);
  margin-bottom: 36px;
}
.article-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.article-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--su-white);
  background: var(--su-gradient);
  padding: 4px 14px;
  border-radius: 100px;
}
.article-date, .article-read {
  font-size: 0.82rem;
  color: var(--su-gray-500);
  display: flex;
  align-items: center;
  gap: 5px;
}
.article-date i, .article-read i { color: var(--su-teal); }
.article-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--su-dark-2);
  line-height: 1.25;
  margin-bottom: 20px;
}
.article-excerpt {
  font-size: 1.1rem;
  color: var(--su-gray-500);
  line-height: 1.75;
  margin-bottom: 32px;
  font-style: italic;
  border-left: 3px solid var(--su-gradient-h);
  padding-left: 18px;
  border-image: var(--su-gradient-h) 1;
}
.article-body {
  font-size: 1.02rem;
  color: var(--su-gray-700);
  line-height: 1.85;
}
.article-body h2, .article-body h3 {
  font-family: var(--font-sans);
  color: var(--su-dark-2);
  margin-top: 36px;
  margin-bottom: 14px;
}
.article-body h2 { font-size: 1.5rem; }
.article-body h3 { font-size: 1.2rem; }
.article-body p  { margin-bottom: 20px; }
.article-body ul { padding-left: 20px; margin-bottom: 20px; }
.article-body ul li { margin-bottom: 8px; }
.article-body blockquote {
  background: var(--su-off-white);
  border-left: 4px solid var(--su-blue);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--su-gray-700);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--su-gray-100);
}
.article-share-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--su-gray-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.share-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--su-gray-100);
  color: var(--su-gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--t-fast);
}
.share-btn:hover { background: var(--su-gradient); color: var(--su-white); }

.author-card {
  background: var(--su-off-white);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
}
.author-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--su-gray-200);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--su-dark-2);
  margin-bottom: 3px;
}
.author-role { font-size: 0.8rem; color: var(--su-blue); font-weight: 600; margin-bottom: 8px; }
.author-bio  { font-size: 0.87rem; color: var(--su-gray-500); line-height: 1.65; margin: 0; }

/* Blog sidebar */
.blog-sidebar-widget {
  background: var(--su-white);
  border: 1px solid var(--su-gray-200);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 28px;
}
.sidebar-widget-title {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--su-gray-500);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--su-gray-100);
}
.category-list { display: flex; flex-direction: column; gap: 6px; }
.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--su-gray-700);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--t-fast);
}
.category-list a:hover { background: var(--su-off-white); color: var(--su-blue); }
.cat-count {
  background: var(--su-gray-100);
  color: var(--su-gray-500);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.recent-post-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--su-gray-100);
}
.recent-post-item:last-child { border-bottom: none; }
.recent-post-img {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--su-gray-100);
}
.recent-post-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-title {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--su-dark-2);
  line-height: 1.45;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}
.recent-post-item a:hover .recent-post-title { color: var(--su-blue); }
.recent-post-date { font-size: 0.75rem; color: var(--su-gray-500); }

/* ── 32. Newsletter Strip ─────────────────────────────────── */
.newsletter-strip {
  background: var(--su-dark-2);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--su-gradient-h);
}
.newsletter-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-strip h3 {
  color: var(--su-white);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 4px;
}
.newsletter-strip p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin: 0;
}
.newsletter-form-row {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 460px;
}
.newsletter-form-row .su-input {
  background: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--ink-900);
  box-shadow: 0 4px 18px rgba(4,10,24,0.18);
}
.newsletter-form-row .su-input::placeholder { color: var(--ink-500); }
.newsletter-form-row .su-input:focus {
  border-color: var(--su-teal);
  box-shadow: 0 0 0 3px rgba(22,143,160,0.28), 0 4px 18px rgba(4,10,24,0.18);
}
.newsletter-form-row .btn-gradient {
  border: 1.5px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 26px rgba(2,6,16,0.3);
}
.newsletter-form-row .btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(2,6,16,0.38);
}

/* ── 33. Pagination ───────────────────────────────────────── */
.pagination-su {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 56px;
}
.page-btn {
  min-width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--su-gray-200);
  background: var(--su-white);
  color: var(--su-gray-700);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  text-decoration: none;
  transition: var(--t-fast);
}
.page-btn:hover, .page-btn.active {
  background: var(--su-blue);
  border-color: var(--su-blue);
  color: var(--su-white);
}
.page-btn.disabled { opacity: 0.35; pointer-events: none; }

/* ── 34. Filter Bar ───────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: var(--su-off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--su-gray-100);
}
.filter-bar label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--su-gray-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 4px;
}
.filter-bar .su-select {
  max-width: 200px;
  padding: 9px 14px;
  font-size: 0.88rem;
}

/* ── 35. Related Posts / Properties ──────────────────────── */
.related-section { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--su-gray-100); }
.related-section h3 {
  font-size: 1.4rem;
  color: var(--su-dark-2);
  margin-bottom: 28px;
}

/* ── Inner-page responsive ───────────────────────────────── */
@media (max-width: 1199px) {
  .team-grid          { grid-template-columns: repeat(2, 1fr); }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .service-row        { gap: 48px; }
  .blog-show-layout   { grid-template-columns: 1fr 280px; }
  .property-show-layout { grid-template-columns: 1fr 320px; }
}
@media (max-width: 991px) {
  .service-row        { grid-template-columns: 1fr; gap: 36px; }
  .service-row.reverse { direction: ltr; }
  .service-scope      { grid-template-columns: 1fr; }
  .projects-grid      { grid-template-columns: 1fr 1fr; }
  .property-show-layout { grid-template-columns: 1fr; }
  .blog-show-layout   { grid-template-columns: 1fr; }
  .property-amenities-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-strip-inner { flex-direction: column; text-align: center; }
  .newsletter-form-row { max-width: 100%; }
}
@media (max-width: 767px) {
  .team-grid          { grid-template-columns: 1fr 1fr; }
  .values-grid        { grid-template-columns: 1fr; }
  .projects-grid      { grid-template-columns: 1fr; }
  .property-gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .property-amenities-grid { grid-template-columns: 1fr; }
  .author-card        { flex-direction: column; }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║   PREMIUM LAYER — 3D Effects, Glass Morphism, Depth Design  ║
   ║   Silver Union Nigeria Ltd — Elevated Visual Design System   ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ── P1. Enhanced CSS Variables ──────────────────────────────── */
:root {
  /* Premium 3D shadow stack */
  --shadow-3d-sm:
    0 1px 2px rgba(6,15,30,0.07),
    0 4px 12px rgba(6,15,30,0.06),
    0 8px 24px rgba(6,15,30,0.05);
  --shadow-3d-md:
    0 2px 4px rgba(6,15,30,0.08),
    0 8px 24px rgba(6,15,30,0.09),
    0 20px 48px rgba(6,15,30,0.07);
  --shadow-3d-lg:
    0 4px 8px rgba(6,15,30,0.1),
    0 16px 40px rgba(6,15,30,0.12),
    0 40px 80px rgba(6,15,30,0.1);
  --shadow-glow-blue:  0 8px 32px rgba(18, 82, 180, 0.28);
  --shadow-glow-teal:  0 8px 32px rgba(22, 143, 160, 0.28);
  --shadow-glow-green: 0 8px 32px rgba(68, 178, 58, 0.28);

  /* Glass morphism */
  --glass-bg:     rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-blur:   20px;

  /* Mesh gradient backgrounds */
  --bg-mesh-dark:
    radial-gradient(at 20% 30%, rgba(18,82,180,0.18) 0%, transparent 55%),
    radial-gradient(at 80% 70%, rgba(22,143,160,0.14) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(68,178,58,0.10) 0%, transparent 50%),
    var(--su-dark-2);

  --bg-mesh-light:
    radial-gradient(at 10% 20%, rgba(18,82,180,0.06) 0%, transparent 50%),
    radial-gradient(at 90% 80%, rgba(22,143,160,0.05) 0%, transparent 50%),
    var(--su-off-white);

  /* Section divider gradient */
  --divider-gradient: linear-gradient(90deg, transparent 0%, var(--su-blue) 30%, var(--su-teal) 70%, transparent 100%);
}

/* ── P2. Body & Global Enhancements ──────────────────────────── */
body {
  background-color: var(--su-white);
}

/* Premium selection highlight */
::selection {
  background: var(--su-blue);
  color: #fff;
  text-shadow: none;
}

/* Smooth cursor on interactive */
a, button, [role="button"], .filter-btn, .page-btn, .social-btn { cursor: pointer; }

/* ── P3. Premium Navbar ───────────────────────────────────────── */
.su-navbar {
  padding: 20px 0;
}

.su-navbar.scrolled {
  background: rgba(6, 15, 30, 0.96);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 4px 32px rgba(0,0,0,0.3);
}

/* Scrolled navbar: keep white links */
.su-navbar.scrolled .nav-link {
  color: rgba(255,255,255,0.82);
}
.su-navbar.scrolled .nav-link:hover,
.su-navbar.scrolled .nav-link.active {
  color: var(--su-white);
}
.su-navbar.scrolled .nav-hamburger span { background: var(--su-white); }

/* Nav logo — no glow/shadow (user preference) */
.su-navbar.scrolled .nav-logo img {
  filter: none;
}

/* CTA button in nav */
.nav-cta .btn-gradient {
  box-shadow: var(--shadow-glow-blue);
  letter-spacing: 0.03em;
}
.nav-cta .btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(18,82,180,0.4);
}

/* ── P4. Premium Hero ─────────────────────────────────────────── */
.su-hero {
  min-height: 100vh;
}

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(4, 10, 22, 0.92) 0%,
    rgba(8, 18, 36, 0.80) 45%,
    rgba(12, 25, 52, 0.68) 100%
  );
}

/* Shimmer accent line behind hero text */
/* (removed) decorative line from the old dark hero — it crossed the new headline */
.hero-content::before { content: none; display: none; }

.hero-eyebrow {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-title {
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
  letter-spacing: -0.01em;
}

/* Gradient title accent — already defined, but enhance */
.hero-title-accent {
  filter: drop-shadow(0 0 20px rgba(68,178,58,0.3));
}

/* CTA buttons in hero */
.hero-ctas .btn-gradient {
  box-shadow: var(--shadow-glow-blue);
  position: relative;
  overflow: hidden;
}
.hero-ctas .btn-gradient::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.hero-ctas .btn-gradient:hover::after { left: 120%; }

/* Trust row numbers */
.trust-number {
  background: var(--su-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.2rem;
}

/* ── P5. Stats Bar — Elevated ─────────────────────────────────── */
.stats-bar {
  background: var(--bg-mesh-dark);
  padding: 48px 0;
}

.stats-bar::before {
  height: 2px;
  background: var(--su-gradient-h);
  box-shadow: 0 0 20px rgba(18,82,180,0.5);
}

.stat-number {
  font-size: 2.8rem;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(18,82,180,0.3));
}

.stat-item {
  padding: 16px 24px;
  position: relative;
  transition: transform 0.3s ease;
}
.stat-item:hover { transform: translateY(-4px); }
.stat-label { color: rgba(255,255,255,0.55); font-size: 0.78rem; letter-spacing: 0.1em; }

/* ── P6. Premium Service Cards — 3D & Depth ──────────────────── */
.services-grid { gap: 28px; }

.service-card {
  border: 1px solid var(--su-gray-100);
  background: var(--su-white);
  box-shadow: var(--shadow-3d-sm);
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Gradient border on hover via pseudo-element */
.service-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-md) + 1px);
  background: var(--su-gradient);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card:hover::after { opacity: 1; }

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-3d-lg), var(--shadow-glow-blue);
  transform: translateY(-8px) translateZ(0);
}

/* Service icon upgrades */
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(18,82,180,0.12), rgba(22,143,160,0.08));
  border: 1px solid rgba(18,82,180,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 2px 8px rgba(18,82,180,0.08);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .service-icon {
  background: var(--su-gradient);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(18,82,180,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: scale(1.1) rotate(-3deg);
}

/* Service card number */
.service-card-num {
  font-size: 3.5rem;
  color: rgba(18,82,180,0.04);
  transition: color 0.35s ease;
}
.service-card:hover .service-card-num { color: rgba(18,82,180,0.07); }

/* ── P7. Premium About Section ────────────────────────────────── */
.about-img-main {
  box-shadow: var(--shadow-3d-lg);
}
.about-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    transparent 60%,
    rgba(18,82,180,0.15) 100%
  );
  pointer-events: none;
}

.about-badge {
  box-shadow: var(--shadow-3d-lg), var(--shadow-glow-blue);
}

.about-img-accent {
  box-shadow: var(--shadow-3d-md);
  border-width: 3px;
}

/* ── P8. Why Section — Premium ────────────────────────────────── */
.why-grid {
  position: relative;
}

.why-img-main {
  box-shadow: var(--shadow-3d-lg);
}
.why-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(6,15,30,0.4) 100%);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.why-float-card {
  box-shadow: var(--shadow-3d-lg), var(--shadow-glow-blue);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
}

.why-float-icon {
  box-shadow: 0 6px 20px rgba(18,82,180,0.35);
}

/* ── P9. Premium Portfolio Grid ───────────────────────────────── */
.portfolio-item {
  box-shadow: var(--shadow-3d-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.portfolio-item:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow: var(--shadow-3d-lg);
}

/* ── P10. Premium Property Cards ──────────────────────────────── */
.property-card {
  box-shadow: var(--shadow-3d-sm);
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.property-card:hover {
  box-shadow: var(--shadow-3d-lg), var(--shadow-glow-blue);
  transform: translateY(-7px) translateZ(0);
  border-color: transparent;
}

/* Status badge glow */
.property-badge {
  box-shadow: 0 2px 12px rgba(18,82,180,0.3);
}
.property-badge.for-sale {
  background: linear-gradient(135deg, #44B23A, #339929);
  box-shadow: 0 2px 12px rgba(68,178,58,0.35);
}

/* ── P11. Premium Blog Cards ──────────────────────────────────── */
.blog-card {
  box-shadow: var(--shadow-3d-sm);
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.blog-card:hover {
  box-shadow: var(--shadow-3d-lg), 0 0 40px rgba(18,82,180,0.08);
  transform: translateY(-7px) translateZ(0);
  border-color: transparent;
}

.blog-cat-tag {
  box-shadow: 0 2px 12px rgba(18,82,180,0.25);
  letter-spacing: 0.12em;
}

/* ── P12. Premium Project Cards ───────────────────────────────── */
.project-card {
  box-shadow: var(--shadow-3d-sm);
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.project-card:hover {
  box-shadow: var(--shadow-3d-lg), 0 0 40px rgba(18,82,180,0.08);
  transform: translateY(-7px) translateZ(0);
  border-color: transparent;
}

/* ── P13. Premium CTA Banner ──────────────────────────────────── */
.cta-banner {
  overflow: hidden;
}
.cta-banner-bg {
  opacity: 0.2;
  transform: scale(1.08);
}
.cta-overlay {
  background: linear-gradient(
    135deg,
    rgba(10, 20, 50, 0.88) 0%,
    rgba(18, 82, 180, 0.65) 50%,
    rgba(22, 143, 160, 0.55) 100%
  );
}

/* CTA content gloss line */
.cta-content {
  position: relative;
}
.cta-content::before {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--su-gradient-h);
  border-radius: 2px;
  margin: 0 auto 24px;
  box-shadow: 0 0 20px rgba(18,82,180,0.6);
}

.cta-content h2 {
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  letter-spacing: -0.01em;
}

/* ── P14. Premium Page Banner (inner pages) ───────────────────── */
.page-banner {
  padding: 160px 0 80px;
  background: var(--bg-mesh-dark);
  min-height: 320px;
  display: flex;
  align-items: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,82,180,0.15) 0%, rgba(22,143,160,0.08) 60%, transparent 100%);
  pointer-events: none;
}

.page-banner-bg {
  opacity: 0.10;
  transform: scale(1.05);
}

/* (removed) decorative accent line above banner content — user disliked it */
.page-banner-content::before { content: none; display: none; }

.page-banner h1 {
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
}

/* ── P15. Premium Section Backgrounds ────────────────────────── */
/* Alternating section with mesh gradient */
.bg-su-light {
  background: var(--bg-mesh-light);
}

/* Dark sections with depth */
.bg-su-dark, .bg-su-darkest {
  background: var(--bg-mesh-dark);
}

/* ── P16. Premium Buttons ─────────────────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

/* Shimmer effect on all primary buttons */
.btn-primary::after,
.btn-gradient::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-primary:hover::after,
.btn-gradient:hover::after {
  left: 140%;
}

.btn-primary {
  box-shadow: 0 4px 16px rgba(18,82,180,0.25);
}
.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(18,82,180,0.40);
  transform: translateY(-3px);
}

.btn-gradient {
  background: linear-gradient(135deg, #1252B4 0%, #168FA0 55%, #44B23A 100%);
  box-shadow: 0 4px 20px rgba(18,82,180,0.3);
}
.btn-gradient:hover {
  box-shadow: 0 10px 32px rgba(18,82,180,0.45);
  transform: translateY(-3px);
}

.btn-outline-primary:hover {
  box-shadow: 0 6px 20px rgba(18,82,180,0.22);
  transform: translateY(-3px);
}

.btn-xl {
  padding: 18px 52px;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

/* Press effect on click */
.btn:active { transform: translateY(0) scale(0.98); }

/* ── P17. Premium Section Labels ──────────────────────────────── */
.section-label {
  background: linear-gradient(90deg, var(--su-blue), var(--su-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
}
.section-label::before {
  width: 22px; height: 2px;
  background: var(--su-gradient-h);
  box-shadow: 0 0 8px rgba(18,82,180,0.5);
}

.section-label.light {
  background: none;
  -webkit-text-fill-color: var(--su-gold);
  color: var(--su-gold);
}
.section-label.light::before {
  background: var(--su-gold);
  box-shadow: 0 0 8px rgba(201,169,110,0.5);
}

/* ── P18. Premium Section Titles ──────────────────────────────── */
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  letter-spacing: -0.015em;
}

/* Animated underline on section titles */
.section-header .section-title {
  display: block;
  position: relative;
}
.section-header .section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  width: 48px; height: 3px;
  background: var(--su-gradient-h);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(18,82,180,0.4);
}
.section-header.text-center .section-title::after {
  left: 50%; transform: translateX(-50%);
}

/* ── P19. Premium Footer ──────────────────────────────────────── */
.su-footer {
  background: var(--su-dark);
  position: relative;
  overflow: hidden;
}

/* Footer ambient glow — via background-image to avoid z-index stacking issues */
.su-footer {
  background-image: radial-gradient(ellipse at 50% 100%, rgba(18,82,180,0.10) 0%, transparent 60%);
  background-color: var(--su-dark);
}

.su-footer::before {
  height: 2px;
  background: var(--su-gradient-h);
  box-shadow: 0 0 20px rgba(18,82,180,0.4);
}

.footer-links a::before { content: none; } /* Remove dash prefix */
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links a::before {
  content: '';
  width: 0; height: 2px;
  background: var(--su-teal);
  border-radius: 1px;
  transition: width 0.25s ease;
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--su-white); padding-left: 6px; }
.footer-links a:hover::before { width: 12px; }

.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(18,82,180,0.35);
}

/* ── P20. Premium Value Cards ─────────────────────────────────── */
.value-card {
  box-shadow: var(--shadow-3d-sm);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.value-card:hover {
  box-shadow: var(--shadow-3d-lg), var(--shadow-glow-blue);
  transform: translateY(-8px) translateZ(0);
}

/* ── P21. Premium Scope & Benefit Cards ───────────────────────── */
.scope-card {
  box-shadow: var(--shadow-3d-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.scope-card:hover {
  box-shadow: var(--shadow-3d-md), var(--shadow-glow-blue);
  transform: translateY(-6px);
}

.benefit-card {
  box-shadow: var(--shadow-3d-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.benefit-card:hover {
  box-shadow: var(--shadow-3d-lg), var(--shadow-glow-blue);
  transform: translateY(-8px);
}

/* ── P22. Premium Filter Buttons ──────────────────────────────── */
.filter-btn {
  border-radius: 100px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 1px 4px rgba(6,15,30,0.06);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--su-gradient);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(18,82,180,0.3);
  transform: translateY(-2px);
}

.filter-bar {
  background: linear-gradient(135deg, var(--su-off-white), #edf0f5);
  border: 1px solid var(--su-gray-200);
  box-shadow: var(--shadow-3d-sm);
}

/* ── P23. Glass Morphism Cards (overlapping images) ───────────── */
.service-feature-tag,
.hero-eyebrow {
  background: rgba(6, 15, 30, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ── P24. Premium Process Steps ───────────────────────────────── */
.process-step-num {
  box-shadow: 0 8px 24px rgba(18,82,180,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover .process-step-num {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 14px 36px rgba(18,82,180,0.55), inset 0 1px 0 rgba(255,255,255,0.2);
}

/* ── P25. Premium Timeline ────────────────────────────────────── */
.timeline::before {
  box-shadow: 0 0 16px rgba(18,82,180,0.2);
}
.timeline-dot {
  box-shadow: 0 0 0 3px var(--su-blue), 0 0 16px rgba(18,82,180,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-item:hover .timeline-dot {
  transform: scale(1.2);
  box-shadow: 0 0 0 3px var(--su-teal), 0 0 24px rgba(22,143,160,0.5);
}

/* ── P26. Newsletter Section ──────────────────────────────────── */
.newsletter-strip {
  background: var(--bg-mesh-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.newsletter-strip::before {
  box-shadow: 0 0 16px rgba(18,82,180,0.4);
}

.newsletter-strip h3 {
  color: var(--su-white);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

.newsletter-form-row .btn-gradient {
  box-shadow: var(--shadow-glow-blue);
}

/* ── P27. Premium Form Inputs ─────────────────────────────────── */
.su-input,
.su-select,
.su-textarea {
  border-radius: var(--radius-sm);
  border-color: var(--su-gray-200);
  box-shadow: inset 0 1px 3px rgba(6,15,30,0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.su-input:focus,
.su-select:focus,
.su-textarea:focus {
  border-color: var(--su-blue);
  box-shadow: 0 0 0 3px rgba(18,82,180,0.12), inset 0 1px 3px rgba(6,15,30,0.04);
  transform: translateY(-1px);
}

/* ── P28. WhatsApp float — premium ───────────────────────────── */
.whatsapp-float {
  box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.5);
  animation: whatsappPulse 3s ease infinite;
}
@keyframes whatsappPulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.5); }
  50%  { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-float:hover {
  animation: none;
  box-shadow: 0 12px 36px rgba(37,211,102,0.6);
}

/* ── P29. Back to Top — premium ──────────────────────────────── */
.back-to-top {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-3d-sm);
  background: var(--su-white);
}
.back-to-top:hover {
  background: var(--su-gradient);
  border-color: transparent;
  color: var(--su-white);
  box-shadow: 0 6px 24px rgba(18,82,180,0.4);
  transform: translateY(-2px);
}

/* ── P30. Premium Pagination ──────────────────────────────────── */
.page-btn {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.page-btn:hover,
.page-btn.active {
  background: var(--su-gradient);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(18,82,180,0.3);
  transform: translateY(-2px);
}

/* ── P31. Glowing Section Dividers ───────────────────────────── */
.stats-bar::before,
.su-footer::before,
.newsletter-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--su-gradient-h);
  box-shadow: 0 0 20px rgba(18,82,180,0.45);
}

/* ── P32. About & Service Badges ──────────────────────────────── */
.about-badge {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-3d-lg), var(--shadow-glow-blue);
  border: 1px solid rgba(255,255,255,0.15);
}

.service-feature-badge {
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow-3d-md), var(--shadow-glow-blue);
}

/* ── P33. Section Header Spacing ──────────────────────────────── */
.section-header { margin-bottom: 64px; }

.section-subtitle {
  font-size: 1.07rem;
  line-height: 1.75;
  color: var(--su-gray-500);
}

/* ── P34. Scroll Progress Glow (hero scroll indicator) ────────── */
.hero-scroll { gap: 10px; }
.scroll-mouse {
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 0 16px rgba(255,255,255,0.1);
}

/* ── P35. Responsive premium adjustments ──────────────────────── */
@media (max-width: 991px) {
  .page-banner { padding: 140px 0 64px; min-height: 280px; }
}

@media (max-width: 767px) {
  .page-banner { padding: 120px 0 56px; min-height: 240px; }
  .service-card:hover,
  .property-card:hover,
  .blog-card:hover,
  .project-card:hover { transform: translateY(-4px); }
  .cta-content::before { width: 48px; margin-bottom: 16px; }
}

/* ── P36. Hover lift utility ──────────────────────────────────── */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3d-lg);
}

/* ── P37. Animated gradient backgrounds for stat numbers ──────── */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.stat-number {
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

/* ── P38. Related service card on service detail page ─────────── */
.related-service-card {
  box-shadow: var(--shadow-3d-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.related-service-card:hover {
  box-shadow: var(--shadow-3d-lg), var(--shadow-glow-blue);
  transform: translateY(-7px);
}

/* ── P39. Contact page sidebar card ───────────────────────────── */
/* The contact sidebar uses inline styles — enhance with class upgrade */
.footer-contact-item {
  transition: all 0.25s ease;
}
.footer-contact-item:hover {
  transform: translateX(4px);
}

/* ── P40. Loading skeleton shimmer (placeholder images) ───────── */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.img-slot:empty,
.project-img:not(:has(img[src])),
.blog-img:not(:has(img[src])),
.property-img:not(:has(img[src])) {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite;
}

/* ════════════════════════════════════════════════════════════════
   HERO SLIDER — P41
   ════════════════════════════════════════════════════════════════ */

/* Slider container sits behind all overlaid elements */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Each slide fills the full hero area — CSS controls visibility,
   GSAP only animates CONTENT inside the active slide */
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Content elements: CSS sets initial hidden+offset state.
   GSAP reads opacity:0 / translateY(32px) as FROM state and animates TO visible. */
.hero-slide-content .hero-eyebrow,
.hero-slide-content .hero-title,
.hero-slide-content .hero-subtitle,
.hero-slide-content .hero-ctas {
  opacity: 0;
  transform: translateY(32px);
  will-change: opacity, transform;
}

/* Slide background image */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Per-slide parallax zoom on active slide */
.hero-slide.active .hero-slide-bg {
  animation: heroZoom 14s ease-out forwards;
}

/* Slide overlay */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 10, 22, 0.90) 0%,
    rgba(8, 18, 36, 0.76) 50%,
    rgba(12, 25, 52, 0.62) 100%
  );
}

/* Slide content wrapper (replaces .hero-content inside slider) */
.hero-slide-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 60px;
  max-width: 760px;
}

/* Shimmer accent line behind slide text */
.hero-slide-content::before {
  content: '';
  position: absolute;
  top: 50%; left: -20%;
  width: 55%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18,82,180,0.45), rgba(22,143,160,0.25), transparent);
  transform: translateY(-80px);
  pointer-events: none;
}

/* Shared trust stats bar — outside the slider, above the nav */
.hero-trust-wrap {
  position: absolute;
  bottom: 96px;
  left: 0; right: 0;
  z-index: 5;
}

/* ── Slider Navigation ──────────────────────────────────────── */
.hero-nav {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-prev,
.hero-next {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.82);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(18,82,180,0.35);
  border-color: rgba(18,82,180,0.7);
  color: #fff;
  transform: scale(1.1);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.hero-dot.active {
  width: 26px;
  border-radius: 3.5px;
  background: var(--su-blue);
  box-shadow: 0 0 10px rgba(18,82,180,0.55);
}

/* ── Hero scroll indicator — repositioned for slider ───────── */
.hero-scroll {
  bottom: 40px;
  right: 48px;
  left: auto;
  transform: none;
}

/* ════════════════════════════════════════════════════════════════
   DARK SECTION CONTRAST — P42
   Ensure text stays readable on bg-su-dark / bg-su-darkest
   ════════════════════════════════════════════════════════════════ */

/* Timeline items on dark backgrounds */
.bg-su-dark .timeline-year,
.bg-su-darkest .timeline-year {
  color: var(--su-teal);
  text-shadow: 0 0 12px rgba(22,143,160,0.3);
}

.bg-su-dark .timeline-item h4,
.bg-su-darkest .timeline-item h4 {
  color: #ffffff;
}

.bg-su-dark .timeline-item p,
.bg-su-darkest .timeline-item p {
  color: rgba(255,255,255,0.72);
}

/* Section headers on dark sections */
.bg-su-dark .section-title,
.bg-su-darkest .section-title {
  color: #ffffff;
}

.bg-su-dark .section-subtitle,
.bg-su-darkest .section-subtitle {
  color: rgba(255,255,255,0.68);
}

.bg-su-dark .section-label,
.bg-su-darkest .section-label {
  color: var(--su-teal);
}

/* Body text on dark sections */
.bg-su-dark p:not(.section-subtitle):not(.timeline-item p),
.bg-su-darkest p:not(.section-subtitle):not(.timeline-item p) {
  color: rgba(255,255,255,0.68);
}

/* ════════════════════════════════════════════════════════════════
   HEADING HIERARCHY — P43
   ════════════════════════════════════════════════════════════════ */

h1.section-title, h1.page-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
}

h2.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

h3.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

/* Section label — more presence */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Remove the decorative dash before section-label that can appear as a hyphen */
.section-label::before { content: none; }

/* Heading in page banner — always white */
.page-banner .page-banner-title {
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-banner .page-banner-subtitle {
  color: rgba(255,255,255,0.8);
}

/* ════════════════════════════════════════════════════════════════
   HOVER STATES — P44
   ════════════════════════════════════════════════════════════════ */

/* Nav links — active underline scale-in */
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--su-gradient-h);
  border-radius: 1px;
  transition: left 0.3s ease, right 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  left: 0; right: 0;
}

/* Service cards — stronger lift + gradient border reveal */
.service-card {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}
.service-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-3d-lg), 0 0 0 1.5px rgba(18,82,180,0.2);
}

/* Portfolio items — image zoom + overlay reveal */
.portfolio-item img {
  transition: transform 0.55s ease;
}
.portfolio-item:hover img {
  transform: scale(1.06);
}

/* Blog cards — subtle lift + image zoom */
.blog-card img,
.blog-img img {
  transition: transform 0.5s ease;
}
.blog-card:hover img,
.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

/* Property cards */
.property-card img,
.property-img img {
  transition: transform 0.5s ease;
}
.property-card:hover img,
.property-card:hover .property-img img {
  transform: scale(1.05);
}

/* Footer links — color slide */
.footer-links a:hover {
  color: var(--su-teal);
  padding-left: 6px;
}

/* Social buttons — glow ring on hover */
.social-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.social-btn:hover {
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 8px 24px rgba(18,82,180,0.4);
}

/* ════════════════════════════════════════════════════════════════
   NAVBAR / HEADER — P45
   ════════════════════════════════════════════════════════════════ */

/* Unscrolled state — slightly more refined transparent bar */
.su-navbar:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(4,10,22,0.72) 0%, transparent 100%);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom-color: transparent;
}

.su-navbar:not(.scrolled) .nav-link {
  color: rgba(255,255,255,0.88);
}

/* Scrolled state — deep glass */
.su-navbar.scrolled {
  background: rgba(6,15,30,0.97);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 4px 32px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.06);
}

/* Logo text in unscrolled state */
.su-navbar:not(.scrolled) .navbar-brand .brand-name {
  color: #ffffff;
}
.su-navbar:not(.scrolled) .navbar-brand .brand-tagline {
  color: rgba(255,255,255,0.6);
}

/* Active page link highlight */
.nav-link.active {
  color: #ffffff;
  font-weight: 600;
}

/* Nav CTA button in header */
#nav-cta .btn {
  font-size: 0.82rem;
  padding: 8px 18px;
}

/* ── Responsive: mobile hero content spacing ─────────────────── */
@media (max-width: 767px) {
  .hero-slide-content {
    padding-top: 120px;
    padding-bottom: 40px;
  }
  .hero-trust-wrap { display: none; }
  .hero-scroll { display: none; }
  .hero-dot.active { width: 18px; }
}

@media (max-width: 575px) {
  .hero-nav { gap: 10px; }
  .hero-prev, .hero-next { width: 34px; height: 34px; }
}

/* ════════════════════════════════════════════════════════════════
   STATS BAR HERO OVERLAP — P46
   The stats bar floats over the bottom of the hero image,
   creating a layered depth effect.
   ════════════════════════════════════════════════════════════════ */

.su-hero {
  padding-bottom: 80px; /* room for nav + stat bar overlap zone */
}

.stats-bar {
  margin-top: -88px;     /* pull up over the hero image */
  position: relative;
  z-index: 20;           /* sits above the hero */
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.35);
}

@media (max-width: 767px) {
  .stats-bar {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .su-hero { padding-bottom: 60px; }
}

/* ════════════════════════════════════════════════════════════════
   EDITORIAL HERO + LIGHTER THEME + SERVICE CARD HOVER FIX — P47
   ════════════════════════════════════════════════════════════════ */

/* ── Stats bar: white, clean ──────────────────────────────────── */
.stats-bar {
  background: #ffffff !important;
  margin-top: 0 !important;
  border-radius: 0 !important;
  box-shadow: 0 4px 32px rgba(18,82,180,0.07), inset 0 1px 0 rgba(18,82,180,0.05) !important;
  border-top: 1px solid var(--su-gray-100);
}

.stats-bar .stat-number {
  color: var(--su-dark) !important;
  background: linear-gradient(135deg, var(--su-blue), var(--su-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-bar .stat-label {
  color: var(--su-gray-600) !important;
}

.stats-bar .stat-icon {
  color: var(--su-blue) !important;
}

.stats-bar .stat-divider {
  background: var(--su-gray-200) !important;
}

/* ── Service card hover — completely rewritten (P47 fix) ────── */
.service-card {
  overflow: visible !important;
  transform-style: flat !important;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.32s ease,
              background 0.32s ease,
              border-color 0.32s ease !important;
}

/* Kill the old broken ::after gradient border */
.service-card::after {
  display: none !important;
}

/* Hover: card flips dark, text turns white */
.service-card:hover {
  background: linear-gradient(135deg, #0a1628 0%, #0d2040 100%) !important;
  border-color: transparent !important;
  box-shadow: 0 20px 60px rgba(18,82,180,0.28), 0 8px 24px rgba(0,0,0,0.18) !important;
  transform: translateY(-10px) !important;
}

.service-card:hover .service-title { color: #ffffff !important; }
.service-card:hover .service-desc  { color: rgba(255,255,255,0.72) !important; }
.service-card:hover .service-link  { color: var(--su-teal) !important; }

.service-card:hover .service-icon {
  background: rgba(255,255,255,0.1) !important;
  color: var(--su-teal) !important;
  transform: scale(1.12) rotate(-4deg) !important;
  box-shadow: 0 0 20px rgba(22,143,160,0.35) !important;
}

.service-card:hover::before {
  transform: scaleX(1) !important;
  background: linear-gradient(90deg, var(--su-teal), var(--su-blue)) !important;
}

/* ── Immersive Hero Responsive Breakpoints ───────────────────── */
@media (max-width: 991px) {
  .su-hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 120px;
  }
  .hero-inner {
    padding: 60px 24px 0;
  }
  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .su-hero {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 14px;
    margin-bottom: 20px;
  }
  .hero-content .hero-title {
    font-size: 2.2rem !important;
    margin-bottom: 16px;
  }
  .hero-content .hero-subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 28px;
  }
  .hero-trust {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
    padding-top: 24px;
  }
  .trust-divider {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════════
   BRAND FACELIFT — P48
   True brand colors · Better typography · Lighter theme
   ════════════════════════════════════════════════════════════════ */

/* ── 1. True brand color palette override ─────────────────────── */
:root {
  --su-blue:        #1252B4;
  --su-blue-dark:   #0D3F8F;
  --su-blue-light:  #3B72D9;
  --su-teal:        #168FA0;
  --su-green:       #44B23A;
  --su-green-dark:  #339A2C;

  --su-gradient:    linear-gradient(135deg, #1252B4 0%, #168FA0 55%, #44B23A 100%);
  --su-gradient-h:  linear-gradient(90deg,  #1252B4 0%, #168FA0 50%, #44B23A 100%);
  --su-gradient-subtle: linear-gradient(135deg,
    rgba(18,82,180,0.06) 0%,
    rgba(22,143,160,0.04) 60%,
    rgba(68,178,58,0.03) 100%);

  /* Lighter page background */
  --su-off-white: #F7F9FF;
  --su-gray-100:  #EEF2FA;
  --su-gray-200:  #DDE4F0;

  /* Font variables */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── 2. Body & base typography refresh ────────────────────────── */
body {
  font-family: var(--font-body);
  color: #1e2a3a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: -0.008em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.18;
  color: #0c1a2e;
  letter-spacing: -0.02em;
}

p {
  color: #3d4f66;
  line-height: 1.78;
}

/* ── 3. Section labels — more vibrant ─────────────────────────── */
.section-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--su-blue) !important;
  padding-left: 30px;
}

.section-label::before {
  width: 18px;
  height: 2.5px;
  background: var(--su-gradient-h);
  border-radius: 2px;
}

.section-label.light { color: var(--su-teal) !important; }

/* ── 4. Section titles — stronger ────────────────────────────── */
.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: #0c1a2e;
}

.section-title .accent,
.section-title span.accent {
  background: var(--su-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #5a6e88;
  line-height: 1.72;
}

.section-body {
  font-size: 1rem;
  color: #4a5e77;
  line-height: 1.8;
}

/* ── 5. Hero — fix old style bleed onto new hero ──────────────── */

/* Old base `.hero-content` sets padding-top: 140px — kill it */
.hero-inner .hero-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  max-width: none !important;
}

/* Old `.hero-badge` was dark glass for dark hero — override for new light hero */
.hero-inner .hero-badge {
  background: rgba(18,82,180,0.08) !important;
  border: 1px solid rgba(18,82,180,0.18) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: var(--su-blue) !important;
  box-shadow: none !important;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.hero-inner .hero-eyebrow-dot {
  background: var(--su-teal);
}

/* ── 6. bg-su-light — warm very light brand tint ─────────────── */
.bg-su-light {
  background: linear-gradient(160deg, #f4f7ff 0%, #f0f8f6 100%) !important;
}

/* ── 7. "Why Silver Union" dark section — brand gradient not black */
.bg-su-dark,
.bg-su-darkest {
  background: linear-gradient(
    150deg,
    #0b2051 0%,
    #0e3070 30%,
    #0c5878 70%,
    #0d4060 100%
  ) !important;
}

/* Ensure bg-mesh-dark also uses new look */
:root {
  --bg-mesh-dark:
    linear-gradient(150deg, #0b2051 0%, #0e3070 30%, #0c5878 70%, #0d4060 100%);
  --bg-mesh-light:
    linear-gradient(160deg, #f4f7ff 0%, #f0f8f6 100%);
}

/* ── 8. Buttons refresh — more vibrant ────────────────────────── */
.btn-gradient {
  background: var(--su-gradient) !important;
  background-size: 200% 200% !important;
  border: none;
  color: #ffffff !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 24px rgba(18,82,180,0.30) !important;
  transition: box-shadow 0.3s ease, transform 0.2s ease, background-position 0.5s ease !important;
}

.btn-gradient:hover {
  box-shadow: 0 10px 36px rgba(18,82,180,0.42) !important;
  transform: translateY(-2px) !important;
  background-position: right center !important;
}

.btn-primary {
  background: var(--su-blue) !important;
  border-color: var(--su-blue) !important;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(18,82,180,0.25) !important;
}

.btn-primary:hover {
  background: var(--su-blue-dark) !important;
  border-color: var(--su-blue-dark) !important;
  box-shadow: 0 8px 28px rgba(18,82,180,0.38) !important;
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--su-blue) !important;
  border-color: var(--su-blue) !important;
  font-weight: 700;
}

.btn-outline-primary:hover {
  background: var(--su-blue) !important;
  color: #ffffff !important;
}

/* ── 9. Stats bar — crisp white with gradient numbers ─────────── */
.stats-bar {
  background: #ffffff !important;
  border-top: 1px solid var(--su-gray-200);
  box-shadow: 0 8px 40px rgba(18,82,180,0.08) !important;
}

.stat-number {
  background: var(--su-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  font-family: var(--font-heading);
}

.stat-label {
  color: #5a6e88 !important;
  font-size: 0.82rem;
  font-weight: 600;
}

.stat-icon { color: var(--su-blue) !important; }

/* ── 10. Service cards — clean white with vivid hover ────────── */
.service-card {
  background: #ffffff;
  border: 1px solid #e4eaf5;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(18,82,180,0.06) !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.service-card-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--su-blue);
  opacity: 0.5;
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(18,82,180,0.07);
  color: var(--su-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0c1a2e;
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.88rem;
  color: #5a6e88;
  line-height: 1.7;
}

.service-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--su-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

/* ── 11. About values — vibrant icons ─────────────────────────── */
.about-value-icon {
  background: linear-gradient(135deg, var(--su-blue), var(--su-teal)) !important;
  color: #ffffff !important;
}

/* ── 12. Why-feature check icons — brand teal ─────────────────── */
.why-check {
  background: rgba(22,143,160,0.15) !important;
  color: var(--su-teal) !important;
  border: 1.5px solid rgba(22,143,160,0.3) !important;
}

.why-feature-text { color: rgba(255,255,255,0.88); }

/* ── 13. Section dividers — subtle brand gradient ─────────────── */
.section-header {
  margin-bottom: 56px;
}

/* ── 14. Navbar brand refresh ─────────────────────────────────── */
.navbar-brand .brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Scrolled navbar stays clean */
.su-navbar.scrolled {
  background: rgba(255,255,255,0.97) !important;
  border-bottom: 1px solid var(--su-gray-200) !important;
}

.su-navbar.scrolled .nav-link {
  color: #1e2a3a !important;
  font-weight: 600;
}

.su-navbar.scrolled .navbar-brand .brand-name {
  color: var(--su-blue) !important;
}

.su-navbar.scrolled .navbar-brand .brand-tagline {
  color: var(--su-gray-500) !important;
}

/* ── 15. Portfolio overlay — brand gradient ────────────────────── */
.portfolio-overlay {
  background: linear-gradient(180deg, transparent 30%, rgba(18,82,180,0.88) 100%) !important;
}

/* ── 16. Filter buttons — brand colored active state ─────────── */
.filter-btn.active {
  background: var(--su-blue) !important;
  border-color: var(--su-blue) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(18,82,180,0.3) !important;
}

/* ── 17. CTA banner section — ensure brand gradient ──────────── */
.cta-banner {
  background: var(--su-gradient) !important;
}

/* ── 18. Footer — slightly lighter dark ───────────────────────── */
footer, .su-footer {
  background: #0c1a2e !important;
}

/* ── 19. Hero content spacing fix for new layout ─────────────── */
.hero-content .hero-title {
  font-family: var(--font-heading);
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
}

.hero-content .hero-subtitle {
  font-size: 1.05rem;
  color: #4a5e77;
}

/* ════════════════════════════════════════════════════════════════
   SKILL-DRIVEN FACELIFT — P49
   Style: Swiss Modernism 2.0 (corporate, WCAG AAA, single accent)
   Type:  "Corporate Trust" — Lexend headings + Source Sans 3 body
   Source: ui-ux-pro-max skill (styles.csv, typography.csv, colors.csv)
   ════════════════════════════════════════════════════════════════ */

/* ── 1. New typography system ─────────────────────────────────── */
:root {
  --font-heading: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif:   'Lexend', sans-serif;   /* legacy var fallback */
  --font-sans:    'Source Sans 3', sans-serif; /* legacy var fallback */

  /* Swiss spacing scale (8px base unit) */
  --space-unit: 8px;

  /* Disciplined neutral ramp for AAA contrast on light bg */
  --ink-900: #0c1a2e;  /* headings */
  --ink-700: #2a3a4f;  /* strong body */
  --ink-600: #45566e;  /* body */
  --ink-500: #5f6f86;  /* muted */
  --paper:   #ffffff;
  --paper-2: #f6f8fd;  /* alt section */
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink-700);
  letter-spacing: 0;     /* Source Sans 3 needs no negative tracking */
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink-900);
  letter-spacing: -0.018em;  /* Lexend is balanced; gentle tightening only */
}

/* Rebalance heading weights — Lexend reads heavy above 800 */
.hero-content .hero-title {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: -0.022em !important;
  line-height: 1.1 !important;
}
.hero-content .hero-title-accent { font-weight: 800; }

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-title,
.about-value-title,
.property-title,
.trust-number,
.stat-number,
.hero-counter-current,
.hero-award-text strong {
  font-family: var(--font-heading) !important;
}

/* Body copy uses Source Sans 3 */
p, .section-body, .section-subtitle, .service-desc,
.hero-content .hero-subtitle, .why-feature-text, .trust-label {
  font-family: var(--font-body);
}

/* ── 2. Swiss Modernism: single dominant accent, calmer secondaries */
/* Blue leads. Teal/green become sparing accents, not co-equal noise. */

/* Hero accent: blue-forward, teal only as a tail */
.hero-content .hero-title-accent {
  background: linear-gradient(120deg, var(--su-blue) 0%, var(--su-blue) 55%, var(--su-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section labels: solid blue, no rainbow */
.section-label { color: var(--su-blue) !important; }
.section-label::before { background: var(--su-blue) !important; }

/* Stat numbers: solid blue (Swiss = single accent), not tri-gradient */
.stats-bar .stat-number,
.stat-number {
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  color: var(--su-blue) !important;
}

/* ── 3. Generous whitespace (Swiss hallmark) ──────────────────── */
:root { --section-py: 112px; }
.section-py  { padding-top: 112px; padding-bottom: 112px; }
.section-header { margin-bottom: 64px; }

/* ── 4. Cleaner cards — flatter, sharper, high-contrast ───────── */
.service-card {
  border: 1px solid #e6ecf6;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(12,26,46,0.04) !important;
}
.service-card:hover {
  /* keep the dark flip but tune to brand navy + blue ring */
  box-shadow: 0 18px 50px rgba(18,82,180,0.22), 0 6px 18px rgba(12,26,46,0.14) !important;
}
.service-icon {
  border-radius: 12px;
  background: rgba(18,82,180,0.08);
  color: var(--su-blue);
}

/* ── 5. Interaction states (skill UX guidelines) ──────────────── */
/* Every clickable gets a pointer + smooth hover (150–300ms) */
a, button, .btn, .service-card, .filter-btn,
.hero-dot, .hero-prev, .hero-next, .portfolio-item {
  cursor: pointer;
}
a, .btn { transition: color .2s ease, background-color .2s ease, box-shadow .25s ease, transform .2s ease; }

/* Active nav state — color + underline (skill: Navigation/Active State) */
.nav-link { position: relative; }
.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--su-blue);
  border-radius: 2px;
}
.su-navbar:not(.scrolled) .nav-link.active::after,
.su-navbar:not(.scrolled) .nav-link:hover::after { background: #fff; }

/* Visible keyboard focus (accessibility checklist) */
a:focus-visible, button:focus-visible, .btn:focus-visible,
.hero-dot:focus-visible, .filter-btn:focus-visible {
  outline: 2px solid var(--su-blue);
  outline-offset: 3px;
}

/* ── 6. Buttons: solid, confident, single accent ──────────────── */
.btn-xl { padding: 15px 30px; font-size: 0.98rem; border-radius: 12px; }
.btn-gradient {
  /* Swiss: prefer solid brand blue over multi-stop gradient noise */
  background: var(--su-blue) !important;
  box-shadow: 0 6px 20px rgba(18,82,180,0.28) !important;
}
.btn-gradient:hover {
  background: var(--su-blue-dark) !important;
  box-shadow: 0 10px 30px rgba(18,82,180,0.40) !important;
}

/* ── 7. Lighter, airier section backgrounds ───────────────────── */
.bg-su-light { background: var(--paper-2) !important; }

/* Soften the dark "Why" section one more notch toward brand navy-teal */
.bg-su-dark, .bg-su-darkest {
  background: linear-gradient(150deg, #0c2552 0%, #103a78 45%, #0e6076 100%) !important;
}

/* ── 8. Respect reduced motion (checklist) ────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   EDITORIAL HERO LAYOUT — P50  (the missing layout block)
   Markup: .su-hero > .hero-inner > .hero-content + .hero-visual
   Overrides all older full-width hero rules (this block wins by order).
   ════════════════════════════════════════════════════════════════ */

.su-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f7f9ff !important;
  padding: 0 !important;       /* kill old padding-bottom:80px overlap */
}

/* Soft decorative brand blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-blob-1 {
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(18,82,180,0.10) 0%, transparent 70%);
  top: -220px; left: -200px;
}
.hero-blob-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(22,143,160,0.10) 0%, transparent 70%);
  bottom: -160px; left: 28%;
}
.hero-blob-3 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(68,178,58,0.07) 0%, transparent 70%);
  top: 8%; right: 6%;
}

/* Inner flex row — overrides base single-column .hero-inner */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex !important;
  align-items: center;
  gap: 56px;
  width: 100%;
  max-width: 1280px !important;
  margin: 0 auto;
  padding: 124px 56px 72px !important;
}

/* LEFT column */
.hero-content {
  flex: 1 1 0;
  min-width: 0;
  max-width: none !important;
  padding: 0 !important;
}

.hero-content .hero-title {
  font-size: clamp(2.3rem, 3.8vw, 3.6rem);
  line-height: 1.1;
  color: var(--ink-900);
  margin-bottom: 20px;
  max-width: 600px;
}

.hero-content .hero-title-accent {
  background: linear-gradient(120deg, var(--su-blue) 0%, var(--su-blue) 55%, var(--su-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .hero-subtitle {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-600);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-content .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

/* Slider nav — inline under CTAs, dark-on-light */
.hero-content .hero-nav {
  position: static;
  transform: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-content .hero-prev,
.hero-content .hero-next {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--su-gray-200);
  background: #fff;
  color: var(--ink-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  box-shadow: 0 2px 10px rgba(12,26,46,0.06);
  transition: background .25s, border-color .25s, color .25s, transform .2s;
}
.hero-content .hero-prev:hover,
.hero-content .hero-next:hover {
  background: var(--su-blue); border-color: var(--su-blue);
  color: #fff; transform: scale(1.08);
}
.hero-content .hero-dots { display: flex; align-items: center; gap: 6px; }
.hero-content .hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  border: none; padding: 0; background: var(--su-gray-300);
  transition: all .35s cubic-bezier(0.34,1.56,0.64,1);
}
.hero-content .hero-dot.active {
  width: 26px; border-radius: 4px;
  background: var(--su-blue);
  box-shadow: 0 0 8px rgba(18,82,180,0.45);
}

/* RIGHT column — floating image card */
.hero-visual {
  width: 42%;
  flex: 0 0 42%;
  position: relative;
}

.hero-award {
  position: absolute;
  top: 28px; left: -32px;
  z-index: 10;
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1px solid var(--su-gray-100);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 10px 36px rgba(18,82,180,0.14);
}
.hero-award-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--su-blue), var(--su-teal));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; flex-shrink: 0;
}
.hero-award-text { display: flex; flex-direction: column; gap: 1px; }
.hero-award-text strong { font-size: 0.9rem; font-weight: 700; color: var(--ink-900); line-height: 1; }
.hero-award-text span { font-size: 0.72rem; color: var(--ink-500); }

.hero-img-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 40px 90px rgba(18,82,180,0.18),
    0 12px 36px rgba(12,26,46,0.10),
    0 0 0 1px rgba(18,82,180,0.06);
  z-index: 1;
}

/* Slides inside the card (override base absolute hero-slide) */
.hero-img-card .hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-img-card .hero-slide {
  position: absolute; inset: 0;
  display: block;
  opacity: 0; visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
.hero-img-card .hero-slide.active { opacity: 1; visibility: visible; }
.hero-img-card .hero-slide-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-img-card .hero-slide.active .hero-slide-bg {
  animation: heroZoom 14s ease-out forwards;
}

/* Bottom gradient so the tag is legible */
.hero-img-card::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(4,10,24,0.62));
  pointer-events: none; z-index: 1;
}

.hero-img-tag {
  position: absolute; bottom: 22px; left: 20px; z-index: 5;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 0.80rem; font-weight: 700; color: var(--ink-900);
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.14);
}
.hero-img-tag i { color: var(--su-blue); }

.hero-counter {
  position: absolute; top: 18px; right: 20px; z-index: 5;
  display: flex; align-items: baseline;
}
.hero-counter-current {
  font-size: 1.9rem; font-weight: 800; font-family: var(--font-heading);
  color: #fff; line-height: 1; text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.hero-counter-sep { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.6); }

/* Responsive */
@media (max-width: 1199px) {
  .hero-inner { gap: 40px; padding: 116px 40px 64px !important; }
  .hero-visual { width: 44%; flex-basis: 44%; }
  .hero-award { left: -16px; }
}
@media (max-width: 991px) {
  .su-hero { min-height: auto; }
  .hero-inner {
    flex-direction: column !important;
    align-items: stretch;
    padding: 108px 28px 56px !important;
    gap: 44px;
  }
  .hero-visual { width: 100%; flex-basis: auto; max-width: 460px; margin: 0 auto; }
  .hero-content .hero-title { font-size: 2.4rem; max-width: none; }
  .hero-award { left: 0; top: -26px; }
}
@media (max-width: 575px) {
  .hero-inner { padding: 96px 20px 44px !important; gap: 34px; }
  .hero-content .hero-title { font-size: 2rem !important; }
  .hero-img-tag { font-size: 0.74rem; padding: 8px 14px; }
  .hero-counter-current { font-size: 1.5rem; }
  .hero-award { display: none; }
}

/* ── No text shadows on light hero / headings (user preference) ── */
.hero-title,
.hero-content .hero-title,
.section-title,
.hero-subtitle,
.stat-number {
  text-shadow: none !important;
}

/* ════════════════════════════════════════════════════════════════
   BRIGHT PREMIUM EDITORIAL HERO — P51  (refines/overrides P50)
   ════════════════════════════════════════════════════════════════ */

.su-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 85% 0%, #eef4ff 0%, #f7faff 45%, #ffffff 100%) !important;
  padding: 0 !important;
}

/* Ambient aurora wash (very subtle, premium) */
.hero-aurora {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 50% at 78% 18%, rgba(22,143,160,0.10), transparent 70%),
    radial-gradient(45% 55% at 92% 62%, rgba(18,82,180,0.10), transparent 70%);
}
.hero-blob-1 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(18,82,180,0.08) 0%, transparent 70%);
  top: -240px; left: -180px;
}
.hero-blob-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(68,178,58,0.06) 0%, transparent 70%);
  bottom: -160px; left: 26%;
}

/* Layout — give the editorial side more room */
.hero-inner {
  position: relative; z-index: 2;
  display: flex !important;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1300px !important;
  margin: 0 auto;
  padding: 104px 60px 64px !important;
}

.hero-content { flex: 1 1 52%; min-width: 0; }
.hero-visual  { flex: 0 0 44%; width: 44%; position: relative; }

/* ── Kicker / badge ───────────────────────────────────────────── */
.hero-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--su-blue) !important;
}
.hero-badge .hero-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--su-teal);
  box-shadow: 0 0 0 4px rgba(22,143,160,0.15);
  flex-shrink: 0;
}
.hero-kicker-line {
  width: 56px; height: 1.5px;
  background: linear-gradient(90deg, var(--su-blue), transparent);
  display: inline-block;
}

/* ── Grand headline ───────────────────────────────────────────── */
.hero-content .hero-title {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: clamp(2.4rem, 4.1vw, 3.9rem) !important;
  line-height: 1.07 !important;
  letter-spacing: -0.03em !important;
  color: var(--ink-900);
  margin-bottom: 18px;
  max-width: 14ch;
}
.hero-content .hero-title-accent {
  position: relative;
  font-weight: 800;
  background: linear-gradient(115deg, var(--su-blue) 0%, #1d72d4 45%, var(--su-teal) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-content .hero-subtitle {
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  line-height: 1.72;
  color: var(--ink-600);
  margin-bottom: 30px;
  max-width: 46ch;
}

/* ── CTAs ─────────────────────────────────────────────────────── */
.hero-content .hero-ctas {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 22px; margin-bottom: 38px;
}
.hero-content .btn-gradient {
  padding: 17px 34px !important;
  font-size: 1rem !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 30px rgba(18,82,180,0.30) !important;
}
.hero-content .btn-gradient i { transition: transform .25s ease; }
.hero-content .btn-gradient:hover i { transform: translateX(4px); }

/* Ghost text CTA */
.hero-link-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 0.98rem; color: var(--ink-900);
}
.hero-link-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--su-gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--su-blue); font-size: 0.85rem;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.hero-link-cta:hover .hero-link-icon {
  background: var(--su-blue); border-color: var(--su-blue);
  color: #fff; transform: scale(1.08);
}

/* ── Elegant slider controls ──────────────────────────────────── */
.hero-content .hero-nav {
  position: static; transform: none;
  display: flex; align-items: center; gap: 18px;
}
.hero-content .hero-prev,
.hero-content .hero-next {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--su-gray-200);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  color: var(--ink-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.74rem;
  transition: background .25s, border-color .25s, color .25s, transform .2s;
}
.hero-content .hero-prev:hover,
.hero-content .hero-next:hover {
  background: var(--su-blue); border-color: var(--su-blue);
  color: #fff; transform: scale(1.07);
}

/* Progress line */
.hero-progress {
  position: relative;
  width: 120px; height: 2px;
  background: var(--su-gray-200);
  border-radius: 2px; overflow: hidden;
}
.hero-progress-bar {
  position: absolute; inset: 0; right: auto;
  width: 20%;
  background: linear-gradient(90deg, var(--su-blue), var(--su-teal));
  border-radius: 2px;
  transition: width .6s cubic-bezier(0.4,0,0.2,1);
}

/* Numeric index */
.hero-index {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--font-heading);
}
.hero-index-current { font-size: 1.15rem; font-weight: 800; color: var(--ink-900); }
.hero-index-total   { font-size: 0.85rem; font-weight: 600; color: var(--ink-500); }

/* Hide the dots — controls use arrows + progress now (kept for JS) */
.hero-content .hero-dots { display: none !important; }

/* ── Matted framed image ──────────────────────────────────────── */
.hero-frame {
  content: '';
  position: absolute;
  top: -18px; right: -18px;
  width: 78%; height: 70%;
  border: 1.5px solid rgba(18,82,180,0.28);
  border-radius: 30px;
  z-index: 0;
  pointer-events: none;
}

.hero-img-card {
  position: relative; z-index: 1;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  box-shadow:
    0 50px 100px rgba(18,82,180,0.20),
    0 16px 44px rgba(12,26,46,0.12),
    0 0 0 1px rgba(18,82,180,0.05);
}
.hero-img-card .hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-img-card .hero-slide {
  position: absolute; inset: 0; display: block;
  opacity: 0; visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}
.hero-img-card .hero-slide.active { opacity: 1; visibility: visible; }
.hero-img-card .hero-slide-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-img-card .hero-slide.active .hero-slide-bg {
  animation: heroZoom 16s ease-out forwards;
}
.hero-img-card::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 38%;
  background: linear-gradient(180deg, transparent, rgba(4,10,24,0.55));
  z-index: 1; pointer-events: none;
}

/* Caption chip */
.hero-img-tag {
  position: absolute; left: 22px; bottom: 22px; z-index: 3;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.82rem; font-weight: 700; color: var(--ink-900);
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 8px 24px rgba(12,26,46,0.16);
}
.hero-img-tag i { color: var(--su-blue); }

/* Credential badge — overlaps the bottom-right of the frame */
.hero-award {
  position: absolute; right: -26px; bottom: 44px; left: auto; top: auto;
  z-index: 4;
  display: flex; align-items: center; gap: 13px;
  background: #fff;
  border: 1px solid var(--su-gray-100);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 18px 44px rgba(18,82,180,0.18);
}
.hero-award-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--su-blue), var(--su-teal));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.05rem; flex-shrink: 0;
}
.hero-award-text strong { display: block; font-size: 1rem; font-weight: 800; color: var(--ink-900); line-height: 1.1; font-family: var(--font-heading); }
.hero-award-text span { font-size: 0.74rem; color: var(--ink-500); }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .hero-inner { gap: 44px; padding: 120px 40px 76px !important; }
  .hero-content .hero-title { font-size: clamp(2.5rem, 5vw, 3.6rem) !important; }
}
@media (max-width: 991px) {
  .su-hero { min-height: auto; }
  .hero-inner { flex-direction: column !important; align-items: stretch; padding: 112px 28px 64px !important; gap: 52px; }
  .hero-content { flex-basis: auto; }
  .hero-visual { flex-basis: auto; width: 100%; max-width: 480px; margin: 0 auto; }
  .hero-content .hero-title { font-size: 2.6rem !important; max-width: none; }
  .hero-award { right: 0; bottom: -22px; }
  .hero-frame { right: -10px; }
}
@media (max-width: 575px) {
  .hero-inner { padding: 98px 20px 48px !important; gap: 40px; }
  .hero-content .hero-title { font-size: 2.05rem !important; }
  .hero-content .hero-ctas { gap: 16px; margin-bottom: 40px; }
  .hero-img-tag { font-size: 0.74rem; padding: 8px 14px; }
  .hero-award { display: none; }
  .hero-frame { display: none; }
  .hero-progress { width: 70px; }
}

/* ════════════════════════════════════════════════════════════════
   PREMIUM INNER PAGES — P52
   Light premium page banner · refined forms · consistent navbar
   ════════════════════════════════════════════════════════════════ */

/* ── Navbar: always solid, subtle elevation after scroll ──────── */
.su-navbar { background: rgba(255,255,255,0.96) !important; }
.su-navbar.scrolled {
  background: rgba(255,255,255,0.97) !important;
  border-bottom: 1px solid var(--su-gray-200) !important;
  box-shadow: none !important;
}
.su-navbar.elevated {
  box-shadow: 0 6px 30px rgba(12,26,46,0.08) !important;
}
.su-navbar .nav-link { color: var(--ink-700) !important; font-weight: 600; }
.su-navbar .nav-link.active { color: var(--su-blue) !important; }
.su-navbar .navbar-brand .brand-name { color: var(--su-blue) !important; }
.su-navbar .navbar-brand .brand-tagline { color: var(--ink-500) !important; }
.su-navbar .nav-hamburger span { background: var(--ink-700) !important; }

/* ── Premium light page banner (all inner pages) ──────────────── */
.page-banner {
  background:
    radial-gradient(120% 130% at 88% 0%, #eaf1ff 0%, #f5f9ff 48%, #ffffff 100%) !important;
  padding: 168px 0 72px !important;
  position: relative;
  overflow: hidden;
}
/* hide the old dark accent image; use light ambient instead */
.page-banner-bg { display: none !important; }
.page-banner::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 60% at 90% 20%, rgba(22,143,160,0.10), transparent 70%),
    radial-gradient(42% 70% at 78% 90%, rgba(18,82,180,0.09), transparent 70%);
}
.page-banner::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--su-gradient-h);
  opacity: 0.9;
}
.page-banner-content { position: relative; z-index: 2; }

.page-banner-label,
.page-banner .page-banner-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--su-blue) !important;
  margin-bottom: 14px;
}
.page-banner-label::before {
  content: ''; width: 22px; height: 2px;
  background: var(--su-gradient-h); display: inline-block;
}

.page-banner h1,
.page-banner .page-banner-title {
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  font-size: clamp(2.3rem, 4.4vw, 3.6rem) !important;
  letter-spacing: -0.025em !important;
  color: var(--ink-900) !important;
  text-shadow: none !important;
  margin-bottom: 14px;
}

.page-banner .page-banner-subtitle {
  color: var(--ink-600) !important;
  text-shadow: none !important;
  font-size: 1.05rem;
  max-width: 60ch;
}

/* Breadcrumb on light banner */
.breadcrumb-su a,
.breadcrumb-su span { font-size: 0.85rem; color: var(--ink-500); }
.breadcrumb-su a:hover { color: var(--su-blue); }
.breadcrumb-su .sep { color: var(--su-gray-300); }
.breadcrumb-su .current { color: var(--ink-700); font-weight: 600; }

/* ── Premium forms ────────────────────────────────────────────── */
.su-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink-800, #243345);
  margin-bottom: 9px;
}
.su-input,
.su-select,
.su-textarea {
  font-family: var(--font-body) !important;
  font-size: 0.96rem;
  color: var(--ink-900);
  background: #fff;
  border: 1.5px solid var(--su-gray-200);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.su-input::placeholder,
.su-textarea::placeholder { color: var(--su-gray-300); }
.su-input:hover,
.su-select:hover,
.su-textarea:hover { border-color: var(--su-gray-300); }
.su-input:focus,
.su-select:focus,
.su-textarea:focus {
  border-color: var(--su-blue) !important;
  box-shadow: 0 0 0 4px rgba(18,82,180,0.12) !important;
  background: #fff;
}
.su-textarea { min-height: 150px; }

/* Form submit button — gradient premium */
#contact-form .btn-primary {
  background: var(--su-gradient) !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 16px 28px !important;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(18,82,180,0.26) !important;
  transition: transform .2s ease, box-shadow .25s ease;
}
#contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(18,82,180,0.36) !important;
}

/* Contact info panel — premium card */
.contact-info-panel {
  background: linear-gradient(160deg, #f4f8ff 0%, #eefaf7 100%) !important;
  border: 1px solid var(--su-gray-100);
  border-radius: 22px !important;
  box-shadow: 0 20px 60px rgba(18,82,180,0.08);
}

/* ── Generic premium polish for inner-page cards ──────────────── */
.scope-card, .benefit-card, .process-step, .value-card,
.related-service-card, .project-card, .blog-card, .property-card {
  border-radius: 16px;
  transition: transform .3s cubic-bezier(0.34,1.56,0.64,1), box-shadow .3s ease, border-color .3s ease;
}
.scope-card:hover, .benefit-card:hover, .value-card:hover,
.related-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(18,82,180,0.14);
  border-color: rgba(18,82,180,0.18);
}

/* Section spacing consistency on inner pages */
.page-banner + .section-py { padding-top: 92px; }

/* ════════════════════════════════════════════════════════════════
   PROPERTY INQUIRY / BOOK INSPECTION MODAL — P53
   ════════════════════════════════════════════════════════════════ */
.pi-modal {
  position: fixed; inset: 0; z-index: 4000;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.pi-modal.is-open { display: flex; }

.pi-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 18, 36, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: piFade .25s ease;
}

.pi-modal-dialog {
  position: relative;
  width: 100%; max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: 22px;
  padding: 34px 34px 30px;
  box-shadow: 0 40px 100px rgba(8,18,36,0.4);
  animation: piPop .32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes piFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes piPop {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.pi-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  border: none; cursor: pointer;
  background: var(--su-gray-100); color: var(--ink-700);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, transform .2s;
}
.pi-modal-close:hover { background: var(--su-blue); color: #fff; transform: rotate(90deg); }

.pi-modal-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--su-blue);
  margin-bottom: 10px;
}
.pi-modal-title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 1.5rem; color: var(--ink-900);
  letter-spacing: -0.02em; margin: 0 0 6px;
}
.pi-modal-sub { font-size: 0.92rem; color: var(--ink-500); margin: 0 0 20px; line-height: 1.6; }

/* Prefilled property summary */
.pi-property-card {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(150deg, #f3f7ff 0%, #eefaf7 100%);
  border: 1px solid var(--su-gray-100);
  border-radius: 14px;
  padding: 12px 14px; margin-bottom: 22px;
}
.pi-property-thumb {
  width: 60px; height: 60px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--su-blue); background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
}
.pi-property-thumb.has-img { background-color: transparent; }
.pi-property-meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.pi-property-badge {
  align-self: flex-start;
  font-size: 0.64rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; background: var(--su-teal);
  padding: 2px 9px; border-radius: 100px;
}
.pi-property-badge.for-sale { background: var(--su-green); }
.pi-property-title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.02rem; color: var(--ink-900); line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pi-property-loc { font-size: 0.82rem; color: var(--ink-500); }
.pi-property-loc i { color: var(--su-blue); margin-right: 3px; }

/* Purpose toggle */
.pi-purpose { display: flex; gap: 10px; margin-bottom: 20px; }
.pi-purpose-opt {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 0.84rem; font-weight: 700; cursor: pointer;
  padding: 11px 10px; border-radius: 11px;
  border: 1.5px solid var(--su-gray-200); color: var(--ink-600);
  transition: all .2s ease;
}
.pi-purpose-opt i { font-size: 0.85rem; }
.pi-purpose-opt input { position: absolute; opacity: 0; pointer-events: none; }
.pi-purpose-opt.is-active {
  border-color: var(--su-blue); color: var(--su-blue);
  background: rgba(18,82,180,0.06);
  box-shadow: 0 0 0 3px rgba(18,82,180,0.08);
}

/* Form grid */
.pi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pi-form .su-form-group { margin-bottom: 16px; }
.pi-req { color: #ef4444; }
.pi-form .btn-xl { margin-top: 6px; }
.pi-form-note {
  font-size: 0.78rem; color: var(--ink-500);
  text-align: center; margin: 14px 0 0;
}
.pi-form-note i { color: var(--su-teal); margin-right: 4px; }

/* Availability note under the schedule fields */
.pi-avail-note {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 0.78rem; line-height: 1.5; color: var(--ink-500);
  background: rgba(22,143,160,0.07);
  border: 1px solid rgba(22,143,160,0.16);
  border-radius: 10px; padding: 9px 12px; margin: 2px 0 16px;
}
.pi-avail-note::before {
  content: '\f017'; /* clock */
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  color: var(--su-teal); flex-shrink: 0;
}
.pi-avail-note:empty { display: none; }

@media (max-width: 575px) {
  .pi-modal { padding: 0; }
  .pi-modal-dialog {
    max-width: 100%; max-height: 100vh; min-height: 100vh;
    border-radius: 0; padding: 28px 20px;
  }
  .pi-grid { grid-template-columns: 1fr; gap: 0; }
  .pi-purpose { flex-direction: column; }
}

/* ════════════════════════════════════════════════════════════════
   SERVICE CARD REVEAL — P54 (bulletproof, default-visible)
   Cards show by default. Only when JS adds .svc-reveal-on do they
   start hidden and fade up via .in-view. If JS fails, cards stay visible.
   ════════════════════════════════════════════════════════════════ */
.services-grid.svc-reveal-on .service-card {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .55s ease, transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.services-grid.svc-reveal-on .service-card.in-view {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .services-grid.svc-reveal-on .service-card { transition: none; opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════
   PREMIUM "HOW WE WORK" STEPPER + "OUR HISTORY" TIMELINE — P55
   ════════════════════════════════════════════════════════════════ */

/* ── How We Work — connected glass stepper (on dark brand gradient) ── */
.proc-flow {
  display: grid;
  grid-template-columns: repeat(var(--proc-count, 4), 1fr);
  gap: 22px;
  position: relative;
  margin-top: 26px;
}
.proc-flow-line {
  position: absolute;
  top: 52px; left: 9%; right: 9%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22) 15%, rgba(255,255,255,0.22) 85%, transparent);
  z-index: 0;
}
.proc-card {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 28px 22px 26px;
  text-align: center;
  overflow: hidden;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), border-color .35s ease, background .35s ease, box-shadow .35s ease;
}
.proc-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(22,143,160,0.5);
  box-shadow: 0 24px 54px rgba(0,0,0,0.32);
}
.proc-ghost {
  position: absolute; top: -18px; right: 8px;
  font-family: var(--font-heading);
  font-size: 5rem; font-weight: 800; line-height: 1;
  color: rgba(255,255,255,0.05); pointer-events: none; z-index: 0;
}
.proc-node {
  position: relative; z-index: 1;
  width: 58px; height: 58px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--su-gradient);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(18,82,180,0.5);
  border: 3px solid rgba(255,255,255,0.14);
}
.proc-node-num { font-family: var(--font-heading); font-size: 1.18rem; font-weight: 800; color: #fff; }
.proc-title {
  position: relative; z-index: 1;
  font-family: var(--font-heading); font-size: 1.02rem; font-weight: 700;
  color: #fff; margin-bottom: 9px; line-height: 1.32;
}
.proc-desc {
  position: relative; z-index: 1;
  font-size: 0.86rem; color: rgba(255,255,255,0.64); line-height: 1.66; margin: 0;
}
.proc-arrow {
  position: absolute; top: 40px; right: -23px; z-index: 3;
  color: rgba(255,255,255,0.28); font-size: 0.78rem;
}

@media (max-width: 991px) {
  .proc-flow { grid-template-columns: repeat(2, 1fr) !important; gap: 18px; }
  .proc-flow-line { display: none; }
  .proc-arrow { display: none; }
}
@media (max-width: 575px) {
  .proc-flow { grid-template-columns: 1fr !important; }
}

/* ── Our History — premium milestone timeline (on dark brand gradient) ── */
.bg-su-dark .timeline,
.bg-su-darkest .timeline { padding-left: 0; gap: 0; }

.bg-su-dark .timeline::before,
.bg-su-darkest .timeline::before {
  left: 20px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(to bottom, var(--su-blue), var(--su-teal) 55%, var(--su-green));
  opacity: 0.55;
}
.bg-su-dark .timeline-item,
.bg-su-darkest .timeline-item {
  position: relative;
  margin-left: 56px;
  margin-bottom: 16px;
  padding: 18px 24px 20px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.bg-su-dark .timeline-item:hover,
.bg-su-darkest .timeline-item:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,0.075);
  border-color: rgba(22,143,160,0.45);
  box-shadow: 0 16px 38px rgba(0,0,0,0.28);
}
/* connector stub from spine to card */
.bg-su-dark .timeline-item::before,
.bg-su-darkest .timeline-item::before {
  content: '';
  position: absolute; left: -36px; top: 30px;
  width: 36px; height: 2px;
  background: rgba(255,255,255,0.16);
}
.bg-su-dark .timeline-dot,
.bg-su-darkest .timeline-dot {
  left: -44px; top: 23px;
  width: 16px; height: 16px; border: none;
  background: var(--su-gradient);
  box-shadow: 0 0 0 4px rgba(11,32,81,0.9), 0 0 16px rgba(22,143,160,0.6);
}
.bg-su-dark .timeline-year,
.bg-su-darkest .timeline-year {
  display: inline-block;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; text-shadow: none;
  background: linear-gradient(135deg, rgba(18,82,180,0.65), rgba(22,143,160,0.5));
  border: 1px solid rgba(255,255,255,0.16);
  padding: 4px 13px; border-radius: 100px; margin-bottom: 11px;
}
.bg-su-dark .timeline-item h4,
.bg-su-darkest .timeline-item h4 {
  font-family: var(--font-heading); font-size: 1.12rem; font-weight: 700;
  color: #fff; margin-bottom: 7px;
}
.bg-su-dark .timeline-item p,
.bg-su-darkest .timeline-item p {
  font-size: 0.88rem; color: rgba(255,255,255,0.64); line-height: 1.7; margin: 0;
}

@media (max-width: 575px) {
  .bg-su-dark .timeline-item, .bg-su-darkest .timeline-item { margin-left: 44px; padding: 16px 18px; }
  .bg-su-dark .timeline-item::before, .bg-su-darkest .timeline-item::before { left: -28px; width: 28px; }
  .bg-su-dark .timeline-dot, .bg-su-darkest .timeline-dot { left: -36px; }
}

/* ════════════════════════════════════════════════════════════════
   CLEANER PREMIUM PAGE BANNER + SEAMLESS NAVBAR — P56
   Removes the hard top line (navbar border) and the label tick line;
   label becomes a clean pill badge. Applies to all inner-page banners.
   ════════════════════════════════════════════════════════════════ */

/* Navbar: no hard line at the top; subtle shadow only once scrolled */
.su-navbar,
.su-navbar.scrolled {
  border-bottom: none !important;
  box-shadow: none !important;
}
.su-navbar.elevated {
  box-shadow: 0 6px 28px rgba(12,26,46,0.07) !important;
  border-bottom: none !important;
}

/* Banner label → clean pill badge with a dot (not a tick line) */
.page-banner-label,
.page-banner .page-banner-label {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--su-blue) !important;
  background: rgba(18,82,180,0.07);
  border: 1px solid rgba(18,82,180,0.15);
  border-radius: 100px;
  padding: 7px 16px 7px 13px;
  margin-bottom: 22px;
}
.page-banner-label::before {
  content: '' !important;
  position: static !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: var(--su-teal) !important;
  margin: 0 !important;
}

/* Drop the bold gradient bottom line for a soft, premium separator */
.page-banner::after {
  height: 1px !important;
  background: rgba(18,82,180,0.10) !important;
  opacity: 1 !important;
}

/* Slightly grander, cleaner banner */
.page-banner {
  padding: 172px 0 78px !important;
}
.page-banner h1,
.page-banner .page-banner-title {
  font-size: clamp(2.5rem, 4.6vw, 3.9rem) !important;
  line-height: 1.08 !important;
}

/* Service-detail banner: keep its num/icon, just align the new pill label */
.service-banner .page-banner-label { margin-top: 4px; }

/* ════════════════════════════════════════════════════════════════
   MOBILE NAV + RESPONSIVE POLISH — P57
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  /* ── Full-screen menu overlay (dark brand gradient) ──
     overflow-y:auto is the real fix for the old bottom-collision bug: the
     CTA + contact row now live INSIDE this scrollable flex column (as the
     last <li> items in nav.php) instead of being a separately fixed element
     pinned to a % of the viewport. However tall the list gets, on however
     short a screen, it scrolls instead of overlapping. */
  .nav-menu {
    display: flex !important;
    position: fixed; inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 96px 24px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    counter-reset: navcount;
    background: linear-gradient(160deg, #0b2051 0%, #0e3070 55%, #0c5878 100%) !important;
    z-index: 990;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .3s ease, visibility .3s ease, transform .35s ease;
  }
  .nav-menu.open {
    opacity: 1; visibility: visible; pointer-events: auto; transform: none;
  }
  .nav-menu li {
    opacity: 0; transform: translateY(12px);
    transition: opacity .4s ease, transform .4s ease;
    flex-shrink: 0;
  }
  .nav-menu.open li { opacity: 1; transform: none; }
  .nav-menu.open li:nth-child(1) { transition-delay: .05s; }
  .nav-menu.open li:nth-child(2) { transition-delay: .08s; }
  .nav-menu.open li:nth-child(3) { transition-delay: .11s; }
  .nav-menu.open li:nth-child(4) { transition-delay: .14s; }
  .nav-menu.open li:nth-child(5) { transition-delay: .17s; }
  .nav-menu.open li:nth-child(6) { transition-delay: .20s; }
  .nav-menu.open li:nth-child(7) { transition-delay: .23s; }
  .nav-menu.open li:nth-child(8) { transition-delay: .27s; }
  .nav-menu.open li:nth-child(9) { transition-delay: .30s; }

  /* Editorial numbered links (01 Home, 02 About…) — echoes the numbered
     service cards used elsewhere on the site. */
  .nav-menu-item { counter-increment: navcount; }
  .su-navbar .nav-menu .nav-link,
  .su-navbar.scrolled .nav-menu .nav-link {
    display: inline-flex !important;
    align-items: baseline;
    gap: 12px;
    font-size: 1.32rem !important;
    color: #fff !important;
    font-weight: 600;
  }
  .nav-menu-item .nav-link::before {
    content: counter(navcount, decimal-leading-zero);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.4);
    transition: color .25s ease;
  }
  .su-navbar.scrolled .nav-menu .nav-link.active {
    color: #fff !important;
  }
  .nav-menu .nav-link.active::before,
  .nav-menu .nav-link:hover::before { color: var(--su-teal) !important; }
  .nav-menu .nav-link.active::after,
  .nav-menu .nav-link:hover::after { background: #fff !important; }

  /* ── Mobile-only CTA + quick contact (last two <li> in the list) ──
     Normal flow, no independent fixed positioning — this is what makes the
     collision structurally impossible now. */
  .nav-mobile-cta {
    display: flex;
    margin-top: 6px;
  }
  .nav-mobile-cta .btn {
    font-size: 1rem;
    padding: 14px 34px;
    justify-content: center;
  }
  .nav-mobile-contact {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .nav-mobile-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.86rem;
    font-weight: 600;
    transition: color .2s ease;
  }
  .nav-mobile-contact a:hover { color: #fff; }
  .nav-mobile-contact i { color: var(--su-teal); font-size: 0.8rem; }

  /* Old desktop CTA — hidden on mobile, fully replaced by .nav-mobile-cta
     inside the menu list above (no more independently-fixed duplicate). */
  .nav-cta { display: none !important; }

  /* ── Navbar bar stays on top (white, logo + hamburger) ──
     IMPORTANT: backdrop-filter on the navbar creates a containing block
     that would trap the fixed menu overlay inside the thin bar. Remove it
     on mobile so .nav-menu's position:fixed is relative to the viewport. */
  .su-navbar { z-index: 1000; padding: 16px 0; }
  .su-navbar, .su-navbar.scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .nav-hamburger { display: flex !important; z-index: 1001; }
  .su-navbar .nav-hamburger span { background: var(--ink-900) !important; }
  /* Open: X turns white so it's visible on the dark overlay */
  .su-navbar .nav-hamburger.open span { background: #fff !important; }
  /* Keep the logo visible above the overlay */
  .nav-logo { position: relative; z-index: 1001; }

  /* ── Hero spacing tuned for phones/tablets ── */
  .hero-inner { padding: 104px 26px 56px !important; gap: 40px; }
  .hero-content .hero-title { font-size: clamp(2.1rem, 7vw, 3rem) !important; }
  .hero-content .hero-subtitle { font-size: 1rem; }
  .hero-content .hero-ctas { gap: 14px; margin-bottom: 30px; }
  .hero-badge { font-size: 0.66rem !important; letter-spacing: 0.08em !important; }
  .hero-kicker-line { display: none; }
}

@media (max-width: 575px) {
  /* Container breathing room on phones */
  .container { padding-left: 20px; padding-right: 20px; }

  /* Buttons go full-width and tappable (min 44px height) */
  .hero-content .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-content .hero-ctas .btn-gradient { width: 100%; justify-content: center; }
  .hero-link-cta { justify-content: center; }
  .btn-xl { padding: 15px 26px; }

  /* Stats bar: 2-up grid instead of cramped row */
  .stats-grid { display: grid !important; grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .stat-divider { display: none !important; }

  /* Section headings scale down */
  .section-title { font-size: clamp(1.6rem, 6.5vw, 2rem) !important; }
  .page-banner h1, .page-banner .page-banner-title { font-size: clamp(1.9rem, 8vw, 2.4rem) !important; }
  .page-banner { padding: 130px 0 52px !important; }

  /* Touch targets */
  .nav-hamburger { width: 44px; height: 44px; align-items: center; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════════
   MOBILE HAMBURGER — HARDENED (ID specificity) — P58
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .su-navbar #nav-hamburger {
    display: flex !important;
    position: relative !important;
    z-index: 1002 !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 44px !important;
    height: 40px !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
  }
  .su-navbar #nav-hamburger span {
    display: block !important;
    width: 26px !important;
    height: 3px !important;
    background: var(--ink-900) !important;
    border-radius: 3px !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .su-navbar #nav-hamburger.open span { background: #fff !important; }
}

/* ════════════════════════════════════════════════════════════════
   PREMIUM PAGE BANNER (faded brand gradient) + SERVICE CHIPS — P59
   ════════════════════════════════════════════════════════════════ */

/* ── Service quick-nav chips (no text clipping, smooth scroll) ── */
.service-quicknav {
  background: rgba(255,255,255,0.85);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--su-gray-100);
  position: sticky; top: 0; z-index: 90;
}
.service-quicknav-row {
  display: flex;
  gap: 10px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;             /* Firefox */
  -ms-overflow-style: none;          /* IE/Edge */
  scroll-snap-type: x proximity;
}
.service-quicknav-row::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.service-chip {
  flex: 0 0 auto;                    /* ← never shrink; full text shows */
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  scroll-snap-align: start;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-700);
  background: #ffffff;
  border: 1.5px solid var(--su-gray-200);
  border-radius: 100px;
  padding: 9px 18px;
  transition: all .22s ease;
}
.service-chip i { color: var(--su-blue); font-size: 0.85rem; transition: color .22s ease; }
.service-chip:hover {
  border-color: var(--su-blue);
  color: #fff;
  background: var(--su-blue);
  box-shadow: 0 6px 18px rgba(18,82,180,0.28);
  transform: translateY(-2px);
}
.service-chip:hover i { color: #fff; }

/* ── Premium faded-brand page banner ───────────────────────────── */
.page-banner {
  position: relative;
  overflow: hidden;
  padding: 180px 0 84px !important;
  background:
    radial-gradient(48% 80% at 100% 0%,  rgba(22,143,160,0.16) 0%, transparent 60%),
    radial-gradient(46% 75% at 86% 108%, rgba(68,178,58,0.14) 0%, transparent 60%),
    radial-gradient(58% 95% at -5% 25%,  rgba(18,82,180,0.16) 0%, transparent 58%),
    linear-gradient(125deg, #e9f0ff 0%, #edf6f6 52%, #f1faf1 100%) !important;
}

/* Large soft brand orb on the right for depth (decorative) */
.page-banner::before {
  content: '';
  position: absolute;
  top: -120px; right: -140px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: conic-gradient(from 140deg, rgba(18,82,180,0.18), rgba(22,143,160,0.16), rgba(68,178,58,0.14), rgba(18,82,180,0.18));
  filter: blur(40px);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

/* Fine ring accent echoing the orb */
.page-banner-content::after {
  content: '';
  position: absolute;
  top: 50%; right: -60px;
  transform: translateY(-50%);
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1.5px solid rgba(18,82,180,0.10);
  z-index: 0;
  pointer-events: none;
}

/* Soft brand accent line at the bottom edge */
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--su-blue), var(--su-teal) 50%, var(--su-green));
  opacity: 0.55;
  z-index: 2;
}

.page-banner-content { position: relative; z-index: 3; }

/* Crisp, confident heading on the brand wash */
.page-banner h1,
.page-banner .page-banner-title {
  color: #0b1a2e !important;
  letter-spacing: -0.025em !important;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 991px) {
  .page-banner { padding: 140px 0 64px !important; }
  .page-banner::before { width: 360px; height: 360px; top: -90px; right: -120px; }
  .page-banner-content::after { display: none; }
  .service-quicknav-row { gap: 8px; padding: 12px 0; }
  .service-chip { font-size: 0.78rem; padding: 8px 15px; }
}
@media (max-width: 575px) {
  .page-banner { padding: 120px 0 52px !important; }
  .service-quicknav-row {
    padding-left: 4px; padding-right: 4px;
    -webkit-overflow-scrolling: touch;
  }
}

/* ════════════════════════════════════════════════════════════════
   SERVICE DETAIL PAGE — REDESIGNED LAYOUT — P60
   ════════════════════════════════════════════════════════════════ */

/* ── Sticky in-page sub-nav ─────────────────────────────────────── */
.sd-subnav {
  position: sticky; top: 68px; z-index: 80;
  background: rgba(255,255,255,0.9);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--su-gray-100);
}
.sd-subnav-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sd-subnav-links {
  display: flex; gap: 4px;
  overflow-x: auto; scrollbar-width: none;
}
.sd-subnav-links::-webkit-scrollbar { display: none; }
.sd-subnav-link {
  flex: 0 0 auto;
  font-size: 0.86rem; font-weight: 600; color: var(--ink-600);
  padding: 16px 16px; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.sd-subnav-link:hover { color: var(--su-blue); border-bottom-color: var(--su-blue); }
.sd-subnav-cta {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.84rem; font-weight: 700; color: #fff;
  background: var(--su-blue); padding: 9px 18px; border-radius: 100px;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.sd-subnav-cta:hover { background: var(--su-blue-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(18,82,180,0.3); }
.sd-subnav-cta i { transition: transform .2s ease; }
.sd-subnav-cta:hover i { transform: translateX(3px); }

/* ── Overview — 2 column (content + feature card) ───────────────── */
.sd-overview {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.sd-overview-main .section-title { margin-bottom: 18px; }
.sd-lead {
  font-size: 1.22rem; line-height: 1.6; font-weight: 500;
  color: #243345;
  margin-bottom: 18px;
}
.sd-overview-main .section-body { font-size: 1.02rem; line-height: 1.85; color: var(--ink-600); }

.sd-trust-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px;
  margin: 30px 0 34px;
}
.sd-trust-item {
  display: flex; align-items: center; gap: 11px;
  font-size: 0.92rem; font-weight: 600; color: var(--ink-700);
}
.sd-trust-item i {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(68,178,58,0.14); color: var(--su-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
}
.service-overview-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Feature image card (mirrors home hero visual) */
.sd-overview-visual { position: relative; }
.sd-feature-frame {
  position: absolute; top: -16px; right: -16px;
  width: 72%; height: 68%;
  border: 1.5px solid rgba(18,82,180,0.25);
  border-radius: 26px; z-index: 0; pointer-events: none;
}
.sd-feature-card {
  position: relative; z-index: 1;
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 4 / 3.4;
  box-shadow: 0 40px 90px rgba(18,82,180,0.18), 0 12px 36px rgba(12,26,46,0.1);
}
.sd-feature-card img { width: 100%; height: 100%; object-fit: cover; }
.sd-feature-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4,10,24,0.55));
}
.sd-feature-tag {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.95); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-radius: 100px; padding: 9px 18px;
  font-size: 0.82rem; font-weight: 700; color: var(--ink-900);
  box-shadow: 0 8px 22px rgba(0,0,0,0.16);
}
.sd-feature-tag i { color: var(--su-blue); }
.sd-feature-badge {
  position: absolute; right: -22px; bottom: 38px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--su-gray-100);
  border-radius: 16px; padding: 13px 18px;
  box-shadow: 0 18px 44px rgba(18,82,180,0.18);
}
.sd-feature-badge-icon {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--su-blue), var(--su-teal));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; flex-shrink: 0;
}
.sd-feature-badge strong { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 1rem; color: var(--ink-900); line-height: 1.1; }
.sd-feature-badge span { font-size: 0.74rem; color: var(--ink-500); }

/* ── Stats strip ────────────────────────────────────────────────── */
.sd-stats {
  background: linear-gradient(120deg, #0c2552 0%, #103a78 50%, #0e6076 100%);
  padding: 46px 0;
}
.sd-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.sd-stat { text-align: center; position: relative; }
.sd-stat:not(:last-child)::after {
  content: ''; position: absolute; right: -12px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 46px; background: rgba(255,255,255,0.14);
}
.sd-stat-num {
  display: block; font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.8rem); line-height: 1;
  background: linear-gradient(135deg, #ffffff, #bfe3ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
}
.sd-stat-num small { font-size: 0.6em; }
.sd-stat-label { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.7); }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .sd-overview { grid-template-columns: 1fr; gap: 48px; }
  .sd-overview-visual { max-width: 520px; }
  .sd-feature-badge { right: 0; }
  .sd-stats-row { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .sd-stat:nth-child(2)::after { display: none; }
  .sd-subnav { top: 60px; }
}
@media (max-width: 575px) {
  .sd-trust-grid { grid-template-columns: 1fr; }
  .sd-stat::after { display: none !important; }
  .service-overview-ctas .btn { width: 100%; justify-content: center; }
  .sd-subnav-cta { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   CEO / LEADERSHIP FEATURE — P61
   ════════════════════════════════════════════════════════════════ */
.ceo-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

/* ── Portrait (left) ── */
.ceo-photo { position: relative; }
.ceo-photo-frame {
  position: absolute; left: -18px; bottom: -18px;
  width: 70%; height: 78%;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(18,82,180,0.10), rgba(22,143,160,0.08), rgba(68,178,58,0.06));
  z-index: 0;
}
.ceo-photo-card {
  position: relative; z-index: 1;
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 4 / 4.7;
  box-shadow: 0 40px 90px rgba(18,82,180,0.20), 0 14px 40px rgba(12,26,46,0.12);
}
.ceo-photo-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.ceo-photo-badge {
  position: absolute; right: -24px; bottom: 30px; z-index: 3;
  display: flex; align-items: center; gap: 13px;
  background: #fff; border: 1px solid var(--su-gray-100);
  border-radius: 16px; padding: 14px 20px;
  box-shadow: 0 20px 48px rgba(18,82,180,0.20);
  max-width: 250px;
}
.ceo-photo-badge-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--su-blue), var(--su-teal));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.05rem;
}
.ceo-photo-badge strong {
  display: block; font-family: var(--font-heading); font-weight: 800;
  font-size: 0.92rem; color: var(--ink-900); line-height: 1.15;
}
.ceo-photo-badge span { font-size: 0.74rem; color: var(--ink-500); }

/* ── Bio (right) ── */
.ceo-role-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--su-blue);
  background: rgba(18,82,180,0.07); border: 1px solid rgba(18,82,180,0.15);
  border-radius: 100px; padding: 7px 16px; margin-bottom: 20px;
}
.ceo-name {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.8rem); letter-spacing: -0.02em;
  color: var(--ink-900); line-height: 1.1; margin-bottom: 8px;
}
.ceo-creds {
  font-size: 0.95rem; font-weight: 600; color: var(--su-teal);
  letter-spacing: 0.01em; margin-bottom: 14px;
}
.ceo-position {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--su-blue), var(--su-teal));
  border-radius: 100px; padding: 6px 18px; margin-bottom: 26px;
}
.ceo-quote {
  position: relative;
  border-left: 3px solid var(--su-blue);
  background: linear-gradient(120deg, rgba(18,82,180,0.05), rgba(22,143,160,0.03));
  border-radius: 0 14px 14px 0;
  padding: 18px 22px 18px 24px;
  margin-bottom: 24px;
}
.ceo-quote i {
  color: var(--su-blue); opacity: 0.35; font-size: 1.1rem; margin-bottom: 6px;
}
.ceo-quote p {
  font-family: var(--font-heading); font-style: italic; font-weight: 500;
  font-size: 1.08rem; line-height: 1.55; color: var(--ink-800, #243345); margin: 0;
}
.ceo-bio .section-body { font-size: 1rem; line-height: 1.8; color: var(--ink-600); margin-bottom: 16px; }

.ceo-actions {
  display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 28px;
}
.ceo-linkedin {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.9rem; font-weight: 700; color: var(--ink-700);
  transition: color .2s ease;
}
.ceo-linkedin i {
  width: 36px; height: 36px; border-radius: 50%;
  background: #0A66C2; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
  transition: transform .2s ease;
}
.ceo-linkedin:hover { color: var(--su-blue); }
.ceo-linkedin:hover i { transform: scale(1.08); }

/* ── Responsive ── */
@media (max-width: 991px) {
  .ceo-feature { grid-template-columns: 1fr; gap: 56px; max-width: 560px; margin: 0 auto; }
  .ceo-photo-badge { right: 0; }
}
@media (max-width: 575px) {
  .ceo-photo-frame { left: -10px; bottom: -10px; }
  .ceo-photo-badge { position: static; margin-top: 18px; max-width: none; right: auto; bottom: auto; box-shadow: 0 10px 30px rgba(18,82,180,0.14); }
  .ceo-actions { gap: 16px; }
  .ceo-actions .btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy / Terms) — P62
   ════════════════════════════════════════════════════════════════ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--ink-700);
}
.legal-updated {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--su-blue);
  background: rgba(18,82,180,0.07); border: 1px solid rgba(18,82,180,0.14);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 26px;
}
.legal-intro {
  font-size: 1.12rem; line-height: 1.75; color: var(--ink-800, #243345);
  margin-bottom: 14px;
}
.legal-content h2 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 1.32rem; color: var(--ink-900);
  letter-spacing: -0.015em;
  margin: 40px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--su-gray-100);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content p { font-size: 1rem; line-height: 1.8; color: var(--ink-600); margin-bottom: 16px; }
.legal-content ul { margin: 0 0 18px; padding-left: 0; }
.legal-content li {
  position: relative;
  font-size: 1rem; line-height: 1.75; color: var(--ink-600);
  padding-left: 30px; margin-bottom: 10px;
  list-style: none;
}
.legal-content li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; top: 2px;
  font-size: 0.72rem; color: var(--su-green);
}
.legal-content strong { color: var(--ink-900); font-weight: 700; }
.legal-content a { color: var(--su-blue); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--su-blue-dark); }

.legal-contact {
  background: linear-gradient(150deg, #f4f8ff, #eefaf7);
  border: 1px solid var(--su-gray-100);
  border-radius: 16px;
  padding: 22px 26px !important;
  margin-top: 8px;
}
.legal-contact li { padding-left: 0; display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-weight: 600; color: var(--ink-700); }
.legal-contact li:last-child { margin-bottom: 0; }
.legal-contact li::before { content: none; }
.legal-contact i { width: 22px; color: var(--su-blue); text-align: center; }

@media (max-width: 575px) {
  .legal-content h2 { font-size: 1.18rem; }
  .legal-intro { font-size: 1.04rem; }
}

/* ════════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER — P63
   ════════════════════════════════════════════════════════════════ */
.cookie-consent {
  position: fixed;
  left: 24px; bottom: 24px;
  z-index: 5000;
  width: min(440px, calc(100vw - 48px));
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s ease, transform .4s cubic-bezier(0.34,1.56,0.64,1);
}
.cookie-consent.is-visible { opacity: 1; transform: none; }
.cookie-consent-inner {
  display: flex; flex-direction: column; gap: 14px;
  background: #fff;
  border: 1px solid var(--su-gray-100);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 24px 64px rgba(12,26,46,0.22);
}
.cookie-consent-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--su-blue), var(--su-teal));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.15rem;
}
.cookie-consent-text strong {
  display: block; font-family: var(--font-heading); font-weight: 800;
  font-size: 1.02rem; color: var(--ink-900); margin-bottom: 5px;
}
.cookie-consent-text p { font-size: 0.86rem; line-height: 1.6; color: var(--ink-600); margin: 0; }
.cookie-consent-text a { color: var(--su-blue); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.cookie-consent-actions { display: flex; gap: 10px; }
.cookie-btn {
  flex: 1;
  font-size: 0.88rem; font-weight: 700; cursor: pointer;
  border-radius: 10px; padding: 11px 16px;
  transition: all .2s ease;
}
.cookie-decline {
  background: #fff; color: var(--ink-700);
  border: 1.5px solid var(--su-gray-200);
}
.cookie-decline:hover { border-color: var(--ink-500); color: var(--ink-900); }
.cookie-accept {
  background: var(--su-blue); color: #fff; border: 1.5px solid var(--su-blue);
  box-shadow: 0 6px 18px rgba(18,82,180,0.28);
}
.cookie-accept:hover { background: var(--su-blue-dark); border-color: var(--su-blue-dark); transform: translateY(-1px); }

@media (max-width: 575px) {
  .cookie-consent { left: 12px; right: 12px; bottom: 12px; width: auto; }
  .cookie-consent-inner { padding: 18px 18px; border-radius: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-consent { transition: opacity .2s ease; transform: none; }
}

/* ── Honeypot anti-spam field (visually hidden, off-screen) — P64 ── */
.su-hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto; width: 1px; height: 1px;
  overflow: hidden; opacity: 0; pointer-events: none;
}

/* ── CEO long-bio layout + Education/Certifications box — P65 ── */
.ceo-feature { align-items: flex-start; }
@media (min-width: 992px) {
  .ceo-photo { position: sticky; top: 100px; }
}
.ceo-quals {
  display: grid; grid-template-columns: 1fr 1fr; gap: 26px;
  background: linear-gradient(150deg, #f4f8ff, #eefaf7);
  border: 1px solid var(--su-gray-100);
  border-radius: 16px; padding: 24px 26px;
  margin: 26px 0 30px;
}
.ceo-qual-col h4 {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-heading); font-weight: 800; font-size: 0.98rem;
  color: var(--ink-900); margin-bottom: 12px;
}
.ceo-qual-col h4 i { color: var(--su-blue); }
.ceo-qual-col ul { margin: 0; padding: 0; }
.ceo-qual-col li {
  position: relative; list-style: none;
  font-size: 0.88rem; line-height: 1.5; color: var(--ink-600);
  padding-left: 20px; margin-bottom: 10px;
}
.ceo-qual-col li:last-child { margin-bottom: 0; }
.ceo-qual-col li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, var(--su-blue), var(--su-teal));
}
@media (max-width: 575px) {
  .ceo-quals { grid-template-columns: 1fr; gap: 18px; }
}

/* ════════════════════════════════════════════════════════════════
   "COMING SOON" EMPTY STATE — P66
   Shown instead of fabricated placeholder content when a section
   (Projects, Properties, Blog) has no real records yet.
   ════════════════════════════════════════════════════════════════ */
.su-empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 480px;
  margin: 20px auto;
  padding: 64px 32px;
  background: linear-gradient(150deg, #f8faff 0%, #f4faf8 100%);
  border: 1.5px dashed var(--su-gray-200);
  border-radius: 22px;
}
.su-empty-icon {
  width: 74px; height: 74px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--su-blue), var(--su-teal));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.7rem;
  margin-bottom: 22px;
  box-shadow: 0 14px 34px rgba(18,82,180,0.28);
}
.su-empty-title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 1.35rem; color: var(--ink-900);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.su-empty-desc {
  font-size: 0.96rem; line-height: 1.7; color: var(--ink-500);
  margin-bottom: 26px;
}

@media (max-width: 575px) {
  .su-empty-state { padding: 48px 22px; }
  .su-empty-icon { width: 62px; height: 62px; font-size: 1.4rem; }
  .su-empty-title { font-size: 1.15rem; }
}
