/* ================================================
   NEXCORE — UNIVERSAL STYLE.CSS
   Applies to ALL pages
   Color Palette:
     Primary Blue   : #0A66C2
     Light Blue     : #EAF4FF
     White          : #FFFFFF
     Dark Text      : #1F2937
     Mid Grey       : #6B7280
     Border         : #E5E7EB
================================================ */

/* =====================
   CSS VARIABLES
===================== */
:root {
  --blue-primary: #0A66C2;
  --blue-dark:    #084F9A;
  --blue-light:   #EAF4FF;
  --blue-mid:     #D0E8FF;
  --white:        #FFFFFF;
  --dark:         #1F2937;
  --mid:          #374151;
  --grey:         #6B7280;
  --border:       #E5E7EB;
  --bg-light:     #F8FAFC;
  --footer-bg:    #111827;

  --font: 'Poppins', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(10,102,194,0.10);
  --shadow-lg:  0 8px 40px rgba(10,102,194,0.16);

  --transition: 0.25s ease;
}

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

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

body {
  font-family: var(--font);
  padding-top: 70px;
  font-display: swap;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* =====================
   LAYOUT UTILITIES
===================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc { margin: 0 auto; }

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
}

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

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 6px 24px rgba(10,102,194,0.30);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--blue-primary);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

/* =====================
   NAVBAR
===================== */
.navbar {
  position: fixed;
  height: 70px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-nex    { color: var(--dark); }
.logo-core   { color: var(--blue-primary); }
.logo-icon-img {
  height: 28px;
  width: auto;
  display: block;
  margin-right: 4px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links li a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--blue-primary);
  background: var(--blue-light);
}

/* ── Services Dropdown ── */
.nav-links li.has-dropdown {
  position: relative;
}

.nav-links li.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-links li.has-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(10,102,194,0.13);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 500;
}

/* small triangle pointer */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--border);
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--white);
}

.nav-links li.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  border-radius: 0;
}

.nav-dropdown-item:hover {
  background: var(--blue-light);
  color: var(--blue-primary);
}

.nav-dropdown-item-icon {
  width: 32px;
  height: 32px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-dropdown-item-icon svg {
  width: 15px;
  height: 15px;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

.nav-dropdown-footer {
  display: block;
  text-align: center;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-primary);
  transition: color var(--transition);
}

.nav-dropdown-footer:hover {
  color: var(--blue-dark);
}

/* Sign In button */
.nav-signin {
  background: transparent;
  color: var(--blue-primary) !important;
  border: 1.5px solid var(--blue-primary);
  border-radius: var(--radius-sm) !important;
  padding: 7px 18px !important;
  font-weight: 600 !important;
  transition: background var(--transition), color var(--transition) !important;
}

.nav-signin:hover {
  background: var(--blue-primary) !important;
  color: var(--white) !important;
}

/* CTA nav button */
.nav-cta {
  background: var(--blue-primary) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 8px 18px !important;
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

/* Hide checkbox toggle */
.nav-toggle { display: none; }

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── Mobile Drawer Overlay ── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.open {
  display: block;
  opacity: 1;
}

/* ── Mobile Drawer Panel ── */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 72%;
  max-width: 300px;
  height: 100%;
  background: var(--white);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(0,0,0,0.15);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

/* Drawer Header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey);
  font-size: 1.5rem;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}
.drawer-close:hover { color: var(--dark); }

/* Drawer Nav Links */
.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}

.drawer-nav a,
.drawer-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--transition), color var(--transition);
}

.drawer-nav a:hover,
.drawer-nav a.active,
.drawer-nav-item:hover {
  background: var(--blue-light);
  color: var(--blue-primary);
}

.drawer-nav a.active {
  color: var(--blue-primary);
  font-weight: 600;
}

/* Services Submenu in Drawer */
.drawer-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-plus {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--blue-primary);
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.drawer-submenu-toggle.open .drawer-plus {
  transform: rotate(45deg);
}

.drawer-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg-light);
}

.drawer-submenu a {
  padding: 11px 24px 11px 40px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey);
  border-left: 2px solid var(--blue-mid);
  margin-left: 20px;
}

.drawer-submenu a:hover {
  color: var(--blue-primary);
  background: var(--blue-light);
}

/* =====================
   HERO SLIDER
===================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

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

/* gradient overlay on every slide */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(234,244,255,0.96) 0%,
    rgba(255,255,255,0.88) 50%,
    rgba(208,232,255,0.80) 100%
  );
}

/* slide colour fallbacks (replace with your images) */
.hero-slide-1 {
  background-color: #dce8f7;
  background-image: url('./assets/hero-1.webp');
}
.hero-slide-2 {
  background-color: #cfe0f5;
  background-image: url('./assets/hero-2.webp');
}

/* dot indicators */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-mid);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.hero-dot.active {
  background: var(--blue-primary);
  transform: scale(1.3);
}

/* hero content layer */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 110px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid var(--blue-mid);
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero-headline .highlight { color: var(--blue-primary); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat            { display: flex; flex-direction: column; gap: 2px; }
.stat-number     { font-size: 1.6rem; font-weight: 800; color: var(--dark); line-height: 1; }
.stat-label      { font-size: 0.78rem; color: var(--grey); font-weight: 500; }
.stat-divider    { width: 1px; height: 36px; background: var(--border); }

/* =====================
   SCROLL REVEAL
===================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(.22,.68,0,1.2),
              transform 0.65s cubic-bezier(.22,.68,0,1.2);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(.22,.68,0,1.2),
              transform 0.55s cubic-bezier(.22,.68,0,1.2);
}

.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }

/* slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible  { opacity: 1; transform: translateX(0); }

/* slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal,
.reveal-stagger > *,
.reveal-left,
.reveal-right {
  will-change: transform, opacity; /* add this line */
}

/* respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > *,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-slide { transition: none; }
}

/* =====================
   WHY CHOOSE US STRIP
===================== */
.why-strip {
  background: var(--blue-light);
  padding: 56px 0;
  border-top: 1px solid var(--blue-mid);
  border-bottom: 1px solid var(--blue-mid);
}

.why-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.why-strip-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  border-right: 1px solid var(--blue-mid);
}

.why-strip-item:last-child { border-right: none; }

.why-strip-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

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

.why-strip-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.why-strip-text span {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.5;
}

/* =====================
   PAGE BANNER
   (shown on all inner pages)
===================== */
.page-banner {
  background: linear-gradient(
    120deg,
    rgba(10,102,194,0.82)  0%,
    rgba(26,127,212,0.82)  60%,
    rgba(8,79,154,0.82)    100%
  );
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.page-banner-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(       /*change the overlay of banner*/
    120deg,
    rgba(234,244,255,0.75) 0%,
    rgba(255,255,255,0.55) 50%,
    rgba(208,232,255,0.35) 100%
  );
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
  width: 100%;
  padding: 0 24px;
}

.page-banner-center { text-align: center; flex: 1; }

.page-banner h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5) !important;
}

.page-banner p {
  font-size: 1rem;
  color: #111;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6) !important;
}

.banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #111;
  margin-top: 12px;
  justify-content: center;
}

.banner-breadcrumb a {
  color: #111;
  font-weight: 500;
  transition: color var(--transition);
}

.banner-breadcrumb a:hover { color: var(--blue-primary); }
.banner-breadcrumb span   { color: #333; }

.banner-corner-left  { flex-shrink: 0; margin-right: auto; }
.banner-corner-right { flex-shrink: 0; margin-left: auto; }

.banner-home-btn,
.banner-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.banner-home-btn {
  background: rgba(255,255,255,0.85);
  color: var(--blue-primary);
  border: 1px solid rgba(255,255,255,0.5);
}

.banner-home-btn:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.banner-contact-btn {
  background: var(--white);
  color: var(--blue-primary);
}

.banner-contact-btn:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

/* =====================
   SIGN IN POPUP
===================== */
.signin-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}

.signin-overlay.open { display: flex; }

.signin-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  position: relative;
  animation: popSlideDown 0.3s ease;
}

@keyframes popSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.signin-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--grey);
  line-height: 1;
  transition: color var(--transition);
}

.signin-close:hover { color: var(--dark); }

.signin-popup h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.signin-popup p {
  font-size: 0.88rem;
  color: var(--grey);
  margin-bottom: 28px;
}

.signin-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.signin-form input {
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.signin-form input:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(10,102,194,0.12);
  background: var(--white);
}

.signin-submit {
  width: 100%;
  padding: 13px;
  background: var(--blue-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.signin-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

/* Success popup */
.success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}

.success-overlay.open { display: flex; }

.success-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  animation: popSlideDown 0.3s ease;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  stroke: #16A34A;
}

.success-popup h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.success-popup p {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 24px;
  line-height: 1.6;
}

.success-close-btn {
  display: inline-block;
  padding: 11px 28px;
  background: var(--blue-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.success-close-btn:hover { background: var(--blue-dark); }

/* =====================
   FOOTER
===================== */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.8fr;
  gap: 48px;
  padding: 0 0 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}

/* Footer brand col */
.footer-brand .logo { margin-bottom: 14px; }

.footer-newsletter-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.footer-newsletter-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-newsletter-col .newsletter-form { margin-bottom: 20px; }

.footer-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

/* Newsletter */
.newsletter-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  display: block;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.newsletter-form input {
  flex: 1;
  font-family: var(--font);
  font-size: 0.88rem;
  padding: 11px 16px;
  background: rgba(255,255,255,0.06);
  border: none;
  outline: none;
  color: var(--white);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter-submit {
  padding: 11px 18px;
  background: var(--blue-primary);
  color: var(--white);
  border: none;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.newsletter-submit:hover { background: var(--blue-dark); }

/* Footer nav columns */
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  transform: translateZ(0);
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

/* Footer bottom bar */
.footer-bottom { padding: 18px 0; background: rgba(0,0,0,0.3); }

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* Newsletter / social bars (mobile helpers) */
.footer-newsletter-bar { display: none; }
.footer-social-bar     { display: none; }

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}

.social-icon svg { width: 20px; height: 20px; }

.social-icon:hover {
  background: var(--blue-primary);
  color: #fff;
}

/* Footer accordion (mobile) */
.footer-col-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.footer-plus {
  font-size: 1.2rem;
  font-weight: 300;
  display: none;
}

/* =====================
   ABOUT PAGE STYLES
===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.about-body {
  font-size: 0.97rem;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--mid);
}

.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--blue-light);
  color: var(--blue-primary);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* =====================
   HOME — ABOUT 2-COL
===================== */
.about-section-home { background: var(--white); }

.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-home-text .section-desc {
  max-width: 100%;
  margin-bottom: 28px;
}

.about-home-pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.about-home-pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
}

.pillar-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--blue-light);
  color: var(--blue-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
}

.about-home-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #0A66C2, #1a7fd4);
}

.about-home-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================
   SERVICES PAGE STYLES
===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

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

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

/* HOME page 4-card grid */
.services-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card-home {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}

.service-card-home::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.service-card-home:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-mid);
}

.service-card-home:hover::before { transform: scaleX(1); }

.sc-icon-wrap {
  width: 64px; height: 64px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sc-icon-wrap svg { width: 24px; height: 24px; }

.service-card-home h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.service-card-home p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .services-grid-home { 
    grid-template-columns: repeat(2, 1fr); 
  }

  /* Force 4th card to NOT stretch alone */
  .service-card-home:last-child:nth-child(odd) {
    grid-column: 1 / -1;  /* span full width if alone on a row */
    max-width: 50%;
    margin: 0 auto;
  }
}

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

  /* Reset the special rule on mobile */
  .service-card-home:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }
}


/* Service card with blue top-line on hover */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
  text-decoration: none;
  display: block;
  color: inherit;
}

/* blue accent line slides in on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-mid);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon { width: 28px; height: 28px; display: block; }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 20px;
}

.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Service detail section (services page) */
.service-detail {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  margin-bottom: 32px;
  scroll-margin-top: 90px;
}

.service-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.service-detail h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-detail-body p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 16px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--mid);
  font-weight: 500;
}

.service-feature-dot {
  width: 8px;
  height: 8px;
  background: var(--blue-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =====================
   WHY US PAGE STYLES
===================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefit-item {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-light);
  transition: background var(--transition), border-color var(--transition),
              box-shadow var(--transition), transform var(--transition);
}

.benefit-item:hover {
  background: var(--blue-light);
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefit-icon svg { width: 22px; height: 22px; }

.benefit-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.75;
}

/* =====================
   CONTACT PAGE STYLES
===================== */
/* .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: flex-start;
}

.contact-desc {
  font-size: 0.97rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-buttons-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contact-btn-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-btn-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition);
}

.contact-btn-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-btn-link svg { width: 32px; height: 32px; flex-shrink: 0; }

.btn-link-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.btn-link-sub {
  display: block;
  font-size: 0.85rem;
  opacity: 0.75;
}

.email-btn {
  background: var(--blue-light);
  border-color: var(--blue-mid);
  color: var(--blue-primary);
}

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

.facebook-btn {
  background: #EEF2FF;
  border-color: #C7D2FE;
  color: #1877F2;
}

.facebook-btn:hover {
  background: #1877F2;
  color: var(--white);
  border-color: #1877F2;
} */

/* ================================================
   RESPONSIVE — TABLET  (≤ 1024px)
================================================ */
@media (max-width: 1024px) {
  /* About */
.about-grid         { grid-template-columns: 1fr; gap: 44px; }
  .about-visual       { max-width: 500px; order: 2; }
  .about-text         { order: 1; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .about-home-grid    { grid-template-columns: 1fr; gap: 44px; }

  /* Contact */
  .contact-grid       { grid-template-columns: 1fr; gap: 44px; }

  /* Footer */
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Page banner */
  .page-banner-inner  { flex-direction: column; align-items: center; text-align: center; }

  /* Why strip */
  .why-strip-grid     { grid-template-columns: 1fr; gap: 0; }
  .why-strip-item     {
    border-right: none;
    border-bottom: 1px solid var(--blue-mid);
    padding: 24px 20px;
  }
  .why-strip-item:last-child { border-bottom: none; }
}

/* ================================================
   RESPONSIVE — MOBILE  (≤ 767px)
================================================ */
@media (max-width: 767px) {
  .section-pad { padding: 64px 0; }
  .hero-content { padding-left: 20px !important; }

  /* Hamburger visible on mobile */
  .hamburger { display: flex; }

  /* Desktop nav hidden on mobile — drawer handles it */
  nav { display: none; }

  /* Hero */
  .hero-content       { padding: 80px 0 80px; }
  .hero-headline      { font-size: 2rem; }
  .hero-actions       { flex-direction: column; align-items: flex-start; }
  .hero-stats         { gap: 20px; }

  /* Why strip */
  .why-strip          { padding: 40px 0; }

  /* Grids */
  .services-grid      { grid-template-columns: 1fr; }
  .benefits-grid      { grid-template-columns: 1fr; }
  /* .contact-grid       { grid-template-columns: 1fr; gap: 32px; } */

  /* Footer */
  .footer-grid        {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
  .footer-col         {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
  }
  .footer-plus        { display: block; }
  .footer-col ul      {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0;
    gap: 0;
  }
  .footer-col ul.open { max-height: 300px; margin-top: 12px; gap: 10px; }

  /* Banner */
  .banner-corner-left,
  .banner-corner-right { display: none; }
  .page-banner        { padding: 48px 0 40px; }

  /* Service detail */
  .service-detail     { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .hero-headline      { font-size: 1.75rem; }
  .section-title      { font-size: 1.6rem; }
  /* .contact-btn-link   { padding: 18px 18px; } */
  .hero-badge, .hero-headline, .hero-sub, .hero-actions, .hero-stats { margin-left: 8px; }
}

/* REVIEWS */
.reviews-track-wrap { overflow: hidden; width: 100%; margin-top: 20px; }
.reviews-track { display: flex; gap: 24px; width: max-content; will-change: transform; }
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 32px 28px;
  width: 320px; flex-shrink: 0;
  transition: box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
.review-card:hover {
  background: var(--blue-light); border-color: var(--blue-mid);
  box-shadow: 0 8px 32px rgba(10,102,194,0.20);
}
.review-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { font-size: 0.9rem; color: var(--grey); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-primary); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.review-author span { font-size: 0.78rem; color: var(--grey); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 22px 0; font-family: var(--font); font-size: 1rem;
  font-weight: 600; color: var(--dark); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: color var(--transition);
}
.faq-question:hover { color: var(--blue-primary); }
.faq-icon { font-size: 1.4rem; font-weight: 300; color: var(--blue-primary); flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { font-size: 0.92rem; color: var(--grey); line-height: 1.85; padding-bottom: 22px; }

/* ================================================
   NEW ABOUT PAGE ADDITIONS — APPENDED BELOW
   (existing rules above are NOT modified)
================================================ */

/* ---- SECTION 1: Banner height + load animation ---- */

.page-banner { min-height: 560px; }

@keyframes bannerTitleIn {
  from { opacity: 0; transform: translateY(-32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bannerSubIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.banner-title-anim {
  animation: bannerTitleIn 0.65s cubic-bezier(.22,.68,0,1.2) both;
}

.banner-sub-anim {
  animation: bannerSubIn 0.6s ease 0.3s both;
}

/* ---- SECTION 2: Mission & Vision ---- */

.mv-section {
  background: var(--bg-light);
  padding-top: 80px;
  padding-bottom: 80px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.mv-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mv-card--blue {
  background: var(--blue-primary);
  color: var(--white);
}

.mv-card--white {
  background: var(--white);
  border: 2px solid var(--blue-primary);
}

.mv-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

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

.mv-icon--blue {
  background: var(--blue-light);
}

.mv-title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
}

.mv-title--dark { color: var(--dark); }

.mv-text {
  font-size: 0.97rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

.mv-text--dark {
  color: var(--grey);
}

@media (max-width: 767px) {
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card { padding: 32px 28px; }
}

/* ---- SECTION 3: Why We Started ---- */

.wws-section {
  background: var(--white);
}

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

.wws-left .about-body { margin-bottom: 8px; }

.wws-quote-box {
  background: var(--blue-primary);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wws-quote-mark {
  font-size: 5rem;
  line-height: 0.8;
  color: rgba(255,255,255,0.25);
  font-family: Georgia, serif;
  font-weight: 900;
  display: block;
}

.wws-quote-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1024px) {
  .wws-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---- SECTION 4: Our Promise Strip ---- */

.promise-strip {
  background: var(--blue-light);
  padding: 64px 0;
  border-top: 1px solid var(--blue-mid);
  border-bottom: 1px solid var(--blue-mid);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.promise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 40px;
  border-right: 1px solid var(--blue-mid);
}

.promise-item:last-child { border-right: none; }

.promise-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

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

.promise-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
}

.promise-text {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.55;
  display: block;
}

@media (max-width: 767px) {
  .promise-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .promise-item {
    border-right: none;
    border-bottom: 1px solid var(--blue-mid);
    padding: 28px 20px;
  }
  .promise-item:last-child { border-bottom: none; }
}

/* ---- SECTION 5: Stats Strip ---- */

.stats-strip {
  background: var(--blue-primary);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-block:last-child { border-right: none; }

.stat-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  min-width: 80px;       
  display: inline-block; 
  text-align: center;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-label-strip {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  display: block;
}

@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }
  .stat-block {
    border-right: none;
  }
  .stat-block:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.2);
  }
}

/* ---- SECTION 6: Our Process ---- */

.process-section {
  background: var(--white);
  padding-bottom: 0;
}

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

.process-step {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-mid);
}

.process-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
  display: block;
  position: absolute;
  top: 16px;
  right: 20px;
  pointer-events: none;
  user-select: none;
}

.process-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-icon svg { width: 24px; height: 24px; }

.process-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.process-desc {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.75;
  margin: 0;
}

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

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

.page-banner-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-banner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.page-banner-slide.active { opacity: 1; }



.drawer-services-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.drawer-services-link {
  flex: 1;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.drawer-services-link:hover {
  background: var(--blue-light);
  color: var(--blue-primary);
}

.drawer-services-toggle {
  padding: 14px 20px;
  background: none;
  border: none;
  border-left: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--transition);
}

.drawer-services-toggle:hover {
  background: var(--blue-light);
}

.drawer-services-toggle.open .drawer-plus {
  transform: rotate(45deg);
}
