/* ==========================================================================
   WA CENTRAL SECURITY - PIXEL-PERFECT STYLESHEET
   100% Identical Visual Reproduction
   ========================================================================== */

:root {
  --navy-950: #020b17;
  --navy-900: #041c3b;
  --navy-850: #052044;
  --navy-800: #0a2e5c;
  --navy-heading: #07152b;
  
  --cyan-500: #00a2e8;
  --cyan-600: #008bcc;
  --cyan-50: #f0f9fd;
  
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #55687d;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(4, 28, 59, 0.04);
  --shadow-md: 0 4px 12px rgba(4, 28, 59, 0.08);
  --shadow-lg: 0 12px 32px rgba(4, 28, 59, 0.12);
  --shadow-xl: 0 24px 48px rgba(4, 28, 59, 0.18);
  
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  color: var(--slate-900);
  background-color: #ffffff;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  overflow-x: clip;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  background-color: #ffffff;
}

/* Full Viewport Lock when Mobile Drawer or Modal is Open */
body.mobile-menu-open {
  overflow: hidden !important;
  height: 100vh !important;
  height: 100dvh !important;
  width: 100% !important;
  position: fixed !important;
  touch-action: none !important;
  overscroll-behavior: none !important;
}

body.mobile-menu-open .navbar-header {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
  filter: none !important;
  perspective: none !important;
}

body.mobile-menu-open .floating-chat-btn,
body.mobile-menu-open .back-to-top-btn {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   TOP NAVIGATION BAR (STICKY HEADER)
   ========================================================================== */
.navbar-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #edf2f7;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(4, 28, 59, 0.04);
  transition: background-color 0.65s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.65s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-header.scrolled {
  box-shadow: 0 4px 20px rgba(4, 28, 59, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.nav-container {
  width: 100%;
  max-width: 1360px;
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.brand-logo:hover {
  transform: scale(1.025);
  filter: drop-shadow(0 4px 12px rgba(0, 162, 232, 0.18));
}

.logo-img {
  height: 70px;
  width: auto;
  max-height: 74px;
  object-fit: contain;
}

/* Nav Menu Links */
.nav-menu {
  display: flex;
  align-items: center;
}

.mobile-menu-main-panel {
  display: contents;
}

.mobile-drawer-header,
.mobile-drawer-footer,
.mobile-drawer-quick-actions,
.mobile-subpanel {
  display: none !important;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 38px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--cyan-500);
}

.nav-link.active {
  color: var(--navy-heading);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--cyan-500);
  border-radius: 2px;
}

.dropdown-chevron {
  width: 11px;
  height: 11px;
  margin-top: 1px;
  transition: transform var(--transition-fast);
}

.has-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

/* Base Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(22px) scale(0.98);
  width: 330px;
  background: rgba(255, 255, 255, 0.985);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 25px 50px -12px rgba(10, 25, 47, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.03);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1), transform 0.36s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.36s;
  z-index: 1010;
}

/* Invisible hover bridge to prevent menu closing during cursor traversal */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -22px;
  left: 0;
  right: 0;
  height: 22px;
  background: transparent;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Products Dropdown Menu - Sleek, Compact & Modern (248px) */
.dropdown-menu-products {
  width: 248px;
  left: 50%;
  transform: translateX(-50%) translateY(16px) scale(0.98);
  padding: 8px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 16px 36px -4px rgba(4, 28, 59, 0.15), 0 4px 12px rgba(4, 28, 59, 0.04);
}

.has-dropdown:hover .dropdown-menu-products {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-products-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-menu-products .dropdown-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  border: none !important;
  border-bottom: none !important;
  background: transparent;
  text-decoration: none;
  transition: background 0.18s cubic-bezier(0.16, 1, 0.3, 1), transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), color 0.18s ease;
  cursor: pointer;
  position: relative;
}

.dropdown-menu-products .dropdown-card:not(:last-child) {
  border-bottom: none !important;
}

.dropdown-menu-products .dropdown-card-title {
  font-size: 13.5px;
  font-weight: 650;
  color: #1e293b;
  line-height: 1.35;
  letter-spacing: -0.1px;
  flex: 1;
  transition: color 0.18s ease;
}

.dropdown-menu-products .dropdown-card-arrow {
  width: 15px;
  height: 15px;
  color: #0077b6;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.dropdown-menu-products .dropdown-card:hover {
  background: #f0f7ff;
  transform: translateX(3px);
}

.dropdown-menu-products .dropdown-card:hover .dropdown-card-title {
  color: #0077b6;
}

.dropdown-menu-products .dropdown-card:hover .dropdown-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.dropdown-menu-products .dropdown-card:active {
  transform: scale(0.98);
}

/* 2-Column Mega Menu for Services - Perfectly centered under "Services" */
.dropdown-menu-2col {
  width: 960px;
  left: 50%;
  transform: translateX(-50%) translateY(22px) scale(0.98);
  padding: 26px 36px 26px 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.985);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 30px 70px -12px rgba(10, 25, 47, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.has-dropdown:hover .dropdown-menu-2col {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 16px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  margin-bottom: 18px;
  gap: 16px;
}

.dropdown-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.dropdown-header-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.22);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #0077b6;
}

.dropdown-header-divider {
  width: 1px;
  height: 14px;
  background-color: var(--slate-300);
  display: inline-block;
}

.dropdown-menu-subtitle {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate-600);
  letter-spacing: 0.1px;
}

.dropdown-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 48px;
}

.dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dropdown-col .dropdown-card {
  padding: 10px 0;
}

.dropdown-col .dropdown-card:not(:last-child) {
  border-bottom: 1px solid rgba(226, 232, 240, 0.65);
}

.dropdown-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.dropdown-card:hover {
  background: transparent;
  border: none;
  box-shadow: none;
  transform: translateX(4px);
}

.dropdown-card-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0096c7;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.dropdown-card-icon svg {
  width: 19px;
  height: 19px;
  transition: transform 0.22s ease;
}

.dropdown-card:hover .dropdown-card-icon {
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
  color: #ffffff;
  border-color: #0077b6;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.28);
}

.dropdown-card-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dropdown-card-title {
  display: block;
  font-size: 14px;
  font-weight: 750;
  color: var(--navy-heading);
  line-height: 1.3;
  transition: color 0.18s ease;
}

.dropdown-card:hover .dropdown-card-title {
  color: #0096c7;
}

.dropdown-card-arrow {
  width: 18px;
  height: 18px;
  color: #00b4d8;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.dropdown-card:hover .dropdown-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.dropdown-card-desc {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.38;
  margin-top: 3px;
  transition: color 0.18s ease;
}

.dropdown-card:hover .dropdown-card-desc {
  color: #475569;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

/* Phone Support */
.phone-support {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.phone-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--cyan-500);
  color: var(--cyan-500);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.phone-support:hover .phone-icon-circle {
  transform: scale(1.05);
}

.phone-svg {
  width: 17px;
  height: 17px;
}

.phone-info {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.phone-number {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy-heading);
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.phone-tagline {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--slate-500);
  line-height: 1.2;
  white-space: nowrap;
}

/* Request a quote button */
.btn-nav-quote {
  background-color: var(--navy-900);
  color: #ffffff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-nav-quote:hover {
  background-color: var(--navy-800);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(4, 28, 59, 0.2);
}

.btn-arrow-icon {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.btn-nav-quote:hover .btn-arrow-icon {
  transform: translateX(3px);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: #ffffff;
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.22s ease;
}

.mobile-toggle:hover {
  background: rgba(0, 180, 216, 0.06);
  border-color: var(--cyan-500);
}

.hamburger-bar {
  width: 20px;
  height: 2.2px;
  background-color: var(--navy-heading);
  border-radius: 2px;
  transition: all 0.26s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.mobile-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(7.2px) rotate(45deg);
}

.mobile-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scale(0.3);
}

.mobile-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7.2px) rotate(-45deg);
}

/* Mobile Drawer Header & Footer - Hidden on Desktop */
.mobile-drawer-header,
.mobile-drawer-footer,
.mobile-nav-backdrop {
  display: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: #ffffff;
  min-height: 810px;
  height: 810px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  transition: background-color 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Right Background Photo - Full Width Coverage, Zoomed & Shifted Upwards */
.hero-bg-photo-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 20%;
  transform: scale(1.12);
  transform-origin: right top;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}

.hero-bg-day {
  opacity: 1;
  z-index: 1;
}

.hero-bg-night {
  opacity: 0;
  z-index: 2;
}

/* On Right-Side Hover: Smoothly crossfade BOTH right photo AND left diagonal backdrop */
.hero-section:has(.hero-night-hover-zone:hover) .hero-bg-night,
.hero-section:has(.hero-night-hover-zone:hover) .hero-backdrop-night,
.hero-section.laser-active .hero-bg-night,
.hero-section.laser-active .hero-backdrop-night,
body.night-mode-active .hero-bg-night,
body.night-mode-active .hero-backdrop-night {
  opacity: 1 !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-bg-day,
.hero-section:has(.hero-night-hover-zone:hover) .hero-backdrop-day,
.hero-section.laser-active .hero-bg-day,
.hero-section.laser-active .hero-backdrop-day,
body.night-mode-active .hero-bg-day,
body.night-mode-active .hero-backdrop-day {
  opacity: 0 !important;
}

.hero-section:has(.hero-night-hover-zone:hover),
body.night-mode-active .hero-section {
  background-color: #020b18 !important;
}

/* Clean Left Diagonal Backdrop Mask - Dynamic Slant ( / ) Bottom Shifted Outside Cards */
.hero-diagonal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 57% 0, 45.5% 100%, 0 100%);
  z-index: 2;
  pointer-events: none;
  border: none;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.hero-backdrop-day {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 60%, #f4f7fb 100%);
  filter: drop-shadow(8px 0 20px rgba(4, 28, 59, 0.08));
  opacity: 1;
}

.hero-backdrop-night {
  background: linear-gradient(135deg, #020b18 0%, #03142e 50%, #041c3b 100%);
  filter: drop-shadow(8px 0 25px rgba(0, 0, 0, 0.65));
  opacity: 0;
}

/* Right Interactive Hover Zone for Night Vision Trigger (Right of the diagonal / line) */
.hero-night-hover-zone {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(57% 0, 100% 0, 100% 100%, 45.5% 100%);
  z-index: 4;
  pointer-events: auto;
  cursor: crosshair;
}

.hero-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: stretch;
  height: 100%;
}

/* Content Left Column - Full Height Balanced Layout */
.hero-content-col {
  width: 53%;
  max-width: 680px;
  padding: 60px 24px 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Keyframes for Smooth Fade In Up Entrance Animation */
@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Keyframes for Smooth Glide on Night Mode Activation */
@keyframes heroNightFadeIn {
  0% {
    opacity: 0.2;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Keyframes for Smooth Glide on Returning to Day Mode */
@keyframes heroDayFadeIn {
  0% {
    opacity: 0.35;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-eyebrow,
body.night-mode-active .hero-eyebrow {
  opacity: 1 !important;
}

/* Completely remove all AI-generated hyphen / dash lines before section eyebrows */
.eyebrow-line,
.hero-eyebrow-line,
.faq-eyebrow-line,
.testi-eyebrow-line,
.marquee-eyebrow-line,
.brands-eyebrow-line,
.process-eyebrow-line {
  display: none !important;
}

.eyebrow-text {
  font-size: 15px;
  font-weight: 800;
  color: var(--cyan-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Headline */
.hero-headline {
  font-size: 68px;
  font-weight: 900;
  line-height: 1.12;
  color: var(--navy-heading);
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  transition: color 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-headline,
body.night-mode-active .hero-headline {
  color: #ffffff !important;
}

.headline-peace {
  background: linear-gradient(135deg, #00a2e8 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: background 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section:has(.hero-night-hover-zone:hover) .headline-peace,
body.night-mode-active .headline-peace {
  background: linear-gradient(135deg, #00a2e8 0%, #38bdf8 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Description */
.hero-description {
  font-size: 17px;
  font-weight: 450;
  line-height: 1.6;
  color: var(--slate-600);
  max-width: 550px;
  margin-bottom: 34px;
  transition: color 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-description,
body.night-mode-active .hero-description {
  color: #cbd5e1 !important;
}

/* CTA Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border-radius: 6px;
  transition: background-color 0.65s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.65s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1), color 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s ease;
}

.btn-hero-primary {
  background-color: var(--navy-900);
  color: #ffffff;
  border: 1.5px solid var(--navy-900);
}

.hero-section:has(.hero-night-hover-zone:hover) .btn-hero-primary,
body.night-mode-active .btn-hero-primary {
  background-color: var(--cyan-500) !important;
  border-color: var(--cyan-500) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(0, 162, 232, 0.45) !important;
}

.btn-hero-primary:hover {
  background-color: var(--navy-800);
  border-color: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(4, 28, 59, 0.22);
}

.btn-hero-secondary {
  background-color: #ffffff;
  color: var(--navy-900);
  border: 1.5px solid var(--navy-900);
}

.hero-section:has(.hero-night-hover-zone:hover) .btn-hero-secondary,
body.night-mode-active .btn-hero-secondary {
  background-color: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .btn-hero-secondary:hover,
body.night-mode-active .btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.btn-hero-secondary:hover {
  background-color: var(--navy-900);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(4, 28, 59, 0.14);
}

.btn:hover .btn-arrow-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   HERO SERVICES 2x2 GRID (Compact Width, Clean White Cards)
   ========================================================================== */
.hero-services-header {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 500px;
  margin-bottom: 14px;
  padding-top: 20px;
  border-top: 1px solid #edf2f7;
  transition: border-color 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-services-header,
body.night-mode-active .hero-services-header {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

.services-header-label {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--cyan-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 14px;
  width: 100%;
  max-width: 500px;
  padding-top: 0;
  border-top: none;
  position: relative;
}

.hero-service-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(4, 28, 59, 0.04);
  transition: background-color 0.65s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.65s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s ease;
}

.hero-service-card:hover {
  transform: translateY(-2px);
  border-color: var(--cyan-500);
  box-shadow: 0 6px 20px rgba(0, 162, 232, 0.15);
  background: #fafcff;
}

.hero-service-icon-box {
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan-500);
  box-shadow: none;
  transition: color 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s ease;
}

.hero-service-card:hover .hero-service-icon-box {
  background: transparent;
  color: #0284c7;
  transform: scale(1.12);
  filter: drop-shadow(0 2px 8px rgba(0, 162, 232, 0.4));
}

.service-svg-icon {
  width: 26px;
  height: 26px;
  color: inherit;
  transition: color 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-service-text {
  display: flex;
  flex-direction: column;
}

.hero-service-title {
  font-size: 12px;
  font-weight: 850;
  color: var(--navy-heading);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.25;
  transition: color 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-service-title,
body.night-mode-active .hero-service-title {
  color: #ffffff !important;
}

.hero-service-desc {
  font-size: 10.5px;
  font-weight: 450;
  color: var(--slate-500);
  line-height: 1.35;
  margin-top: 2px;
  transition: color 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-service-desc,
body.night-mode-active .hero-service-desc {
  color: #94a3b8 !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-service-card,
body.night-mode-active .hero-service-card {
  background-color: rgba(3, 14, 32, 0.65) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-service-card:hover,
body.night-mode-active .hero-service-card:hover {
  background-color: rgba(0, 162, 232, 0.12) !important;
  border-color: var(--cyan-500) !important;
  box-shadow: 0 6px 20px rgba(0, 162, 232, 0.25) !important;
}

/* ==========================================================================
   FLOATING BACK TO TOP BUTTON (REPLACES FLOATING CHAT)
   ========================================================================== */
.floating-chat-btn {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.back-to-top-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066cc 0%, #041c3b 100%);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 18px rgba(0, 102, 204, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, background 0.28s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.back-to-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.5);
  background: linear-gradient(135deg, #0077ee 0%, #062b5c 100%);
}

.back-to-top-btn:active {
  transform: translateY(0) scale(0.96);
}

.back-to-top-svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
}

@media (max-width: 768px) {
  .back-to-top-btn {
    bottom: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }
  .back-to-top-svg {
    width: 20px;
    height: 20px;
  }
}

/* ==========================================================================
   INTERACTIVE MODALS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 28, 59, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(24px) scale(0.96);
  transition: transform var(--transition-normal);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close-btn svg {
  width: 20px;
  height: 20px;
}

.modal-close-btn:hover {
  background: var(--slate-200);
  color: var(--navy-heading);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-badge {
  display: inline-block;
  background: var(--cyan-50);
  color: var(--cyan-600);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.modal-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-heading);
  line-height: 1.25;
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.5;
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 12px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: 8px;
  background-color: #ffffff;
  color: var(--slate-900);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(0, 162, 232, 0.15);
}

.btn-submit-quote {
  width: 100%;
  background: var(--navy-900);
  color: #ffffff;
  padding: 16px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.btn-submit-quote:hover {
  background: var(--navy-800);
  box-shadow: 0 8px 24px rgba(4, 28, 59, 0.28);
}

.form-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--slate-500);
}

.lock-icon {
  width: 15px;
  height: 15px;
  color: var(--cyan-500);
  flex-shrink: 0;
}



/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border-left: 4px solid #10b981;
  box-shadow: var(--shadow-xl);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3000;
  transform: translateY(150%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--transition-normal), opacity var(--transition-normal), visibility var(--transition-normal);
  max-width: 420px;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.toast-check-icon {
  width: 26px;
  height: 26px;
  color: #10b981;
  flex-shrink: 0;
}

.toast-message strong {
  display: block;
  font-size: 14px;
  color: var(--navy-heading);
}

/* ==========================================================================
   POPULAR SERVICES SECTION (Dedicated High-Converting Layout)
   ========================================================================== */

.popular-services-section {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #ffffff 100%);
  padding: 80px 24px 90px 24px;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.popular-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 162, 232, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.services-container-wrap {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* Header Area (Left-Aligned with Right Explore Action) */
.services-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.services-header-left {
  max-width: 780px;
  text-align: left;
}

.services-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.services-hero-eyebrow .eyebrow-line {
  width: 28px;
  height: 2.5px;
  background: var(--cyan-500);
  border-radius: 2px;
  flex-shrink: 0;
}

.services-hero-eyebrow .eyebrow-text {
  font-size: 12px;
  font-weight: 800;
  color: var(--cyan-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-main-heading {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--navy-heading);
  margin-bottom: 12px;
  text-align: left;
}

.highlight-cyan-gradient {
  background: linear-gradient(135deg, #00a2e8 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.services-sub-heading {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-600);
  margin: 0;
  text-align: left;
}

.services-header-right {
  flex-shrink: 0;
  margin-bottom: 4px;
}

.btn-explore-services {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: var(--navy-900);
  border: 1.5px solid #cbd5e1;
  font-size: 14px;
  font-weight: 750;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(4, 28, 59, 0.04);
}

.btn-explore-services:hover {
  background: var(--navy-900);
  color: #ffffff;
  border-color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(4, 28, 59, 0.16);
}

.btn-explore-services .btn-arrow-icon {
  width: 15px;
  height: 15px;
  color: var(--cyan-500);
  transition: transform 0.25s ease, color 0.25s ease;
}

.btn-explore-services:hover .btn-arrow-icon {
  transform: translateX(4px);
  color: #ffffff;
}

/* Master Technician Spotlight Banner */
.technician-spotlight-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 36px 40px;
  margin-bottom: 48px;
  box-shadow: 0 10px 30px rgba(4, 28, 59, 0.06);
  position: relative;
  overflow: hidden;
  align-items: center;
}

.technician-spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--cyan-500) 0%, var(--navy-900) 100%);
}

.technician-content-col {
  display: flex;
  flex-direction: column;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #059669;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.badge-check-icon {
  width: 14px;
  height: 14px;
}

.tech-heading {
  font-size: 26px;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--navy-heading);
  line-height: 1.25;
  margin-bottom: 12px;
}

.tech-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--slate-600);
  margin-bottom: 18px;
}

.tech-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tech-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--slate-700);
  line-height: 1.4;
}

.feature-bullet-icon {
  width: 17px;
  height: 17px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 1px;
}

.tech-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-tech-primary {
  background: var(--navy-900);
  color: #ffffff;
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn-tech-primary:hover {
  background: #0077b6;
  box-shadow: 0 6px 20px rgba(0, 119, 182, 0.35);
  transform: translateY(-2px);
}

.btn-tech-secondary {
  background: #f1f5f9;
  border: 1.5px solid #cbd5e1;
  color: var(--navy-heading);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-tech-secondary:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  color: #0077b6;
  transform: translateY(-2px);
}

.btn-phone-icon {
  width: 16px;
  height: 16px;
  color: var(--cyan-500);
}

.technician-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-image-container {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(4, 28, 59, 0.12);
  border: 2px solid #ffffff;
}

.technician-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: transform 0.4s ease;
}

.technician-spotlight-card:hover .technician-photo {
  transform: scale(1.03);
}

.tech-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(4, 28, 59, 0) 60%, rgba(4, 28, 59, 0.65) 100%);
  pointer-events: none;
}

.tech-floating-chip {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(4, 28, 59, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  z-index: 2;
}

.chip-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.chip-text {
  display: flex;
  flex-direction: column;
}

.chip-text strong {
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.2;
}

.chip-text span {
  font-size: 10px;
  color: #94a3b8;
}

/* 8-Card Responsive Grid (Clean Hero-Aligned Style) */
.popular-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 0;
}

.service-benefits-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dfe8f1;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(4, 28, 59, 0.07);
  overflow: hidden;
}

.services-page-benefits-strip {
  margin-top: 64px;
}

.service-benefit-item {
  min-width: 0;
  min-height: 98px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-benefit-item + .service-benefit-item {
  border-left: 1px solid #e7edf4;
}

.service-benefit-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bae6fd;
  border-radius: 10px;
  background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%);
  color: #0284c7;
}

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

.service-benefit-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-benefit-copy strong {
  color: var(--navy-heading);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.service-benefit-copy small {
  color: var(--slate-600);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .service-benefits-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-page-benefits-strip {
    margin-top: 36px;
  }

  .service-benefit-item:nth-child(3) {
    border-left: 0;
  }

  .service-benefit-item:nth-child(n + 3) {
    border-top: 1px solid #e7edf4;
  }
}

@media (max-width: 560px) {
  .service-benefits-strip {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .service-benefit-item {
    min-height: 82px;
    padding: 17px 18px;
  }

  .service-benefit-item + .service-benefit-item {
    border-top: 1px solid #e7edf4;
    border-left: 0;
  }
}

.popular-service-card {
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(4, 28, 59, 0.04);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s ease,
              box-shadow 0.28s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.popular-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 150, 199, 0.45);
  box-shadow: 0 14px 32px rgba(0, 150, 199, 0.12), 0 4px 12px rgba(4, 28, 59, 0.04);
}

/* Card Top Image Header (Crystal Clear, Crisp HD Rendering) */
.ref-card-media {
  position: relative;
  width: 100%;
  height: 222px;
  overflow: hidden;
  background: #07172c;
  border-radius: 7px 7px 0 0;
}

.ref-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.popular-service-card:hover .ref-card-img {
  transform: scale(1.05);
}

/* Wave Cutout SVG Overlay between image and content */
.ref-wave-wrap {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 40px;
  pointer-events: none;
  z-index: 2;
}

.ref-wave-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Floating Clean Badge overlapping image and card body (45% Larger Circular Icon) */
.ref-floating-icon {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border: 2.5px solid #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -35px;
  margin-left: 20px;
  margin-right: auto;
  position: relative;
  z-index: 5;
  color: #0096c7;
  box-shadow: 0 10px 24px rgba(0, 150, 199, 0.18), 0 2px 6px rgba(4, 28, 59, 0.04);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.ref-floating-icon svg {
  width: 34px;
  height: 34px;
  transition: transform 0.25s ease;
}

.popular-service-card:hover .ref-floating-icon {
  background: linear-gradient(135deg, #0096c7, #023e8a);
  color: #ffffff;
  border-color: #0096c7;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 150, 199, 0.32);
}

/* Card Body Content (Left-Aligned) */
.ref-card-body {
  padding: 14px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.ref-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #051429;
  line-height: 1.25;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  text-align: left;
}

.ref-card-title .highlight-cyan {
  color: #0096c7;
  font-weight: 850;
}

.ref-accent-bar {
  width: 28px;
  height: 2.5px;
  background: linear-gradient(90deg, #0096c7, #38bdf8);
  border-radius: 2px;
  margin: 6px 0 12px 0;
}

.ref-card-desc {
  font-size: 13.5px;
  font-weight: 450;
  line-height: 1.55;
  color: #64748b;
  margin-bottom: 0;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Card Action Link / CTA */
.ref-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
  color: #0077b6;
  font-size: 13px;
  font-weight: 800;
  transition: color 0.2s ease;
}

.ref-action-text {
  letter-spacing: 0.01em;
}

.ref-arrow-icon {
  width: 14px;
  height: 14px;
  color: inherit;
  transition: transform 0.2s ease;
}

.popular-service-card:hover .ref-card-action {
  color: #0096c7;
}

.popular-service-card:hover .ref-arrow-icon {
  transform: translateX(3px);
}

/* Services Bottom CTA Banner */
.services-footer-banner {
  background: var(--navy-900);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(4, 28, 59, 0.2);
}

.footer-banner-text h3 {
  font-size: 20px;
  font-weight: 850;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.footer-banner-text p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.45;
}

.footer-banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.banner-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.banner-phone-link:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--cyan-500);
  color: var(--cyan-500);
}

.banner-phone-link svg {
  width: 16px;
  height: 16px;
  color: var(--cyan-500);
}

/* ==========================================================================
   POPULAR SERVICES SCROLL-TRIGGERED REVEAL ANIMATIONS
   ========================================================================== */

/* 1. Header Row Reveal */
.js-ready .services-header-row {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js-ready .services-header-row.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 2. Service Cards Staggered One-by-One Reveal */
.js-ready .popular-service-card {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
  will-change: opacity, transform;
}

.js-ready .popular-service-card.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Cards Hover After Reveal - instantaneous transition without delay */
.js-ready .popular-service-card.is-revealed:hover {
  transform: translateY(-5px) scale(1);
  border-color: rgba(0, 150, 199, 0.45);
  box-shadow: 0 14px 32px rgba(0, 150, 199, 0.12), 0 4px 12px rgba(4, 28, 59, 0.04);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
  transition-delay: 0s !important;
}

/* Staggered Delay for Cards (Cascade across rows) */
.js-ready .popular-service-card[data-card-index="0"] { transition-delay: 0.06s; }
.js-ready .popular-service-card[data-card-index="1"] { transition-delay: 0.16s; }
.js-ready .popular-service-card[data-card-index="2"] { transition-delay: 0.26s; }
.js-ready .popular-service-card[data-card-index="3"] { transition-delay: 0.36s; }
.js-ready .popular-service-card[data-card-index="4"] { transition-delay: 0.06s; }
.js-ready .popular-service-card[data-card-index="5"] { transition-delay: 0.16s; }
.js-ready .popular-service-card[data-card-index="6"] { transition-delay: 0.26s; }
.js-ready .popular-service-card[data-card-index="7"] { transition-delay: 0.36s; }

/* 3. Bottom Custom Quote Banner Reveal (Slow & Smooth) */
.js-ready .services-footer-banner {
  opacity: 0;
  transform: translateY(38px) scale(0.99);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
  will-change: opacity, transform;
}

.js-ready .services-footer-banner.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js-ready .services-footer-banner.is-revealed:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(4, 28, 59, 0.28);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* 1. Medium Desktop & Compact Laptops (1081px - 1280px) */
@media (max-width: 1280px) {
  .nav-container {
    padding: 0 24px;
  }

  .nav-list {
    gap: 20px;
  }

  .logo-img {
    height: 62px;
  }

  .nav-actions {
    gap: 16px;
  }

  .btn-nav-quote {
    padding: 11px 16px;
    font-size: 12px;
  }

  .phone-number {
    font-size: 14px;
  }

  .phone-tagline {
    font-size: 10.5px;
  }
}

/* 2. Tablets & Mobile Screens (<= 1080px) - Full Luxury Drawer Navigation */
@media (max-width: 1080px) {
  .navbar-header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    height: 94px;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #ffffff !important;
    border-bottom: 1px solid #edf2f7 !important;
    box-shadow: 0 2px 10px rgba(4, 28, 59, 0.05) !important;
  }

  .nav-container {
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-img {
    height: 64px;
  }

  /* Hide top bar contact phone and quote button on mobile/tablet (moved to drawer) */
  .nav-actions .phone-support,
  .nav-actions .btn-nav-quote {
    display: none !important;
  }

  .nav-actions {
    gap: 0;
  }

  .mobile-toggle {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 10px;
    gap: 6px;
    border-radius: 10px;
    border: 1.5px solid #d0dbe7;
  }

  .hamburger-bar {
    width: 24px;
    height: 2.8px;
    border-radius: 2px;
  }

  .mobile-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(8.8px) rotate(45deg);
  }

  .mobile-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8.8px) rotate(-45deg);
  }

  /* Backdrop Overlay */
  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 28, 59, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    touch-action: none;
    overscroll-behavior: none;
    transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s;
  }

  .mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* 100% Fullscreen Mobile Navigation Menu Drawer */
  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #ffffff !important;
    z-index: 2300 !important;
    display: block !important;
    box-shadow: none !important;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden !important;
    overscroll-behavior: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  /* Level 1 Main Panel (Completely Non-Scrollable) */
  .mobile-menu-main-panel {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #ffffff !important;
    overflow: hidden !important;
    overscroll-behavior: none !important;
    touch-action: none !important;
    z-index: 5;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  }

  /* When Level 2 is open, subtly slide back Level 1 like an app */
  .nav-menu.subpanel-open .mobile-menu-main-panel {
    transform: translateX(-22%);
    opacity: 0.5;
    pointer-events: none;
  }

  /* Level 2 Sliding Subpanels */
  .mobile-subpanel {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #ffffff !important;
    z-index: 20;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain !important;
    touch-action: pan-y;
    box-shadow: -8px 0 24px rgba(4, 28, 59, 0.12);
  }

  .mobile-subpanel.active {
    transform: translateX(0);
  }

  /* Level 1 Drawer Header */
  .mobile-drawer-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 10;
    flex-shrink: 0;
  }

  /* Level 2 Subpanel Header with Back Button, Title, and Close Button */
  .mobile-subpanel-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 25;
    flex-shrink: 0;
  }

  .subpanel-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy-heading);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  .subpanel-back-btn:hover,
  .subpanel-back-btn:active {
    background: rgba(0, 180, 216, 0.1);
    border-color: var(--cyan-500);
    color: var(--cyan-500);
  }

  .subpanel-back-btn svg {
    width: 16px;
    height: 16px;
  }

  .subpanel-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy-heading);
    letter-spacing: -0.2px;
    text-align: center;
    flex: 1;
  }

  .drawer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
  }

  .drawer-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    color: var(--navy-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  .drawer-close-btn:hover,
  .drawer-close-btn:active {
    background: rgba(0, 180, 216, 0.1);
    border-color: var(--cyan-500);
    color: var(--cyan-500);
  }

  .drawer-close-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Level 1 Nav List */
  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 6px 20px;
    gap: 0;
    flex: 1;
    min-height: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 4px;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    color: #0096c7;
  }

  /* Right-facing drilldown chevron on mobile */
  .nav-item.has-dropdown .dropdown-chevron {
    width: 14px;
    height: 14px;
    transform: rotate(-90deg);
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .nav-link:hover .dropdown-chevron,
  .nav-link:active .dropdown-chevron {
    color: #0096c7;
  }

  /* Hide desktop inline dropdown menus inside Level 1 on mobile */
  .mobile-menu-main-panel .dropdown-menu,
  .mobile-menu-main-panel .dropdown-menu-products,
  .mobile-menu-main-panel .dropdown-menu-2col {
    display: none !important;
  }

  /* Subpanel Body Content */
  .mobile-subpanel-content {
    padding: 18px 20px 24px 20px;
    flex: 1;
  }

  .subpanel-intro {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
  }

  .subpanel-badge {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #0077b6;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.22);
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
  }

  .subpanel-desc {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--slate-600);
    line-height: 1.4;
    margin: 0;
  }

  .mobile-subpanel-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-subpanel-list .dropdown-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.75);
    text-decoration: none;
    background: transparent;
    transition: background 0.2s ease, padding 0.2s ease;
  }

  .mobile-subpanel-list .dropdown-card:last-child {
    border-bottom: none;
  }

  .mobile-subpanel-list .dropdown-card:active,
  .mobile-subpanel-list .dropdown-card:hover {
    background: rgba(0, 180, 216, 0.04);
    padding-left: 6px;
  }

  .mobile-subpanel-list .dropdown-card-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .mobile-subpanel-list .dropdown-card-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy-heading);
  }

  .mobile-subpanel-list .dropdown-card-desc {
    font-size: 12px;
    font-weight: 500;
    color: var(--slate-600);
    line-height: 1.35;
  }

  .mobile-subpanel-list .dropdown-card-arrow {
    width: 15px;
    height: 15px;
    color: #94a3b8;
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .mobile-subpanel-list .dropdown-card:hover .dropdown-card-arrow,
  .mobile-subpanel-list .dropdown-card:active .dropdown-card-arrow {
    transform: translateX(3px);
    color: var(--cyan-500);
  }

  /* Mobile Drawer Quick Action Buttons (View All Services & View All Products) */
  .mobile-drawer-quick-actions {
    display: flex !important;
    flex-direction: column;
    gap: 9px;
    padding: 12px 20px;
    background: #ffffff;
    border-top: 1px solid #edf2f7;
    margin-top: auto;
    flex-shrink: 0;
  }

  .mobile-quick-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14.5px;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-quick-services {
    background: linear-gradient(135deg, #041c3b 0%, #0a2e5c 100%);
    color: #ffffff !important;
    box-shadow: 0 3px 10px rgba(4, 28, 59, 0.18);
  }

  .mobile-quick-services:active {
    transform: scale(0.98);
    opacity: 0.95;
  }

  .mobile-quick-products {
    background: #f0f7ff;
    border: 1.5px solid #bae6fd;
    color: #0066cc !important;
  }

  .mobile-quick-products:active {
    transform: scale(0.98);
    background: #e0f2fe;
  }

  .mobile-quick-btn .quick-btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .mobile-quick-services .quick-btn-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #38bdf8;
  }

  .mobile-quick-products .quick-btn-icon {
    background: rgba(0, 102, 204, 0.12);
    color: #0066cc;
  }

  .mobile-quick-btn .quick-btn-icon svg {
    width: 17px;
    height: 17px;
  }

  .mobile-quick-btn .quick-btn-label {
    flex: 1;
    letter-spacing: 0.1px;
  }

  .mobile-quick-btn .quick-btn-chevron {
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    opacity: 0.7;
  }

  /* Drawer Footer CTA Card */
  .mobile-drawer-footer {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding: 14px 20px 24px 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
    flex-shrink: 0;
  }

  .drawer-phone-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #ffffff;
    border: 1.5px solid rgba(0, 180, 216, 0.25);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .drawer-phone-btn:hover {
    border-color: #0096c7;
    background: #f0f9ff;
  }

  .drawer-phone-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 180, 216, 0.1);
    color: #0096c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .drawer-phone-icon svg {
    width: 18px;
    height: 18px;
  }

  .drawer-phone-text {
    display: flex;
    flex-direction: column;
  }

  .drawer-phone-text strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy-heading);
    line-height: 1.2;
  }

  .drawer-phone-text span {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 500;
  }

  .drawer-quote-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 12.5px;
  }

  .drawer-trust-note {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    padding-top: 2px;
  }

  /* Hero adjustments for tablet & mobile: Balanced height with light background */
  .hero-section {
    position: relative;
    height: auto;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    background-color: #ffffff;
    padding-bottom: 36px;
  }

  .hero-bg-photo-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    display: block;
  }

  .hero-bg-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 85% center;
    transform: none;
  }

  /* Only use light/daytime background image on mobile/tablet */
  .hero-bg-day {
    opacity: 1 !important;
    display: block !important;
    z-index: 1;
  }

  .hero-bg-night {
    opacity: 0 !important;
    display: none !important;
    z-index: 0;
  }

  /* Soft readable light gradient overlay */
  .hero-diagonal-backdrop.hero-backdrop-day {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.90) 45%,
      rgba(255, 255, 255, 0.72) 75%,
      rgba(255, 255, 255, 0.48) 100%
    );
    z-index: 2;
    clip-path: none !important;
    pointer-events: none;
  }

  .hero-diagonal-backdrop.hero-backdrop-night {
    display: none !important;
  }

  .hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-height: auto;
    padding: 28px 28px 24px 28px;
    margin: 0 auto;
  }

  .hero-content-col {
    max-width: 720px;
    width: 100%;
    padding: 0;
  }

  .hero-eyebrow {
    margin-bottom: 11px;
  }

  .eyebrow-text {
    font-size: 14px;
    font-weight: 850;
  }

  .hero-headline {
    font-size: 54px;
    line-height: 1.12;
    margin-bottom: 15px;
  }

  .hero-description {
    font-size: 17px;
    line-height: 1.52;
    margin-bottom: 21px;
  }

  .hero-cta-group {
    display: flex;
    flex-direction: row;
    gap: 14px;
  }

  .hero-cta-group .btn {
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 700;
  }

  /* Popular Services strip displayed prominently on Tablet hero */
  .hero-services-header {
    display: flex !important;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 700px;
    margin-top: 22px;
    margin-bottom: 13px;
    padding-top: 16px;
    border-top: 1.5px solid rgba(226, 232, 240, 0.95);
  }

  .services-header-label {
    font-size: 13.5px;
    font-weight: 850;
    letter-spacing: 0.08em;
  }

  .hero-services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 18px;
    width: 100%;
    max-width: 700px;
  }

  .hero-service-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(4, 28, 59, 0.05);
    transition: all 0.2s ease;
  }

  .hero-service-card:hover,
  .hero-service-card:active {
    border-color: var(--cyan-500);
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.18);
    transform: translateY(-2px);
  }

  .hero-service-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--cyan-500);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .hero-service-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .hero-service-title {
    font-size: 14px;
    font-weight: 850;
    color: var(--navy-heading);
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .hero-service-desc {
    font-size: 12.5px;
    color: var(--slate-600);
    font-weight: 500;
    line-height: 1.35;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Popular Services Section on Tablet (2 Columns x 4 Rows) */
  .popular-services-section {
    padding: 60px 24px 70px 24px;
  }

  .services-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }

  .services-main-heading {
    font-size: 34px;
  }

  .technician-spotlight-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }

  .technician-photo {
    height: 240px;
  }

  .popular-services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }

  .services-footer-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
  }

  .footer-banner-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  /* Keep day theme locked on mobile/tablet */
  body.night-mode-active .navbar-header {
    background: #ffffff !important;
    border-bottom: 1px solid #edf2f7 !important;
    box-shadow: 0 2px 10px rgba(4, 28, 59, 0.04) !important;
  }

  body.night-mode-active .hero-section {
    background-color: #ffffff !important;
  }

  body.night-mode-active .hero-headline {
    color: #07152b !important;
  }

  body.night-mode-active .hero-description {
    color: #55687d !important;
  }
}

/* 3. Small Tablets & Phones (<= 640px) */
@media (max-width: 640px) {
  .navbar-header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    height: 80px;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #ffffff !important;
    border-bottom: 1px solid #edf2f7 !important;
    box-shadow: 0 2px 10px rgba(4, 28, 59, 0.05) !important;
  }

  .nav-container {
    padding: 0 20px;
  }

  .logo-img {
    height: 48px;
  }

  .nav-actions {
    gap: 0;
  }

  .mobile-toggle {
    width: 38px;
    height: 38px;
    padding: 7px;
    gap: 4.5px;
    border-radius: 8px;
  }

  .hamburger-bar {
    width: 18px;
    height: 2px;
  }

  .mobile-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .mobile-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .hero-section {
    position: relative;
    height: auto;
    min-height: auto;
    display: flex;
    align-items: center;
    padding-bottom: 42px;
  }

  .hero-bg-photo {
    object-position: 80% center;
  }

  .hero-diagonal-backdrop.hero-backdrop-day {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.72) 38%,
      rgba(255, 255, 255, 0.35) 70%,
      rgba(255, 255, 255, 0.15) 100%
    );
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-height: auto;
    padding: 28px 20px 20px 20px;
  }

  .hero-content-col {
    max-width: 100% !important;
    width: 100% !important;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .eyebrow-line {
    width: 32px;
    height: 3px;
  }

  .eyebrow-text {
    font-size: 12.5px;
    letter-spacing: 0.06em;
    font-weight: 800;
    color: #0077b6;
  }

  .hero-headline br {
    display: block !important;
  }

  .hero-headline {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    max-width: 100% !important;
    width: 100% !important;
    color: #051429 !important;
    text-shadow: none !important;
  }

  .headline-peace {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: #0096c7 !important;
    display: inline-block !important;
  }

  .hero-description {
    font-size: 15.5px;
    line-height: 1.55;
    margin: 14px 0 28px 0;
    max-width: 100% !important;
    width: 100% !important;
    color: #1a3353 !important;
    font-weight: 500;
    text-shadow: none !important;
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 14.5px 22px;
    font-size: 15px;
    font-weight: 750;
    border-radius: 8px;
  }

  /* Hide Popular Services strip on mobile phones (keeps mobile view clean) */
  .hero-services-header,
  .hero-services-grid {
    display: none !important;
  }

  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
  }

  .trust-divider {
    display: none;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  /* Popular Services Section Mobile Adjustments */
  .popular-services-section {
    padding: 48px 16px 56px 16px;
  }

  .services-header-wrap {
    margin-bottom: 30px;
  }

  .services-main-heading {
    font-size: 27px;
    line-height: 1.2;
  }

  .services-sub-heading {
    font-size: 13.5px;
    margin-bottom: 24px;
  }

  .technician-spotlight-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 16px;
    margin-bottom: 32px;
  }

  .tech-heading {
    font-size: 20px;
  }

  .tech-desc {
    font-size: 13px;
  }

  .tech-feature-list li {
    font-size: 12.5px;
  }

  .tech-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn-tech-primary,
  .btn-tech-secondary {
    width: 100%;
    justify-content: center;
    padding: 13px 16px;
    font-size: 13.5px;
  }

  .technician-photo {
    height: 190px;
  }

  .popular-services-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-bottom: 32px;
  }

  .popular-service-card {
    padding: 0;
  }

  .ref-card-media {
    height: 202px;
  }

  .ref-card-body {
    padding: 12px 16px 18px 16px;
  }

  .ref-card-title {
    font-size: 17.5px;
  }

  .ref-card-desc {
    font-size: 12.5px;
    height: calc(12.5px * 1.55 * 2);
  }

  .services-footer-banner {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .footer-banner-text h3 {
    font-size: 18px;
  }

  .footer-banner-text p {
    font-size: 13px;
  }

  .footer-banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .footer-banner-actions .btn,
  .footer-banner-actions .banner-phone-link {
    width: 100%;
    justify-content: center;
  }
}

/* 4. Extra Small Phones (<= 480px) */
@media (max-width: 480px) {
  .hero-section {
    padding-bottom: 34px;
  }

  .hero-container {
    padding: 24px 16px 18px 16px;
  }

  .hero-eyebrow {
    margin-bottom: 10px;
  }

  .eyebrow-text {
    font-size: 11.5px;
    letter-spacing: 0.05em;
  }

  .hero-headline br {
    display: block !important;
  }

  .hero-headline {
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 14.5px;
    line-height: 1.5;
    margin: 12px 0 24px 0;
  }

  .hero-cta-group {
    gap: 10px;
  }

  .hero-cta-group .btn {
    padding: 13.5px 18px;
    font-size: 14.5px;
  }
}

/* ==========================================================================
   DYNAMIC NIGHT SECURITY MODE (Coordinated Dark Theme on Hero Hover)
   ========================================================================== */

/* 1. Top Navbar Header - Always Crisp White in All Modes */
.hero-section:has(.hero-night-hover-zone:hover) ~ .navbar-header,
body.night-mode-active .navbar-header {
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom: 1px solid #edf2f7 !important;
  box-shadow: 0 2px 10px rgba(4, 28, 59, 0.04) !important;
}

/* 2. Left Diagonal Backdrop Transitions from Light to Deep Midnight Navy */
.hero-section:has(.hero-night-hover-zone:hover) .hero-backdrop-night,
body.night-mode-active .hero-backdrop-night {
  opacity: 1 !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-backdrop-day,
body.night-mode-active .hero-backdrop-day {
  opacity: 0 !important;
}

/* 3. Left Headline & Typography Glow */
.hero-section:has(.hero-night-hover-zone:hover) .eyebrow-text,
.hero-section:has(.hero-night-hover-zone:hover) .hero-eyebrow-text,
body.night-mode-active .eyebrow-text,
body.night-mode-active .hero-eyebrow-text {
  color: var(--cyan-500) !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .eyebrow-line,
.hero-section:has(.hero-night-hover-zone:hover) .hero-eyebrow-line,
body.night-mode-active .eyebrow-line,
body.night-mode-active .hero-eyebrow-line {
  background: var(--cyan-500) !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-headline,
.hero-section:has(.hero-night-hover-zone:hover) .headline-line,
body.night-mode-active .hero-headline,
body.night-mode-active .headline-line {
  color: #ffffff !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .headline-peace,
.hero-section:has(.hero-night-hover-zone:hover) .headline-highlight,
body.night-mode-active .headline-peace,
body.night-mode-active .headline-highlight {
  background: linear-gradient(135deg, #00a2e8 0%, #38bdf8 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-description,
body.night-mode-active .hero-description {
  color: #94a3b8 !important;
}

/* 4. Action Buttons Matching Uploaded Night Screen */
.hero-section:has(.hero-night-hover-zone:hover) .btn-hero-primary,
body.night-mode-active .btn-hero-primary {
  background: var(--cyan-500) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(0, 162, 232, 0.45) !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .btn-hero-secondary,
body.night-mode-active .btn-hero-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
  box-shadow: none !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .btn-hero-secondary:hover,
body.night-mode-active .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

/* 5. Services Section Label & 2x2 Dark Glass Cards */
.hero-section:has(.hero-night-hover-zone:hover) .hero-services-header,
body.night-mode-active .hero-services-header {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .services-header-label,
body.night-mode-active .services-header-label {
  color: var(--cyan-500) !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-service-card,
body.night-mode-active .hero-service-card {
  background: rgba(3, 14, 32, 0.6) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-service-card:hover,
body.night-mode-active .hero-service-card:hover {
  background: rgba(0, 162, 232, 0.12) !important;
  border-color: var(--cyan-500) !important;
  box-shadow: 0 6px 20px rgba(0, 162, 232, 0.25) !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-service-title,
body.night-mode-active .hero-service-title {
  color: #ffffff !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-service-desc,
body.night-mode-active .hero-service-desc {
  color: #94a3b8 !important;
}

.hero-section:has(.hero-night-hover-zone:hover) .hero-service-icon-box,
body.night-mode-active .hero-service-icon-box {
  color: var(--cyan-500) !important;
}

/* ==========================================================================
   FEATURED PRODUCTS CAROUSEL SLIDER SECTION
   ========================================================================== */
.featured-products-section {
  position: relative;
  width: 100%;
  padding: 80px 24px 80px 24px;
  background: #f8fafc;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}

.products-bg-glow {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.09) 0%, rgba(248, 250, 252, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.products-tech-lines {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 480px;
  height: 480px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.75;
}

.products-tech-lines svg {
  width: 100%;
  height: 100%;
}

.products-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
}

/* Header Center */
.products-header-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 44px auto;
}

.products-header-center .products-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.products-eyebrow .eyebrow-line {
  width: 28px;
  height: 2.5px;
  background: var(--cyan-500);
  border-radius: 2px;
  flex-shrink: 0;
}

.products-eyebrow .eyebrow-text {
  font-size: 12px;
  font-weight: 800;
  color: var(--cyan-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-title {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--navy-heading);
  margin: 0 0 14px 0;
  text-align: center;
}

.products-title .highlight-blue-gradient {
  background: linear-gradient(135deg, #00a2e8 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.products-subtitle {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--slate-600);
  margin: 0 auto;
  max-width: 680px;
  text-align: center;
}

/* Outer Slider Container (allows arrows to sit outside the cards track) */
.products-slider-outer {
  position: relative;
  width: 100%;
  overflow: visible;
}

/* Slider Track Viewport */
.products-slider-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 20px 0;
  cursor: grab;
  user-select: none;
  touch-action: pan-y pinch-zoom;
}

.products-slider-viewport.is-dragging {
  cursor: grabbing;
}

/* Floating Navigation Arrows Positioned Outside Cards Track */
.prod-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.88);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 10px 25px -4px rgba(4, 28, 59, 0.18), 0 2px 6px rgba(4, 28, 59, 0.08);
  color: var(--navy-heading);
  cursor: pointer;
  z-index: 25;
  opacity: 0.94;
	pointer-events: auto;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.2s ease,
              border-color 0.2s ease,
              color 0.2s ease,
              box-shadow 0.2s ease;
  outline: none;
  user-select: none;
}

.prod-slider-nav svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.prod-slider-prev {
  left: -24px;
}

.prod-slider-next {
  right: -24px;
}

/* Reveal on Slider Container Hover */
.products-slider-outer:hover .prod-slider-nav:not(:disabled):not(.is-disabled) {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.prod-slider-nav:hover:not(:disabled):not(.is-disabled) {
  background: var(--navy-900);
  color: #ffffff;
  border-color: var(--navy-900);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 14px 32px -4px rgba(0, 162, 232, 0.35);
}

.prod-slider-prev:hover:not(:disabled):not(.is-disabled) svg {
  transform: translateX(-2px);
}

.prod-slider-next:hover:not(:disabled):not(.is-disabled) svg {
  transform: translateX(2px);
}

.prod-slider-nav:active:not(:disabled):not(.is-disabled) {
  transform: translateY(-50%) scale(0.94);
}

/* Boundary Disabled State (Invisible and non-interactive) */
.prod-slider-nav:disabled,
.prod-slider-nav.is-disabled {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-50%) scale(0.7) !important;
}

/* Track */
.products-slider-track {
  display: flex;
  gap: 22px;
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.0);
  will-change: transform;
}

/* Product Card - Sleek 10px Radius */
.product-card {
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 260px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8eef5;
  box-shadow: 0 4px 18px rgba(4, 28, 59, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s ease,
              box-shadow 0.28s ease;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.product-card:hover,
.product-card.is-hover-preview {
  transform: translateY(-5px);
  border-color: rgba(0, 150, 199, 0.45);
  box-shadow: 0 14px 32px rgba(0, 150, 199, 0.12), 0 4px 12px rgba(4, 28, 59, 0.04);
}

.prod-card-top {
  position: relative;
  width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
  background: #ffffff;
  overflow: hidden;
  border-radius: 9px 9px 0 0;
}

.prod-img-box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.prod-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
	object-position: center;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.prod-img-primary {
	object-fit: contain;
	background: #f6f8fc;
}

.prod-img-hover {
	object-fit: cover;
}

.prod-img-primary {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}

.prod-img-hover {
  opacity: 0;
  z-index: 2;
  transform: scale(1.05);
}

.product-card:hover .prod-img-primary,
.product-card.is-hover-preview .prod-img-primary {
  opacity: 0;
  transform: scale(1.08);
}

.product-card:hover .prod-img-hover,
.product-card.is-hover-preview .prod-img-hover {
  opacity: 1;
  transform: scale(1);
}

/* Card Body */
.prod-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  z-index: 3;
  gap: 14px;
}

.prod-card-category {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 10px;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  background: #f0f9ff;
  color: #0369a1;
  font-size: 10.5px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-selection-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px auto 0;
  color: var(--slate-600);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.products-selection-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(0, 162, 232, 0.12);
}

.prod-card-title {
  font-size: 17.5px;
  font-weight: 850;
  color: var(--navy-heading, #041c3b);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.015em;
  text-align: center;
  transition: color 0.25s ease;
}

.product-card:hover .prod-card-title,
.product-card.is-hover-preview .prod-card-title {
  color: #0077b6;
}

.prod-card-action {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-prod-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 18px;
  background: #f0f9ff;
  color: #0284c7;
  border: 1.5px solid #bae6fd;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.product-card:hover .btn-prod-contact,
.product-card.is-hover-preview .btn-prod-contact,
.btn-prod-contact:hover {
  background: linear-gradient(135deg, var(--cyan-500, #00a2e8) 0%, #0284c7 100%);
  color: #ffffff;
  border-color: var(--cyan-500, #00a2e8);
  box-shadow: 0 4px 14px rgba(0, 162, 232, 0.32);
  transform: translateY(-1px);
}

.btn-prod-contact .prod-arrow-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.product-card:hover .btn-prod-contact .prod-arrow-icon,
.product-card.is-hover-preview .btn-prod-contact .prod-arrow-icon,
.btn-prod-contact:hover .prod-arrow-icon {
  transform: translateX(4px);
}

/* Centered Explore Products CTA */
.products-footer-action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  position: relative;
  z-index: 5;
}

.btn-explore-products {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 38px;
  background: linear-gradient(135deg, #00a2e8 0%, #0284c7 100%);
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(0, 162, 232, 0.32), 0 2px 6px rgba(0, 162, 232, 0.16);
  cursor: pointer;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-explore-products:hover {
  background: linear-gradient(135deg, #041c3b 0%, #0a2540 100%);
  border-color: rgba(0, 162, 232, 0.6);
  color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(4, 28, 59, 0.28), 0 0 24px rgba(0, 162, 232, 0.35);
}

.btn-explore-products .btn-arrow-icon {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-explore-products:hover .btn-arrow-icon {
  transform: translateX(4px);
}

.btn-explore-products:active {
  transform: translateY(-1px) scale(0.99);
}

/* Scroll Reveal Animations for Featured Products Section */
.js-ready .products-header-center {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js-ready .products-header-center.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .products-slider-outer {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  will-change: opacity, transform;
}

.js-ready .products-slider-outer.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .products-footer-action {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  will-change: opacity, transform;
}

.js-ready .products-footer-action.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .product-card {
    flex: 0 0 calc((100% - 44px) / 3);
  }
  .prod-slider-prev {
    left: -14px;
  }
  .prod-slider-next {
    right: -14px;
  }
}

@media (max-width: 900px) {
  .featured-products-section {
    padding: 64px 20px 54px 20px;
  }
  .product-card {
    flex: 0 0 calc((100% - 22px) / 2);
  }
  .products-title {
    font-size: 32px;
  }
  .prod-slider-prev {
    left: -8px;
  }
  .prod-slider-next {
    right: -8px;
  }
  /* Show arrows consistently on touch/tablet */
  .prod-slider-nav:not(:disabled):not(.is-disabled) {
    opacity: 0.92;
    pointer-events: auto;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 640px) {
  .featured-products-section {
    padding: 48px 16px 40px 16px;
  }
  .products-title {
    font-size: 26px;
  }
  .products-subtitle {
    font-size: 14.5px;
  }
  .product-card {
    flex: 0 0 85%;
    min-width: 240px;
  }
  .prod-card-top {
    height: 180px;
  }
  .prod-slider-prev {
    left: 4px;
  }
  .prod-slider-next {
    right: 4px;
  }
  .btn-explore-products {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
  }
}

/* ==========================================================================
   WHY CHOOSE US SECTION (Matching Reference Design Mockup with Premium Motion)
   ========================================================================== */
.why-choose-section {
  position: relative;
  width: 100%;
  padding: 104px 24px 94px 24px;
  background: #020914;
  color: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(0, 162, 232, 0.14);
  border-bottom: 1px solid rgba(0, 162, 232, 0.14);
}

.why-bg-glow {
  position: absolute;
  top: 5%;
  right: -80px;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(0, 162, 232, 0.14) 0%, rgba(2, 9, 20, 0) 65%);
  pointer-events: none;
  z-index: 1;
  animation: whyGlowPulse 8s ease-in-out infinite alternate;
}

@keyframes whyGlowPulse {
  0% { opacity: 0.65; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.08); }
}

.why-dots-grid {
  position: absolute;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(rgba(0, 180, 240, 0.28) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.why-dots-top-right {
  top: 36px;
  right: 36px;
}

.why-dots-bottom-left {
  bottom: 36px;
  left: 36px;
}

.why-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* 2-Column Main Grid */
.why-main-grid {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Left Media Showcase Card */
.why-media-wrapper {
  position: relative;
  width: 100%;
  perspective: 1200px;
}

.why-media-card {
  position: relative;
  width: 100%;
  height: 590px;
  border-radius: 22px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 162, 232, 0.35);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75), 0 0 45px rgba(0, 162, 232, 0.16);
  background: #04142b;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
}

.why-media-card:hover {
  border-color: rgba(0, 210, 255, 0.65);
  box-shadow: 0 34px 85px rgba(0, 0, 0, 0.85), 0 0 60px rgba(0, 162, 232, 0.32);
}

.why-technician-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.5s ease;
}

.why-media-card:hover .why-technician-img {
  transform: scale(1.045);
}

/* Subtle gradient vignette overlay to ensure text and badge stand out cleanly */
.why-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 9, 20, 0.04) 0%, rgba(2, 9, 20, 0.16) 50%, rgba(2, 9, 20, 0.74) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Subtle angled shine sweep on hover */
.why-media-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    rgba(0, 210, 255, 0.15),
    transparent
  );
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-media-card:hover::before {
  opacity: 1;
  animation: whyShineSweep 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes whyShineSweep {
  0% { transform: translate(-100%, -50%) rotate(25deg); }
  100% { transform: translate(350%, -50%) rotate(25deg); }
}

.why-media-border-glow {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 4;
}

/* Floating Glassmorphic Badge: Your Safety. Our Priority. */
.why-floating-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(4, 20, 42, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(0, 195, 255, 0.45);
  border-radius: 18px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 162, 232, 0.3);
  z-index: 10;
  max-width: 310px;
  animation: whyFloatBadge 5s ease-in-out infinite alternate;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-floating-badge:hover {
  border-color: #00d2ff;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.75), 0 0 40px rgba(0, 210, 255, 0.5);
}

@keyframes whyFloatBadge {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-0.5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.why-badge-glow-ring {
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: radial-gradient(circle at 20% 50%, rgba(0, 210, 255, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.why-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 162, 232, 0.18);
  border: 1.5px solid var(--cyan-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(0, 162, 232, 0.45);
  animation: whyPulseRing 3.5s ease-in-out infinite;
}

@keyframes whyPulseRing {
  0%, 100% { box-shadow: 0 0 14px rgba(0, 162, 232, 0.35); transform: scale(1); }
  50% { box-shadow: 0 0 26px rgba(0, 210, 255, 0.8); transform: scale(1.05); }
}

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

.why-badge-content {
  flex: 1;
}

.why-badge-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 5px 0;
  letter-spacing: -0.01em;
}

.why-badge-desc {
  font-size: 12.5px;
  line-height: 1.4;
  color: #cbd5e1;
  margin: 0;
}

.why-badge-dots {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: grid;
  grid-template-columns: repeat(3, 3px);
  gap: 3.5px;
  opacity: 0.5;
}

.why-badge-dots span {
  width: 3px;
  height: 3px;
  background: var(--cyan-400);
  border-radius: 50%;
}

/* Right Content Column */
.why-content-col {
  display: flex;
  flex-direction: column;
}

.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.why-eyebrow .eyebrow-line {
  width: 26px;
  height: 2.5px;
  background: var(--cyan-400);
  border-radius: 2px;
  transition: width 0.6s ease;
}

.why-eyebrow .eyebrow-text {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--cyan-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.why-title .highlight-cyan-gradient {
  background: linear-gradient(135deg, #00b4d8 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.why-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: #94a3b8;
  margin: 0 0 32px 0;
  max-width: 540px;
}

/* 4 Feature Cards Stack */
.why-features-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-feature-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 22px;
  background: rgba(6, 22, 45, 0.75);
  border: 1.5px solid rgba(0, 162, 232, 0.18);
  border-radius: 14px;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.why-feature-card:hover {
  background: linear-gradient(135deg, rgba(8, 32, 68, 0.95) 0%, rgba(4, 20, 44, 0.95) 100%);
  border-color: rgba(0, 180, 240, 0.55);
  transform: translateX(8px);
  box-shadow: 0 14px 32px rgba(0, 162, 232, 0.18), inset 0 0 15px rgba(0, 162, 232, 0.08);
}

.why-feat-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 162, 232, 0.12);
  border: 1.5px solid rgba(0, 162, 232, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d2ff;
  flex-shrink: 0;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.32s ease,
              box-shadow 0.32s ease,
              border-color 0.32s ease;
}

.why-feature-card:hover .why-feat-icon-box {
  transform: scale(1.12) rotate(-4deg);
  background: rgba(0, 162, 232, 0.25);
  border-color: #00d2ff;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
}

.why-feat-icon-box svg {
  width: 22px;
  height: 22px;
}

.why-feat-text {
  flex: 1;
}

.why-feat-title {
  font-size: 16.5px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.why-feature-card:hover .why-feat-title {
  color: #38bdf8;
}

.why-feat-desc {
  font-size: 13.5px;
  line-height: 1.45;
  color: #94a3b8;
  margin: 0;
  transition: color 0.25s ease;
}

.why-feature-card:hover .why-feat-desc {
  color: #cbd5e1;
}

/* Bottom Trust Stat Badges Row */
.why-trust-row {
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.28s ease;
}

.why-trust-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.03);
}

.why-trust-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 162, 232, 0.08);
  border: 1.5px solid rgba(0, 162, 232, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d2ff;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(0, 162, 232, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              background 0.3s ease,
              box-shadow 0.3s ease;
}

.why-trust-item:hover .why-trust-icon-box {
  transform: scale(1.08);
  border-color: #00d2ff;
  background: rgba(0, 162, 232, 0.22);
  box-shadow: 0 0 22px rgba(0, 210, 255, 0.45);
}

.why-trust-icon-box svg {
  width: 24px;
  height: 24px;
}

.why-trust-text {
  display: flex;
  flex-direction: column;
}

.why-trust-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.why-trust-desc {
  font-size: 13px;
  line-height: 1.4;
  color: #94a3b8;
}

/* ==========================================================================
   SCROLL REVEAL CASCADE ANIMATIONS FOR WHY CHOOSE US
   ========================================================================== */
.js-ready .why-media-card {
  opacity: 0;
  transform: perspective(1000px) rotateY(-4deg) translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js-ready .why-media-card.is-revealed {
  opacity: 1;
  transform: perspective(1000px) rotateY(0) translateY(0);
}

.js-ready .why-content-col {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  will-change: opacity, transform;
}

.js-ready .why-content-col.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Feature Cards Cascade */
.js-ready .why-feature-card {
  opacity: 0;
  transform: translateX(36px) scale(0.97);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.32s ease,
              border-color 0.32s ease,
              box-shadow 0.32s ease;
  will-change: opacity, transform;
}

.js-ready .why-feature-card.is-revealed {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.js-ready .why-feature-card[data-feature-index="0"] { transition-delay: 0.12s; }
.js-ready .why-feature-card[data-feature-index="1"] { transition-delay: 0.22s; }
.js-ready .why-feature-card[data-feature-index="2"] { transition-delay: 0.32s; }
.js-ready .why-feature-card[data-feature-index="3"] { transition-delay: 0.42s; }

/* Staggered Bottom Trust Items Cascade */
.js-ready .why-trust-row {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  will-change: opacity, transform;
}

.js-ready .why-trust-row.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .why-trust-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.28s ease;
  will-change: opacity, transform;
}

.js-ready .why-trust-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .why-trust-item[data-trust-index="0"] { transition-delay: 0.1s; }
.js-ready .why-trust-item[data-trust-index="1"] { transition-delay: 0.2s; }
.js-ready .why-trust-item[data-trust-index="2"] { transition-delay: 0.3s; }
.js-ready .why-trust-item[data-trust-index="3"] { transition-delay: 0.4s; }

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR WHY CHOOSE US
   ========================================================================== */
@media (max-width: 1080px) {
  .why-choose-section {
    padding: 85px 24px 75px 24px;
  }
  .why-main-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .why-media-card {
    width: 100%;
    max-width: 100%;
    height: 520px;
    border-radius: 20px;
  }
  .why-technician-img {
    object-position: center 25%;
  }
  .why-floating-badge {
    bottom: 24px;
    right: 24px;
    left: auto;
    width: auto;
    max-width: 320px;
    padding: 16px 22px;
  }
  .why-trust-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 52px;
    padding-top: 36px;
  }
  .why-trust-item {
    padding: 16px 16px;
    background: rgba(4, 20, 42, 0.45);
    border: 1px solid rgba(0, 162, 232, 0.12);
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 64px 16px 56px 16px;
  }
  .why-main-grid {
    gap: 36px;
  }
  .why-title {
    font-size: 34px;
    margin-bottom: 12px;
  }
  .why-desc {
    font-size: 14.5px;
    margin-bottom: 24px;
  }
  .why-media-card {
    width: 100%;
    height: 460px;
    border-radius: 18px;
  }
  .why-technician-img {
    object-position: center 24%;
  }
  .why-feature-card {
    padding: 15px 18px;
    gap: 15px;
  }
  .why-feat-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  .why-feat-title {
    font-size: 15.5px;
  }
  .why-feat-desc {
    font-size: 12.5px;
  }
  .why-trust-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 40px;
    padding-top: 28px;
  }
  .why-trust-item {
    padding: 14px 14px;
    background: rgba(4, 20, 42, 0.55);
    border: 1px solid rgba(0, 162, 232, 0.14);
    border-radius: 12px;
  }
  .why-trust-icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
  .why-trust-icon-box svg {
    width: 20px;
    height: 20px;
  }
  .why-trust-title {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .why-trust-desc {
    font-size: 11.5px;
    line-height: 1.35;
  }
}

@media (max-width: 600px) {
  .why-floating-badge {
    bottom: 14px;
    left: 14px;
    right: 14px;
    width: auto;
    max-width: none;
    padding: 14px 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(3, 16, 36, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(0, 195, 255, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 24px rgba(0, 162, 232, 0.3);
    animation: whyFloatBadgeMobile 4.5s ease-in-out infinite alternate;
  }
  .why-badge-glow-ring {
    border-radius: 14px;
  }
  @keyframes whyFloatBadgeMobile {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
  }
  .why-badge-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
  .why-badge-icon svg {
    width: 20px;
    height: 20px;
  }
  .why-badge-title {
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 2px 0;
  }
  .why-badge-desc {
    font-size: 11.5px;
    line-height: 1.35;
    color: #cbd5e1;
  }
}

@media (max-width: 480px) {
  .why-choose-section {
    padding: 54px 12px 48px 12px;
  }
  .why-title {
    font-size: 29px;
  }
  .why-media-card {
    height: 420px;
    border-radius: 16px;
  }
  .why-floating-badge {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 12px 14px;
    gap: 12px;
  }
  .why-badge-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
  .why-badge-icon svg {
    width: 18px;
    height: 18px;
  }
  .why-badge-title {
    font-size: 13.5px;
  }
  .why-badge-desc {
    font-size: 11px;
  }
  .why-trust-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .why-trust-item {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
  }
}

/* ==========================================================================
   SECTION 5: OUR LATEST ARTICLES (Insights, Tips & Security Updates)
   ========================================================================== */
.articles-section {
  position: relative;
  width: 100%;
  padding: 96px 24px 100px 24px;
  background: #ffffff;
  overflow: hidden;
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
}

/* Subtle decorative dot patterns */
.articles-dot-pattern {
  position: absolute;
  width: 48px;
  height: 180px;
  background-image: radial-gradient(circle, #cbd5e1 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.articles-dot-pattern-left {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.articles-dot-pattern-right {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.articles-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header Row */
.articles-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

.articles-header-left {
  display: flex;
  flex-direction: column;
}

.articles-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.articles-eyebrow .eyebrow-line {
  width: 44px;
  height: 3.5px;
  background-color: var(--cyan-500, #00a2e8);
  border-radius: 2px;
  flex-shrink: 0;
}

.articles-eyebrow .eyebrow-text {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--cyan-500, #00a2e8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.articles-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #041c3b;
  margin: 0;
}

.articles-header-right {
  flex-shrink: 0;
}

.btn-view-all-articles {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15.5px;
  font-weight: 750;
  color: #0077cc;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--cyan-500, #00a2e8);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-view-all-articles:hover {
  color: var(--cyan-500, #00a2e8);
  border-bottom-color: #0077cc;
}

.view-all-arrow {
  width: 16px;
  height: 16px;
  color: var(--cyan-500, #00a2e8);
  transition: transform 0.25s ease;
}

.btn-view-all-articles:hover .view-all-arrow {
  transform: translateX(4px);
}

/* 2-Column Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
}

/* Article Card */
.article-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform 0.35s ease;
}

.article-image-wrapper {
  position: relative;
  width: 100%;
  height: 330px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 12px 32px -10px rgba(4, 28, 59, 0.12), 0 2px 8px rgba(4, 28, 59, 0.04);
}

.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover .article-img {
  transform: scale(1.04);
}

.article-content {
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
}

.article-category {
  font-weight: 800;
  color: var(--cyan-500, #00a2e8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.meta-divider {
  color: #cbd5e1;
  font-weight: 300;
}

.article-date {
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-heading {
  font-size: 26px;
  font-weight: 850;
  line-height: 1.28;
  color: #041c3b;
  letter-spacing: -0.02em;
  margin: 0 0 12px 0;
}

.article-heading a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.article-card:hover .article-heading a,
.article-heading a:hover {
  color: var(--cyan-500, #00a2e8);
}

.article-excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
  margin: 0 0 20px 0;
}

.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 750;
  color: #041c3b;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--cyan-500, #00a2e8);
  align-self: flex-start;
  transition: all 0.25s ease;
}

.article-read-more svg {
  width: 15px;
  height: 15px;
  color: var(--cyan-500, #00a2e8);
  transition: transform 0.25s ease;
}

.article-card:hover .article-read-more,
.article-read-more:hover {
  color: var(--cyan-500, #00a2e8);
  border-bottom-color: #0077cc;
}

.article-card:hover .article-read-more svg,
.article-read-more:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   SCROLL REVEAL CASCADE FOR ARTICLES SECTION
   ========================================================================== */
.js-ready .articles-header-row,
.js-ready .article-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js-ready .article-card:nth-child(2) {
  transition-delay: 0.12s;
}

.js-ready .articles-header-row.is-revealed,
.js-ready .article-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR ARTICLES SECTION
   ========================================================================== */
@media (max-width: 992px) {
  .articles-section {
    padding: 72px 20px 76px 20px;
  }
  .articles-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
  }
  .articles-title {
    font-size: 34px;
  }
  .articles-grid {
    gap: 32px;
  }
  .article-image-wrapper {
    height: 280px;
  }
  .article-heading {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .articles-section {
    padding: 60px 16px;
  }
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .articles-title {
    font-size: 28px;
  }
  .article-image-wrapper {
    height: 240px;
  }
  .article-heading {
    font-size: 21px;
  }
  .articles-dot-pattern {
    display: none;
  }
}

@media (max-width: 580px) {
  .articles-section {
    padding: 48px 14px;
  }
  .articles-title {
    font-size: 24px;
  }
  .article-image-wrapper {
    height: 200px;
  }
  .article-heading {
    font-size: 19px;
  }
  .article-excerpt {
    font-size: 14px;
  }
}

/* ==========================================================================
   SECTION 6: HOW IT WORKS (Simple Process. Strong Protection.)
   ========================================================================== */
.how-it-works-section {
  position: relative;
  width: 100%;
  padding: 95px 24px 90px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  overflow: hidden;
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
}

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

.process-header-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 65px auto;
}

.process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--cyan-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.process-eyebrow-line {
  width: 24px;
  height: 2.5px;
  background: var(--cyan-500);
  border-radius: 2px;
}

.process-heading {
  font-size: 40px;
  font-weight: 900;
  color: var(--navy-heading);
  line-height: 1.16;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.process-heading-highlight {
  color: var(--cyan-500);
}

.process-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  margin: 0 auto;
}

/* 5 Connected Process Cards Track */
.process-steps-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
}

.process-card {
  flex: 1;
  max-width: 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 42px 20px 28px 20px;
  border: 1.5px solid #eef2f6;
  box-shadow: 0 4px 18px rgba(4, 28, 59, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 162, 232, 0.45);
  box-shadow: 0 16px 36px rgba(0, 162, 232, 0.12);
}

.process-icon-circle {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a2e8 0%, #0077b6 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 162, 232, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.process-card:hover .process-icon-circle {
  transform: translateX(-50%) scale(1.12);
  box-shadow: 0 12px 26px rgba(0, 162, 232, 0.5);
}

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

.process-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.process-number {
  font-size: 32px;
  font-weight: 900;
  color: #cbd5e1;
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.process-card:hover .process-number {
  color: rgba(0, 162, 232, 0.6);
}

.process-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-heading);
  line-height: 1.3;
  margin-bottom: 10px;
}

.process-card-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 22px;
  flex-grow: 1;
}

.process-card-bar {
  width: 32px;
  height: 3px;
  background: var(--cyan-500);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover .process-card-bar {
  width: 60px;
}

/* Connecting Arrow */
.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  margin: 0 2px;
  color: #cbd5e1;
}

.connector-line {
  flex: 1;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, #94a3b8 0, #94a3b8 4px, transparent 4px, transparent 8px);
}

.connector-arrow {
  width: 14px;
  height: 14px;
  color: #94a3b8;
  flex-shrink: 0;
  margin-left: -2px;
}

/* ==========================================================================
   SECTION 7: TRUSTED REVIEWS & TESTIMONIALS (What Our Clients Say) - BLUE THEME
   ========================================================================== */
.testimonials-section {
  position: relative;
  width: 100%;
  padding: 104px 24px 110px 24px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 162, 232, 0.14) 0%, transparent 65%), #041c3b;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.testi-bg-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 162, 232, 0.12) 0%, rgba(4, 28, 59, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.testi-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Top Header Row */
.testi-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 52px;
}

.testi-header-col {
  max-width: 680px;
}

.testi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testi-eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--cyan-400, #38bdf8);
  border-radius: 2px;
}

.testi-eyebrow-text {
  font-size: 13px;
  font-weight: 800;
  color: var(--cyan-400, #38bdf8);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testi-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 14px 0;
}

.testi-title-highlight {
  color: var(--cyan-400, #38bdf8);
}

.testi-cyan-dot {
  color: #00a2e8;
}

.testi-subtitle {
  font-size: 16.5px;
  line-height: 1.65;
  color: #94a3b8;
  margin: 0;
}

/* Top-Right 4.9/5 Average Rating Card (Box Style with 8px radius) */
.testi-rating-badge-card {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 22px 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  min-width: 320px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.testi-rating-badge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 162, 232, 0.5);
  box-shadow: 0 22px 50px rgba(0, 162, 232, 0.22);
}

.rating-badge-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.rating-shield-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rating-score-block {
  display: flex;
  flex-direction: column;
}

.rating-number {
  font-size: 28px;
  font-weight: 900;
  color: #041c3b;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.rating-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #64748b;
  margin-top: 1px;
}

.rating-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
  margin-top: 3px;
}

.rating-badge-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}

/* Reviews Slider Outer */
.testi-slider-outer {
  width: 100%;
  position: relative;
}

.testi-slider-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 12px 4px 20px 4px;
  cursor: grab;
  user-select: none;
}

.testi-slider-viewport:active {
  cursor: grabbing;
}

.testi-slider-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Review Card (Box Style with 8px radius) */
.testi-card {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 30px 26px 26px 26px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 162, 232, 0.5);
  box-shadow: 0 24px 50px rgba(0, 162, 232, 0.2);
}

.testi-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.testi-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}

.testi-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  color: #1e293b;
  font-size: 12px;
  font-weight: 750;
  padding: 5px 11px;
  border-radius: 6px;
  border: 1.5px solid #e2e8f0;
}

.testi-verified-badge .google-icon-svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.testi-quote {
  font-size: 14.5px;
  line-height: 1.65;
  color: #334155;
  margin: 0 0 22px 0;
  flex: 1;
}

.testi-divider {
  width: 100%;
  height: 1px;
  background: #f1f5f9;
  margin-bottom: 18px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  font-size: 14px;
  flex-shrink: 0;
}

.avatar-blue { background: #e0f2fe; color: #0077cc; }
.avatar-cyan { background: #ecfeff; color: #0891b2; }
.avatar-navy { background: #e2e8f0; color: #1e293b; }
.avatar-teal { background: #ccfbf1; color: #0d9488; }
.avatar-coral { background: #ffedd5; color: #c2410c; }

.testi-author-info {
  display: flex;
  flex-direction: column;
}

.testi-author-name {
  font-size: 15px;
  font-weight: 800;
  color: #041c3b;
  line-height: 1.2;
}

.testi-author-role {
  font-size: 12.5px;
  color: #64748b;
  margin-top: 2px;
}

/* Slider Navigation Row */
.testi-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}

.testi-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.testi-arrow-btn svg {
  width: 20px;
  height: 20px;
}

.testi-arrow-btn:hover:not(:disabled) {
  background: var(--cyan-500);
  color: #ffffff;
  border-color: var(--cyan-500);
  box-shadow: 0 0 24px rgba(0, 162, 232, 0.45);
  transform: translateY(-2px);
}

.testi-arrow-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.testi-dots-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  padding: 0;
}

.testi-dot.active {
  width: 28px;
  border-radius: 3px;
  background: var(--cyan-400, #38bdf8);
}

/* Brands Section Outside Marquee Header */
.brands-marquee-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  text-align: center;
}

.marquee-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.marquee-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--cyan-400, #38bdf8);
  border-radius: 2px;
  flex-shrink: 0;
}

.marquee-eyebrow-text {
  font-size: 13px;
  font-weight: 850;
  color: var(--cyan-400, #38bdf8);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(0, 162, 232, 0.4);
}

/* ==========================================================================
   SECTION 8: TRUSTED SECURITY BRANDS & PARTNERS (DARK THEME)
   ========================================================================== */
.brands-partners-section,
#brands {
  position: relative;
  width: 100%;
  padding: 72px 24px 96px 24px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 162, 232, 0.12) 0%, transparent 65%), #04142a;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  scroll-margin-top: 90px;
}

.brands-partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 162, 232, 0.08) 0%, rgba(4, 20, 42, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.brands-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* 1. Real Brand Logos Infinite Marquee Strip */
.brands-marquee-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.marquee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--cyan-500) 0%, #0077a8 100%);
  color: #ffffff;
  padding: 0 22px;
  height: 56px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 162, 232, 0.35);
}

.marquee-badge-icon {
  width: 16px;
  height: 16px;
  color: #ffffff;
}

.marquee-scroll-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: brandMarqueeScroll 42s linear infinite;
  will-change: transform;
}

.marquee-scroll-viewport:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes brandMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-brand-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 24px;
  border-radius: 6px;
  min-width: 140px;
  height: 56px;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.marquee-brand-item:hover {
  border-color: var(--cyan-400);
  box-shadow: 0 6px 20px rgba(0, 162, 232, 0.4);
  transform: translateY(-2px);
}

/* 2. Main Open Brands Layout */
.brands-open-layout {
  display: grid;
  grid-template-columns: 1fr 1.38fr;
  gap: 52px;
  align-items: flex-start;
  position: relative;
}

/* Left: Brand Info & Trust Badges */
.brands-info-col {
  display: flex;
  flex-direction: column;
}

.brands-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.brands-eyebrow-line {
  width: 36px;
  height: 3px;
  background: var(--cyan-400, #38bdf8);
  border-radius: 2px;
  flex-shrink: 0;
}

.brands-eyebrow-text {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--cyan-400, #38bdf8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brands-heading {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin: 0 0 16px 0;
}

.brands-heading .highlight-cyan {
  background: linear-gradient(135deg, #00a2e8 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.brands-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: #94a3b8;
  margin: 0 0 28px 0;
  max-width: 520px;
}

.brands-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #00a2e8 0%, #0077aa 100%);
  color: #ffffff;
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  text-decoration: none;
  margin-bottom: 36px;
  align-self: flex-start;
  box-shadow: 0 4px 18px rgba(0, 162, 232, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.brands-cta-btn:hover {
  background: linear-gradient(135deg, #0284c7 0%, #00a2e8 100%);
  border-color: var(--cyan-400, #38bdf8);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 162, 232, 0.55);
}

.brands-cta-btn .btn-arrow-icon {
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}

.brands-cta-btn:hover .btn-arrow-icon {
  transform: translateX(4px);
}

/* Bottom Trust Row */
.brands-trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-trust-pill {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.brand-trust-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 162, 232, 0.4);
  box-shadow: 0 8px 24px rgba(0, 162, 232, 0.15);
  transform: translateY(-2px);
}

.trust-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(0, 162, 232, 0.18);
  color: var(--cyan-400, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.trust-icon-wa {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.trust-pill-text {
  display: flex;
  flex-direction: column;
}

.trust-pill-text strong {
  font-size: 14px;
  font-weight: 850;
  color: #ffffff;
  line-height: 1.1;
}

.trust-pill-text span {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  line-height: 1.2;
}

/* Right: 14 Brand Cards Grid */
.brands-grid-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.brand-card {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 16px 12px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  text-align: center;
  cursor: default;
}

.brand-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--cyan-400);
  box-shadow: 0 12px 30px rgba(0, 162, 232, 0.35);
  background: #ffffff;
}

/* Brand Specific SVG & Typography Styles */
.brand-logo-hikvision .hikvision-text {
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: #d32f2f;
  letter-spacing: 0.6px;
}

.brand-logo-dahua {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-logo-dahua .dahua-emblem {
  display: inline-flex;
  align-items: center;
  gap: 1.5px;
}

.brand-logo-dahua .dahua-circle-a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #d32f2f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: lowercase;
}

.brand-logo-dahua .dahua-lhua {
  font-weight: 900;
  font-size: 17px;
  color: #111827;
  letter-spacing: -0.3px;
  line-height: 1;
}

.brand-logo-dahua .dahua-sub {
  font-size: 6.5px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.brand-logo-ajax .ajax-text {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #000000;
  letter-spacing: 3.5px;
}

.brand-logo-bosch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-logo-bosch .bosch-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.brand-logo-bosch .bosch-text {
  font-weight: 900;
  font-size: 17px;
  color: #d32f2f;
  letter-spacing: 0.8px;
}

.brand-logo-aiphone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.brand-logo-aiphone .aiphone-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.brand-logo-aiphone .aiphone-text {
  font-weight: 850;
  font-size: 15px;
  color: #005baa;
  letter-spacing: 0.5px;
}

.brand-logo-axis {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-logo-axis .axis-top-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-logo-axis .axis-text {
  font-weight: 900;
  font-size: 16px;
  color: #000000;
  letter-spacing: 0.8px;
}

.brand-logo-axis .axis-triangle-badge {
  color: #ffcc00;
  font-size: 12px;
  line-height: 1;
}

.brand-logo-axis .axis-sub-text {
  font-size: 6.5px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: 1.4px;
}

.brand-logo-hanwha {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.brand-logo-hanwha .hanwha-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.brand-logo-hanwha .hanwha-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.brand-logo-hanwha .hanwha-main {
  font-size: 14.5px;
  font-weight: 850;
  color: #111827;
  line-height: 1;
}

.brand-logo-hanwha .hanwha-sub {
  font-size: 10.5px;
  font-weight: 600;
  color: #64748b;
  line-height: 1;
}

.brand-logo-uniview .uniview-text {
  font-size: 18px;
  font-weight: 800;
  color: #0077cc;
  letter-spacing: -0.2px;
}

.brand-logo-paxton {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.brand-logo-paxton .paxton-icon {
  width: 18px;
  height: 18px;
}

.brand-logo-paxton .paxton-text {
  font-size: 16.5px;
  font-weight: 850;
  color: #111827;
}

.brand-logo-akuvox {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-logo-akuvox .akuvox-main {
  font-size: 17px;
  font-weight: 900;
  color: #0a2540;
  line-height: 1.1;
}

.brand-logo-akuvox .akuvox-sub {
  font-size: 7.5px;
  font-weight: 700;
  color: #64748b;
  margin-top: 1px;
}

.brand-logo-2n .twon-box {
  display: inline-block;
  background: #005baa;
  color: #ffffff;
  font-weight: 900;
  font-size: 15px;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.brand-logo-ubiquiti {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.brand-logo-ubiquiti .ubiquiti-icon {
  width: 20px;
  height: 20px;
  color: #111827;
}

.brand-logo-ubiquiti .ubiquiti-text {
  font-size: 13.5px;
  font-weight: 900;
  color: #111827;
  letter-spacing: 0.6px;
}

.brand-logo-innerrange {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.brand-logo-innerrange .ir-badge {
  display: inline-flex;
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
}

.brand-logo-innerrange .ir-i {
  color: #d32f2f;
}

.brand-logo-innerrange .ir-r {
  color: #111827;
}

.brand-logo-innerrange .ir-text {
  font-size: 13.5px;
  font-weight: 800;
  color: #111827;
}

.brand-logo-milestone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.brand-logo-milestone .milestone-diamond {
  width: 18px;
  height: 18px;
}

.brand-logo-milestone .milestone-text {
  font-size: 15.5px;
  font-weight: 850;
  color: #0088cc;
}

.brand-logo-client {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-logo-client .client-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.brand-logo-client .client-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13.5px;
  color: #0f172a;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* ==========================================================================
   SECTION 9: PRE-FOOTER CALL TO ACTION (CTA)
   ========================================================================== */
.pre-footer-cta-section {
  position: relative;
  width: 100%;
  padding: 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}

.cta-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.cta-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
  width: 100%;
}

.cta-card-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  align-items: stretch;
  min-height: 580px;
  position: relative;
}

/* Left Media Column - 100% Full Fill Edge-to-Edge */
.cta-media-col {
  position: relative;
  height: 100%;
  min-height: 100%;
  width: 100%;
  display: flex;
}

.cta-image-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: none;
  box-shadow: none;
}

.cta-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-media-col:hover .cta-main-img {
  transform: scale(1.03);
}

/* Right Content Column */
.cta-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(36px, 5.5vw, 90px);
  background: #ffffff;
}

/* Eyebrow matching Hero section */
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.cta-eyebrow .eyebrow-line {
  width: 44px;
  height: 3.5px;
  background-color: var(--cyan-500, #00a2e8);
  border-radius: 2px;
  flex-shrink: 0;
}

.cta-eyebrow .eyebrow-text {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--cyan-500, #00a2e8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Headline matching Hero section */
.cta-heading {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.14;
  color: var(--navy-heading, #041c3b);
  letter-spacing: -0.035em;
  margin: 0 0 18px 0;
}

.cta-heading .headline-peace {
  background: linear-gradient(135deg, #00a2e8 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.cta-heading .highlight-cyan {
  color: var(--cyan-500, #00a2e8);
  -webkit-text-fill-color: initial;
}

.cta-subtext {
  font-size: 15.5px;
  line-height: 1.68;
  color: #475569;
  margin: 0 0 26px 0;
}

/* Key Checklist */
.cta-checklist {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 30px;
}

.cta-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 650;
  color: #1e293b;
}

.cta-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-check-icon svg {
  width: 15px;
  height: 15px;
}

/* Action Buttons */
.cta-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--cyan-500, #00a2e8) 0%, #0284c7 100%);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 162, 232, 0.32);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1.5px solid rgba(56, 189, 248, 0.4);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 162, 232, 0.5);
  background: linear-gradient(135deg, #0284c7 0%, var(--cyan-500, #00a2e8) 100%);
}

.btn-cta-primary svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}

.btn-cta-primary:hover svg {
  transform: translateX(4px);
}

.btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  background: #ffffff;
  color: var(--navy-900, #041c3b);
  border: 1.5px solid var(--navy-900, #041c3b);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(4, 28, 59, 0.05);
}

.btn-cta-phone:hover {
  background: var(--navy-900, #041c3b);
  color: #ffffff;
  border-color: var(--navy-900, #041c3b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 28, 59, 0.18);
}

.btn-phone-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.btn-cta-phone:hover .btn-phone-icon-wrap {
  background: var(--cyan-500, #00a2e8);
  color: #ffffff;
}

.btn-phone-icon-wrap svg {
  width: 16px;
  height: 16px;
}

.btn-phone-content {
  display: flex;
  flex-direction: column;
}

.btn-phone-label {
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 2px;
  transition: color 0.25s ease;
}

.btn-cta-phone:hover .btn-phone-label {
  color: rgba(255, 255, 255, 0.75);
}

.btn-phone-number {
  font-size: 15px;
  font-weight: 900;
  color: inherit;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.cta-micro-note {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   SECTION 10: GLOBAL WEBSITE FOOTER
   ========================================================================== */
.site-footer {
  position: relative;
  width: 100%;
  padding: 92px 24px 38px 24px;
  background: #020914;
  color: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(0, 162, 232, 0.16);
}

.footer-bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 162, 232, 0.08) 0%, rgba(2, 9, 20, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* 5-Column Navigation Grid */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.15fr 1fr 1.35fr;
  gap: 40px;
  margin-bottom: 64px;
}

.footer-col-brand .footer-brand-link,
.footer-col-brand .footer-logo-link {
  display: inline-block;
  margin-bottom: 4px;
}

.footer-logo-img {
  height: 102px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease;
}

.footer-brand-link:hover .footer-logo-img,
.footer-logo-link:hover .footer-logo-img {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 16px rgba(0, 180, 216, 0.45));
}

.footer-brand-bio,
.footer-brand-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #94a3b8;
  margin: -8px 0 22px 0;
  max-width: 320px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(4, 20, 42, 0.85);
  border: 1.5px solid rgba(0, 162, 232, 0.35);
  color: #00d2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(0, 162, 232, 0.12);
}

.footer-social-btn svg {
  width: 17px;
  height: 17px;
}

.footer-social-btn:hover {
  transform: translateY(-4px);
  background: #0088cc;
  color: #ffffff;
  border-color: #00d2ff;
  box-shadow: 0 0 22px rgba(0, 210, 255, 0.5);
}

/* Accreditation Badges in Footer */
.footer-license-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(13, 95, 168, 0.15);
  border: 1px solid rgba(30, 182, 213, 0.25);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
  width: fit-content;
}

.footer-shield-icon,
.footer-badge-pill svg {
  width: 15px;
  height: 15px;
  color: #1EB6D5;
  flex-shrink: 0;
}

/* Footer Column Headers & Underlines */
.footer-col-title {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.footer-col-line {
  display: block;
  width: 36px;
  height: 2.5px;
  background: #0088cc;
  border-radius: 2px;
  margin-bottom: 22px;
}

/* Link Lists */
.footer-link-list,
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-chevron {
  font-size: 12px;
  font-weight: 800;
  color: #0088cc;
  transition: transform 0.25s ease, color 0.25s ease;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-link:hover .footer-chevron {
  color: #00d2ff;
  transform: translateX(2px);
}

/* Contact Column */
.footer-col-contact .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  color: #00a2e8;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
}

.footer-contact-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: #94a3b8;
}

.footer-phone-link,
.footer-email-link,
.footer-contact-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-phone-link:hover,
.footer-email-link:hover,
.footer-contact-link:hover {
  color: #00d2ff;
  text-decoration: underline;
}

.footer-hours-badge {
  display: block;
  font-size: 11.5px;
  color: #1EB6D5;
  font-weight: 600;
  margin-top: 3px;
}

/* Bottom Legal & Attribution Row */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #94a3b8;
}

.footer-copyright {
  color: #94a3b8;
  margin: 0;
  font-size: 13px;
}

.footer-legal-links,
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal-links a,
.footer-bottom-links a,
.footer-legal-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover,
.footer-bottom-links a:hover,
.footer-legal-link:hover {
  color: #00d2ff;
}

.footer-legal-sep {
  color: #334155;
}

/* ==========================================================================
   SECTION 8: FREQUENTLY ASKED QUESTIONS (FAQS)
   ========================================================================== */
.faqs-section {
  padding: 90px 24px 85px 24px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

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

.faq-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.32fr;
  gap: 60px;
  align-items: flex-start;
}

/* --- Left Column: Info, Support Card & Trust Points --- */
.faq-info-col {
  display: flex;
  flex-direction: column;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--cyan-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.faq-eyebrow-line {
  width: 24px;
  height: 2.5px;
  background: var(--cyan-500);
  border-radius: 2px;
}

.faq-heading {
  font-size: 40px;
  font-weight: 900;
  color: var(--navy-heading);
  line-height: 1.16;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.faq-heading span {
  color: var(--cyan-500);
}

.faq-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 32px;
}

/* Still Have Questions Support Card (Clean White/Light Theme matching Reference Mockup) */
.faq-support-card {
  background-color: #ffffff;
  background-image: radial-gradient(rgba(148, 163, 184, 0.45) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  background-position: right 14px center;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 6px 24px rgba(4, 28, 59, 0.04);
  border: 1.5px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.faq-support-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff 80%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.support-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e8f4fc;
  color: var(--cyan-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  transition: transform 0.25s ease, background 0.25s ease;
}

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

.faq-support-card:hover .support-icon-circle {
  transform: scale(1.06);
  background: rgba(0, 162, 232, 0.2);
}

.support-card-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--navy-heading);
  margin-bottom: 8px;
  line-height: 1.25;
  position: relative;
  z-index: 2;
}

.support-card-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.btn-support-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  background: var(--navy-heading);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(4, 28, 59, 0.15);
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.btn-support-contact:hover {
  background: var(--cyan-500);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 162, 232, 0.35);
}

.btn-support-contact svg {
  width: 16px;
  height: 16px;
}

/* 3 Trust Features Grid */
.faq-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.faq-trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.faq-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8f4fc;
  color: var(--cyan-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}

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

.faq-trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy-heading);
  margin-bottom: 4px;
}

.faq-trust-text p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

/* --- Right Column: Interactive Accordion List --- */
.faq-accordion-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.faq-item.active {
  border-color: var(--cyan-500);
  border-left: 3.5px solid var(--cyan-500);
  box-shadow: 0 4px 16px rgba(0, 162, 232, 0.08);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
  user-select: none;
}

.faq-btn:focus-visible {
  outline: 2px solid var(--cyan-500);
  outline-offset: -2px;
}

.faq-toggle-circle {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(0, 162, 232, 0.08);
  color: var(--cyan-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-toggle-circle {
  background: var(--cyan-500);
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-icon-minus {
  display: none;
  line-height: 1;
}

.faq-icon-plus {
  display: block;
  line-height: 1;
}

.faq-item.active .faq-icon-minus {
  display: block;
}

.faq-item.active .faq-icon-plus {
  display: none;
}

.faq-question-title {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-heading);
  line-height: 1.4;
  letter-spacing: -0.15px;
  transition: color 0.2s ease;
}

.faq-item.active .faq-question-title {
  color: var(--cyan-600, #0084b4);
}

.faq-chevron {
  width: 17px;
  height: 17px;
  color: #94a3b8;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--cyan-500);
}

/* CSS Grid Smooth Expanding Panel Animation with absolute zero bleed when closed */
.faq-answer-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer-panel {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.faq-item.active .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer-inner p {
  margin: 0 20px 16px 20px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  background: #f8fafc;
  border-radius: 6px;
  border-left: 3px solid var(--cyan-500);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR PROCESS, TESTIMONIALS, BRANDS & FOOTER
   ========================================================================== */
@media (max-width: 1200px) {
  .process-card {
    max-width: 195px;
    padding: 38px 14px 24px 14px;
  }
  .brands-open-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 36px;
  }
  .brands-grid-col {
    grid-template-columns: repeat(3, 1fr);
  }
  .faq-layout-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
  }
  .footer-main-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
  .footer-col-brand {
    grid-column: span 3;
    max-width: 500px;
  }
}

@media (max-width: 992px) {
  .testi-header-row {
    flex-direction: column;
    gap: 28px;
  }
  .testi-rating-badge-card {
    width: 100%;
    max-width: 360px;
  }
  .testi-card {
    flex: 0 0 calc((100% - 28px) / 2);
  }
  .brands-open-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .brands-heading {
    font-size: 32px;
  }
  .brands-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .brands-grid-col {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  
  /* FAQs 992px */
  .faq-layout-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .faq-heading {
    font-size: 34px;
  }
  .faq-support-card {
    max-width: 540px;
  }
  .faq-trust-grid {
    max-width: 540px;
  }

  /* Pre-Footer CTA 992px */
  .pre-footer-cta-section {
    padding: 0;
  }
  .cta-card-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cta-media-col {
    min-height: 380px;
    height: 400px;
    width: 100%;
  }
  .cta-content-col {
    padding: 54px 32px;
    max-width: 100%;
  }
  .cta-heading {
    font-size: 34px;
  }

  .footer-main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer-col-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 68px 16px 60px 16px;
  }
  .testi-header-row {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 36px;
  }
  .testi-title {
    font-size: 32px;
  }
  .testi-subtitle {
    font-size: 14.5px;
  }
  .testi-rating-badge-card {
    min-width: 0;
    width: 100%;
    padding: 18px 20px;
  }
  .testi-card {
    flex: 0 0 100%;
    padding: 24px 20px 22px 20px;
    min-height: auto;
  }

  .brands-partners-section {
    padding: 36px 16px 60px 16px;
  }
  .brands-marquee-header {
    margin-bottom: 16px;
  }
  .marquee-eyebrow-text {
    font-size: 11.5px;
    letter-spacing: 0.1em;
  }
  .marquee-eyebrow-line {
    width: 20px;
  }
  .brands-marquee-strip {
    border-radius: 8px;
    padding: 8px 10px;
    gap: 12px;
    margin-bottom: 36px;
  }
  .marquee-badge {
    padding: 0 14px;
    height: 46px;
    border-radius: 6px;
    font-size: 11.5px;
  }
  .marquee-brand-item {
    height: 46px;
    min-width: 115px;
    padding: 8px 16px;
    border-radius: 6px;
  }
  .brands-open-layout {
    gap: 28px;
  }
  .brands-heading {
    font-size: 26px;
  }
  .brands-desc {
    font-size: 13.5px;
    margin-bottom: 20px;
  }
  .brands-cta-btn {
    margin-bottom: 26px;
  }
  .brands-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .brand-trust-pill {
    width: 100%;
    padding: 10px 12px;
  }
  .brands-grid-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .brand-card {
    min-height: 72px;
    padding: 14px 8px;
  }

  /* FAQs 768px */
  .faqs-section {
    padding: 64px 16px 54px 16px;
  }
  .faq-heading {
    font-size: 28px;
  }
  .faq-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .faq-support-card {
    padding: 22px 20px;
    max-width: 100%;
    margin-bottom: 22px;
  }
  .faq-trust-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 100%;
  }
  .faq-trust-item {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
  }
  .faq-btn {
    padding: 14px 16px;
    gap: 12px;
  }
  .faq-toggle-circle {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
  .faq-question-title {
    font-size: 14px;
  }
  .faq-answer-inner p {
    margin: 0 16px 14px 16px;
    padding: 12px 14px;
    font-size: 13.5px;
  }

  /* Pre-Footer CTA 768px */
  .pre-footer-cta-section {
    padding: 0;
  }
  .cta-heading {
    font-size: 28px;
  }
  .cta-eyebrow .eyebrow-text {
    font-size: 13.5px;
  }
  .cta-eyebrow .eyebrow-line {
    width: 32px;
  }
  .cta-media-col {
    min-height: 320px;
    height: 340px;
    width: 100%;
  }
  .cta-content-col {
    padding: 44px 20px;
  }

  .site-footer {
    padding: 64px 16px 36px 16px;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-col-brand {
    grid-column: span 1;
  }
  .footer-logo-img {
    height: 84px;
    max-width: 260px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .footer-legal-links {
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .brands-trust-row {
    grid-template-columns: 1fr;
  }
  .faq-btn {
    padding: 12px 14px;
    gap: 10px;
  }
  .faq-question-title {
    font-size: 13.5px;
  }
  .faq-answer-inner p {
    margin: 0 14px 12px 14px;
    padding: 10px 12px;
    font-size: 13px;
  }

  /* Pre-Footer CTA 580px */
  .pre-footer-cta-section {
    padding: 0;
  }
  .cta-actions-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .btn-cta-primary,
  .btn-cta-phone {
    width: 100%;
    justify-content: center;
  }
  .cta-heading {
    font-size: 24px;
  }
  .cta-media-col {
    min-height: 260px;
    height: 280px;
    width: 100%;
  }
  .cta-content-col {
    padding: 36px 16px;
  }
}

/* Scroll Reveal Cascade for All Sections */
.js-ready .testi-header-row,
.js-ready .brands-marquee-header,
.js-ready .brands-marquee-strip,
.js-ready .brands-open-layout,
.js-ready .faq-info-col,
.js-ready .faq-accordion-col,
.js-ready .cta-media-col,
.js-ready .cta-content-col,
.js-ready .footer-main-grid {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js-ready .faq-accordion-col,
.js-ready .cta-content-col {
  transition-delay: 0.12s;
}

.js-ready .testi-slider-outer {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
  will-change: opacity, transform;
}

.js-ready .testi-header-row.is-revealed,
.js-ready .testi-slider-outer.is-revealed,
.js-ready .brands-marquee-header.is-revealed,
.js-ready .brands-marquee-strip.is-revealed,
.js-ready .brands-open-layout.is-revealed,
.js-ready .faq-info-col.is-revealed,
.js-ready .faq-accordion-col.is-revealed,
.js-ready .cta-media-col.is-revealed,
.js-ready .cta-content-col.is-revealed,
.js-ready .footer-main-grid.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   ABOUT PAGE DESIGN SYSTEM (WA CENTRAL SECURITY)
   ========================================================================== */

:root {
  --ab-navy-deep: #071B2E;
  --ab-navy-dark: #041322;
  --ab-trust-blue: #0D5FA8;
  --ab-electric-blue: #0075D9;
  --ab-tech-cyan: #1EB6D5;
  --ab-heading: #172B3A;
  --ab-body: #647583;
  --ab-muted: #84929D;
  --ab-bg-light: #F5F8FA;
  --ab-soft-blue: #EDF5FC;
  --ab-border: #D6E0E6;
}

.about-page,
.contact-page {
  background-color: #FFFFFF;
  color: var(--ab-body);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: clip;
}

.about-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

/* Typography Base */
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ab-tech-cyan);
  margin-bottom: 16px;
}

.about-eyebrow-blue {
  color: var(--ab-trust-blue);
}

.about-highlight-cyan {
  color: var(--ab-tech-cyan);
}

/* ==========================================================================
   SECTION 01: ABOUT HERO & BREADCRUMB
   ========================================================================== */
.about-hero-section {
  position: relative;
  min-height: auto;
  background-color: #041322;
  background-image: 
    radial-gradient(circle at 85% 30%, rgba(30, 182, 213, 0.22) 0%, rgba(13, 95, 168, 0.08) 45%, transparent 75%),
    linear-gradient(90deg, rgba(4, 19, 34, 0.98) 0%, rgba(4, 19, 34, 0.88) 38%, rgba(7, 27, 46, 0.35) 75%, rgba(7, 27, 46, 0.08) 100%), 
    url('assets/about-hero-photo.webp');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 68px 0 60px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero-grid {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}

.about-hero-content {
  max-width: 640px;
  text-align: left;
}

/* Breadcrumb - Sleek Homepage Pill */
.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 5px 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: heroFadeInUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.about-breadcrumb a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.about-breadcrumb a:hover {
  color: var(--ab-tech-cyan);
}

.breadcrumb-home-icon {
  width: 12px;
  height: 12px;
  opacity: 0.85;
}

.about-breadcrumb .breadcrumb-separator {
  color: var(--ab-tech-cyan);
  font-size: 11px;
  font-weight: 700;
}

.about-breadcrumb .breadcrumb-current {
  color: #FFFFFF;
  font-weight: 700;
}

/* Eyebrow - Homepage Style */
.about-hero-eyebrow {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.about-hero-eyebrow .eyebrow-line {
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--ab-tech-cyan), var(--ab-electric-blue));
  border-radius: 2px;
}

.about-hero-eyebrow .eyebrow-text {
  font-family: 'Manrope', 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ab-tech-cyan);
  text-transform: uppercase;
}

/* Headline */
.about-hero-title {
  font-family: 'Manrope', 'Plus Jakarta Sans', sans-serif;
  font-size: 38px;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin: 0 0 14px 0;
  animation: heroFadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.about-hero-title .headline-peace {
  background: linear-gradient(135deg, #1EB6D5 0%, #0075D9 50%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Description */
.about-hero-desc {
  font-size: 15.5px;
  font-weight: 450;
  line-height: 1.62;
  color: #CBD5E1;
  margin: 0 0 24px 0;
  max-width: 580px;
  animation: heroFadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

/* Actions - Left Aligned Group */
.about-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.36s both;
}

.about-hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 26px;
  background: linear-gradient(135deg, var(--ab-trust-blue) 0%, var(--ab-electric-blue) 100%);
  color: #FFFFFF !important;
  font-family: 'Manrope', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid rgba(30, 182, 213, 0.4);
  box-shadow: 0 6px 20px rgba(13, 95, 168, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  flex-shrink: 0;
}

.about-hero-cta-btn:hover {
  background: linear-gradient(135deg, var(--ab-electric-blue) 0%, var(--ab-tech-cyan) 100%);
  border-color: var(--ab-tech-cyan);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30, 182, 213, 0.45);
  color: #FFFFFF !important;
}

.about-hero-cta-btn:hover .btn-arrow-icon {
  transform: translateX(4px);
}

/* High-Tech Glass Badge in Actions Container */
.about-hero-badge-pillar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(4, 19, 34, 0.65);
  border: 1px solid rgba(30, 182, 213, 0.25);
  border-radius: 8px;
  padding: 9px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.about-hero-badge-pillar:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 182, 213, 0.6);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 16px rgba(30, 182, 213, 0.25);
}

.about-badge-shield-icon {
  width: 20px;
  height: 20px;
  color: var(--ab-tech-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-badge-shield-icon svg {
  width: 18px;
  height: 18px;
}

.about-badge-line {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, var(--ab-tech-cyan), rgba(30, 182, 213, 0.15));
  border-radius: 1px;
}

.about-badge-tags {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.about-badge-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E2E8F0;
  line-height: 1.25;
}

.about-badge-tags .about-badge-tag:last-child {
  color: #94A3B8;
}

/* ==========================================================================
   SECTION 02: ABOUT WA CENTRAL SECURITY (WHO WE ARE)
   ========================================================================== */
.about-who-section {
  padding: 110px 0 116px 0;
  background-color: #FFFFFF;
  position: relative;
}

.about-who-grid {
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 72px;
  align-items: center;
}

.about-who-img-wrap {
  position: relative;
}

.who-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(7, 27, 46, 0.14);
  border: 1px solid rgba(214, 224, 230, 0.85);
  background: #FFFFFF;
}

.about-who-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.who-img-frame:hover .about-who-img {
  transform: scale(1.03);
}

/* Floating Badges */
.who-float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(13, 95, 168, 0.2);
  border-radius: 12px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 32px rgba(7, 27, 46, 0.16);
  z-index: 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-float-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(7, 27, 46, 0.22);
}

.who-float-top {
  top: 20px;
  right: 20px;
}

.who-badge-shield-icon {
  width: 22px;
  height: 22px;
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.who-badge-shield-icon svg {
  width: 20px;
  height: 20px;
}

.who-badge-text-group {
  display: flex;
  flex-direction: column;
}

.who-badge-text-group strong {
  font-family: 'Manrope', sans-serif;
  font-size: 11.5px;
  font-weight: 850;
  letter-spacing: 0.08em;
  color: var(--ab-heading);
}

.who-badge-text-group span {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ab-trust-blue);
  letter-spacing: 0.02em;
}

.about-who-content {
  display: flex;
  flex-direction: column;
}

.about-heading-h2 {
  font-family: 'Manrope', 'Plus Jakarta Sans', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ab-heading);
  margin: 0 0 20px 0;
}

.who-highlight {
  background: linear-gradient(135deg, var(--ab-trust-blue) 0%, var(--ab-electric-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.about-body-lead {
  font-size: 17px;
  line-height: 1.7;
  color: #4A5B69;
  margin: 0 0 14px 0;
}

.about-body-sub {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ab-body);
  margin: 0 0 32px 0;
}

/* 3 Modern Feature Cards Stack */
.about-who-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.who-feature-card {
  background: #FFFFFF;
  border: 1px solid var(--ab-border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(7, 27, 46, 0.04);
}

.who-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 95, 168, 0.4);
  background: rgba(237, 245, 252, 0.5);
  box-shadow: 0 12px 28px rgba(13, 95, 168, 0.1);
}

.who-card-glow-edge {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--ab-trust-blue), var(--ab-tech-cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.who-feature-card:hover .who-card-glow-edge {
  opacity: 1;
}

.who-card-icon-box {
  width: 44px;
  height: 44px;
  background: var(--ab-soft-blue);
  border: 1px solid rgba(13, 95, 168, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ab-trust-blue);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.who-card-icon-box svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.who-feature-card:hover .who-card-icon-box {
  background: linear-gradient(135deg, var(--ab-trust-blue), var(--ab-tech-cyan));
  color: #FFFFFF;
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(13, 95, 168, 0.25);
}

.who-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.who-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.who-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 16.5px;
  font-weight: 800;
  color: var(--ab-heading);
  margin: 0;
}

.who-card-num {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #94A3B8;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.who-feature-card:hover .who-card-num {
  color: var(--ab-trust-blue);
}

.who-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ab-body);
  margin: 0 0 10px 0;
}

.who-card-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.who-micro-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ab-trust-blue);
}

/* Quick Trust Strip */
.who-trust-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  background: var(--ab-bg-light);
  border: 1px solid var(--ab-border);
  border-radius: 12px;
  flex-wrap: wrap;
}

.who-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 750;
  color: var(--ab-heading);
}

.who-trust-item svg {
  width: 17px;
  height: 17px;
  color: var(--ab-trust-blue);
  flex-shrink: 0;
}

.who-trust-sep {
  width: 1px;
  height: 18px;
  background: var(--ab-border);
}

/* ==========================================================================
   SECTION 03: MISSION + VISION + VALUES (REDESIGNED)
   ========================================================================== */
.about-mission-section {
  padding: 104px 0;
  background-color: var(--ab-bg-light);
  border-top: 1px solid var(--ab-border);
  border-bottom: 1px solid var(--ab-border);
}

.mission-header-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 48px;
}

.mission-header-left {
  display: flex;
  flex-direction: column;
}

.mission-values-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: #FFFFFF;
  border: 1.5px solid var(--ab-border);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(7, 27, 46, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-pill:hover {
  transform: translateX(6px);
  border-color: var(--ab-trust-blue);
  box-shadow: 0 8px 24px rgba(13, 95, 168, 0.12);
}

.value-pill-icon {
  width: 42px;
  height: 42px;
  background: var(--ab-soft-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ab-trust-blue);
  flex-shrink: 0;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.value-pill:hover .value-pill-icon {
  background: var(--ab-trust-blue);
  color: #FFFFFF;
}

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

.value-pill-text {
  display: flex;
  flex-direction: column;
}

.value-pill-title {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ab-heading);
  margin-bottom: 2px;
}

.value-pill-desc {
  font-size: 13px;
  color: var(--ab-body);
  line-height: 1.4;
}

/* Dual Showcase Feature Cards Grid */
.mission-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mission-feature-card {
  background: #FFFFFF;
  border: 1.5px solid var(--ab-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 27, 46, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.mission-feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--ab-tech-cyan);
  box-shadow: 0 20px 48px rgba(7, 27, 46, 0.12), 0 0 0 1px rgba(30, 182, 213, 0.25);
}

.card-media-wrapper {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #041322;
}

.card-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-feature-card:hover .card-media-img {
  transform: scale(1.05);
}

.card-num-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  background: rgba(4, 19, 34, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.card-body-content {
  padding: 28px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-kicker-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.card-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ab-trust-blue);
  display: inline-block;
}

.card-kicker {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ab-trust-blue);
}

.card-title {
  font-family: 'Manrope', 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--ab-heading);
  margin: 0 0 12px 0;
}

.card-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ab-body);
  margin: 0;
}

/* ==========================================================================
   SECTION 04: OUR APPROACH (HOW WE WORK)
   ========================================================================== */
.about-approach-section {
  padding: 112px 0 120px 0;
  background-color: var(--ab-navy-deep);
  background-image: radial-gradient(circle at 100% 0%, rgba(30, 182, 213, 0.12) 0%, transparent 60%),
                    radial-gradient(circle at 0% 100%, rgba(13, 95, 168, 0.14) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.about-approach-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(13, 95, 168, 0.12) 0%, rgba(30, 182, 213, 0.05) 45%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
}

.about-approach-header {
  margin-bottom: 56px;
}

.about-heading-white {
  font-family: 'Manrope', 'Plus Jakarta Sans', sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin: 0 0 18px 0;
}

.about-approach-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #AFC0CB;
  max-width: 680px;
  margin: 0;
}

/* 4-Card Process Grid */
.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.about-process-card {
  background: linear-gradient(180deg, rgba(13, 39, 66, 0.65) 0%, rgba(7, 27, 46, 0.85) 100%);
  border: 1px solid rgba(30, 182, 213, 0.18);
  border-radius: 18px;
  padding: 32px 26px 28px 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.about-process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 182, 213, 0.55);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42), 0 0 28px rgba(30, 182, 213, 0.18);
  background: linear-gradient(180deg, rgba(13, 48, 82, 0.8) 0%, rgba(7, 27, 46, 0.95) 100%);
}

.card-glow-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ab-trust-blue), var(--ab-tech-cyan));
  opacity: 0.45;
  transition: opacity 0.35s ease, height 0.35s ease, box-shadow 0.35s ease;
}

.about-process-card:hover .card-glow-bar {
  opacity: 1;
  height: 4px;
  box-shadow: 0 0 16px var(--ab-tech-cyan);
}

.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(30, 182, 213, 0.09);
  border: 1px solid rgba(30, 182, 213, 0.28);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ab-tech-cyan);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(30, 182, 213, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-icon-wrap svg {
  width: 24px;
  height: 24px;
  transition: transform 0.35s ease;
}

.about-process-card:hover .card-icon-wrap {
  background: linear-gradient(135deg, var(--ab-trust-blue), var(--ab-tech-cyan));
  color: #FFFFFF;
  border-color: rgba(30, 182, 213, 0.6);
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(30, 182, 213, 0.4);
}

.about-process-card:hover .card-icon-wrap svg {
  transform: scale(1.08);
}

.card-step-num {
  font-family: 'Manrope', 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.14);
  letter-spacing: -0.02em;
  transition: color 0.35s ease, transform 0.35s ease;
}

.about-process-card:hover .card-step-num {
  color: rgba(30, 182, 213, 0.5);
  transform: translateX(2px);
}

.card-phase-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ab-tech-cyan);
  margin-bottom: 12px;
}

.phase-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ab-tech-cyan);
  box-shadow: 0 0 8px var(--ab-tech-cyan);
  display: inline-block;
  flex-shrink: 0;
}

.card-step-title {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin: 0 0 12px 0;
}

.card-step-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #AFC0CB;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.card-tags-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #CFE0EB;
}

.step-tag svg {
  width: 14px;
  height: 14px;
  color: var(--ab-tech-cyan);
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 05: LOCAL WA / PRE-FOOTER CTA (COMPACT HOMEPAGE STYLE FOR ABOUT PAGE)
   ========================================================================== */
.about-cta-section .cta-card-grid {
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 340px;
  max-height: 360px;
}

.about-cta-section .cta-content-col {
  padding: 24px clamp(24px, 3.5vw, 48px);
}

.about-cta-section .cta-eyebrow {
  margin-bottom: 8px;
}

.about-cta-section .cta-heading {
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 8px 0;
}

.about-cta-section .cta-subtext {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0 0 14px 0;
  max-width: 520px;
}

.about-cta-sectors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 18px;
  margin-bottom: 16px;
}

.about-sector-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 750;
  color: #1e293b;
  transition: transform 0.2s ease;
}

.about-sector-item:hover {
  transform: translateX(3px);
}

.about-sector-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--ab-soft-blue);
  color: var(--ab-trust-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
  border: 1px solid rgba(13, 95, 168, 0.15);
}

.about-sector-icon svg {
  width: 14px;
  height: 14px;
}

.about-sector-item:hover .about-sector-icon {
  background: linear-gradient(135deg, var(--ab-trust-blue), var(--ab-tech-cyan));
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.08);
}

.about-cta-section .cta-actions-row {
  gap: 12px;
}

.about-cta-section .btn-cta-primary {
  padding: 0 20px;
  font-size: 12.5px;
  height: 40px;
}

.about-cta-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  height: 40px;
  background: #ffffff;
  color: var(--ab-heading);
  border: 1.5px solid #071B2E;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-cta-contact-btn:hover {
  background: #071B2E;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(7, 27, 46, 0.18);
}

.about-cta-contact-btn svg {
  transition: transform 0.25s ease;
}

.about-cta-contact-btn:hover svg {
  transform: translateX(4px);
}

.cta-media-col .about-script-overlay {
  position: absolute;
  top: 24px;
  left: 28px;
  font-family: 'Caveat', 'Brush Script MT', cursive, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
  transform: rotate(-3deg);
  pointer-events: none;
  z-index: 3;
}

.cta-media-col .about-cta-tagline {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 2px;
  background: rgba(4, 19, 34, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 9px;
  border: 1px solid rgba(30, 182, 213, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  z-index: 3;
}

.cta-media-col .cta-tagline-line {
  width: 24px;
  height: 2px;
  background: var(--ab-tech-cyan);
  border-radius: 2px;
  margin-bottom: 2px;
}

.cta-media-col .cta-tagline-text {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* ==========================================================================
   ABOUT PAGE SCROLL REVEAL CASCADE ANIMATIONS
   ========================================================================== */
.js-ready .about-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js-ready .about-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .who-feature-card {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              background 0.35s ease,
              box-shadow 0.35s ease;
  will-change: opacity, transform;
}

.js-ready .who-feature-card.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

.js-ready .who-feature-card[data-row-index="0"] { transition-delay: 0.1s; }
.js-ready .who-feature-card[data-row-index="1"] { transition-delay: 0.22s; }
.js-ready .who-feature-card[data-row-index="2"] { transition-delay: 0.34s; }

.js-ready .value-pill {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              background-color 0.3s ease,
              box-shadow 0.3s ease;
  will-change: opacity, transform;
}

.js-ready .value-pill.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

.js-ready .value-pill[data-value-index="0"] { transition-delay: 0.1s; }
.js-ready .value-pill[data-value-index="1"] { transition-delay: 0.22s; }
.js-ready .value-pill[data-value-index="2"] { transition-delay: 0.34s; }

.js-ready .mission-feature-card {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  will-change: opacity, transform;
}

.js-ready .mission-feature-card.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js-ready .mission-feature-card[data-card-index="0"] { transition-delay: 0.15s; }
.js-ready .mission-feature-card[data-card-index="1"] { transition-delay: 0.3s; }

.js-ready .about-process-card {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s ease;
  will-change: opacity, transform;
}

.js-ready .about-process-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .about-process-card[data-step-index="0"] { transition-delay: 0.1s; }
.js-ready .about-process-card[data-step-index="1"] { transition-delay: 0.22s; }
.js-ready .about-process-card[data-step-index="2"] { transition-delay: 0.34s; }
.js-ready .about-process-card[data-step-index="3"] { transition-delay: 0.46s; }

/* ==========================================================================
   ABOUT PAGE RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .about-hero-section {
    padding: 44px 0 36px 0;
  }
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-hero-badge-col {
    justify-content: flex-start;
  }
  .about-hero-title {
    font-size: 34px;
  }
  .about-who-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .mission-header-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .mission-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .card-media-wrapper {
    height: 200px;
  }
  .about-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .about-cta-card {
    padding: 44px 36px;
  }
  .about-cta-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .about-container {
    padding: 0 20px;
  }
  .about-hero-section {
    padding: 28px 0 24px 0;
    min-height: auto;
    background-image: 
      radial-gradient(circle at 90% 20%, rgba(30, 182, 213, 0.2) 0%, transparent 60%),
      linear-gradient(180deg, rgba(4, 19, 34, 0.95) 0%, rgba(7, 27, 46, 0.92) 100%), 
      url('assets/about-hero-photo.webp');
  }
  .about-hero-grid {
    display: block;
  }
  .about-hero-title {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .about-hero-desc {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 16px;
  }
  .about-hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .about-hero-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .about-hero-badge-pillar {
    width: auto;
    max-width: 100%;
  }
  .about-who-section,
  .about-mission-section,
  .about-approach-section,
  .about-cta-section {
    padding: 64px 0;
  }
  .about-heading-h2,
  .about-heading-white {
    font-size: 32px;
  }
  .who-feature-card {
    padding: 16px 16px;
    gap: 14px;
  }
  .who-card-icon-box {
    width: 40px;
    height: 40px;
  }
  .who-card-icon-box svg {
    width: 20px;
    height: 20px;
  }
  .who-card-title {
    font-size: 15px;
  }
  .who-card-desc {
    font-size: 13px;
  }
  .who-trust-strip {
    gap: 12px;
    padding: 12px 14px;
  }
  .who-trust-sep {
    display: none;
  }
  .who-trust-item {
    font-size: 12px;
  }
  .mission-header-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }
  .mission-values-strip {
    gap: 10px;
  }
  .value-pill {
    padding: 12px 16px;
    gap: 12px;
  }
  .mission-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .card-media-wrapper {
    height: 190px;
  }
  .card-body-content {
    padding: 22px 20px 24px 20px;
  }
  .card-title {
    font-size: 19px;
  }
  .card-desc {
    font-size: 14px;
  }
  .about-process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-cta-sectors {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about-cta-contact-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 24px;
  }
  .about-heading-h2,
  .about-heading-white,
  .about-cta-title {
    font-size: 24px;
  }
  .who-float-badge {
    top: 14px;
    right: 14px;
    padding: 8px 12px;
  }
  .who-badge-text-group strong {
    font-size: 10px;
  }
  .who-badge-text-group span {
    font-size: 9.5px;
  }
  .value-pill-title {
    font-size: 12.5px;
  }
  .value-pill-desc {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-reveal,
  .who-feature-card,
  .value-pill,
  .mission-feature-card,
  .about-process-card,
  .about-who-img,
  .card-media-img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =============================================================================
   CONTACT PAGE STYLING (MATCHING SCREENSHOT PRECISION)
   ============================================================================= */

.contact-page {
  background-color: #F8FAFC;
  color: #071B2E;
}

.contact-main-section {
  position: relative;
  background-color: #F8FAFC;
  padding: 56px 0 90px 0;
  overflow: hidden;
}

.contact-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

/* -----------------------------------------------------------------------------
   LEFT COLUMN: CONTACT INFORMATION & DETAILS
   ----------------------------------------------------------------------------- */
.contact-info-column {
  display: flex;
  flex-direction: column;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}

.contact-eyebrow-text {
  font-size: 13px;
  font-weight: 800;
  color: #0284C7;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: inherit;
}

.contact-page-title {
  font-size: clamp(34px, 3.8vw, 48px);
  font-weight: 850;
  color: #071B2E;
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin: 0 0 18px 0;
}

.contact-page-title .title-dot {
  color: #0284C7;
}

.contact-intro-desc {
  font-size: 15.5px;
  line-height: 1.62;
  color: #475569;
  margin: 0 0 28px 0;
  max-width: 580px;
}

/* Contact Info 4-Row List */
.contact-info-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #E2E8F0;
  margin-bottom: 22px;
}

.contact-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #E2E8F0;
  gap: 20px;
  transition: background 0.2s ease;
}

.contact-info-main {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1.2;
  min-width: 0;
}

.contact-info-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D5FA8;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.contact-info-icon-box svg {
  width: 20px;
  height: 20px;
}

.contact-info-row:hover .contact-info-icon-box {
  background: #DBEAFE;
  border-color: #93C5FD;
  transform: scale(1.05);
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-info-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #071B2E;
  letter-spacing: -0.01em;
}

.contact-info-val {
  font-size: 14.5px;
  font-weight: 600;
  color: #0D5FA8;
  line-height: 1.4;
}

.contact-info-address {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: #0D5FA8;
  line-height: 1.4;
}

.contact-hours-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13.5px;
}

.contact-info-link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-link:hover {
  color: #0284C7;
  text-decoration: underline;
}

.contact-info-side {
  flex: 1;
  border-left: 1px solid #E2E8F0;
  padding-left: 20px;
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.45;
}

/* -----------------------------------------------------------------------------
   RIGHT COLUMN: REQUEST A QUOTE (SEAMLESS BOXLESS FORM)
   ----------------------------------------------------------------------------- */
.contact-form-column {
  display: flex;
  flex-direction: column;
}

.contact-form-wrapper {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  box-sizing: border-box;
}

.contact-form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-form-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #EFF6FF;
  border: 1.5px solid #DBEAFE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D5FA8;
  flex-shrink: 0;
}

.contact-form-icon-circle svg {
  width: 22px;
  height: 22px;
}

.contact-form-title {
  font-size: 24px;
  font-weight: 850;
  color: #071B2E;
  margin: 0 0 3px 0;
  letter-spacing: -0.015em;
}

.contact-form-subtitle {
  font-size: 14px;
  color: #64748B;
  margin: 0;
}

/* Form Fields - Increased Height & Visibility */
.contact-quote-form {
  display: flex;
  flex-direction: column;
}

.contact-form-row {
  margin-bottom: 16px;
}

.contact-form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-dynamic-row {
  margin-bottom: 16px;
  animation: dynamicFieldSlide 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.contact-input-wrap {
  position: relative;
  width: 100%;
}

.contact-input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  color: #94A3B8;
  pointer-events: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-input-icon svg {
  width: 100%;
  height: 100%;
}

.contact-textarea-icon {
  top: 18px;
  transform: none;
}

.contact-input {
  width: 100%;
  height: 52px;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 0 16px 0 46px;
  font-size: 14.5px;
  font-family: inherit;
  color: #071B2E;
  background: #FFFFFF;
  transition: all 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.contact-input::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

.contact-input:hover {
  border-color: #CBD5E1;
}

.contact-input:focus {
  border-color: #0D5FA8;
  background: #FFFFFF;
  box-shadow: 0 0 0 3.5px rgba(13, 95, 168, 0.12);
}

.contact-input-wrap:focus-within .contact-input-icon {
  color: #0D5FA8;
}

.contact-select-wrap {
  position: relative;
}

.contact-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 38px;
}

.contact-select option {
  color: #071B2E;
  background: #FFFFFF;
  padding: 8px;
}

.contact-select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #94A3B8;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-select-chevron svg {
  width: 100%;
  height: 100%;
}

.contact-textarea {
  height: 135px;
  padding: 16px 16px 16px 46px;
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

/* Checkbox Row */
.contact-checkbox-row {
  margin: 6px 0 18px 0;
}

.contact-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: #475569;
  line-height: 1.45;
  cursor: pointer;
  user-select: none;
}

.contact-checkbox {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: #0D5FA8;
  cursor: pointer;
  flex-shrink: 0;
}

.contact-privacy-link {
  color: #0D5FA8;
  font-weight: 600;
  text-decoration: underline;
}

.contact-privacy-link:hover {
  color: #0284C7;
}

/* Submit Button */
.contact-submit-btn {
  width: 100%;
  height: 52px;
  background: #0D5FA8;
  color: #FFFFFF;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(13, 95, 168, 0.25);
}

.contact-submit-btn:hover {
  background: #0A4B85;
  transform: translateY(-1.5px);
  box-shadow: 0 8px 22px rgba(13, 95, 168, 0.35);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.contact-btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.contact-submit-btn:hover .contact-btn-arrow {
  transform: translateX(4px);
}

/* Security Notice */
.contact-secure-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 12.5px;
  color: #64748B;
}

.contact-lock-icon {
  width: 15px;
  height: 15px;
  color: #94A3B8;
}

/* Success Confirmation Message */
.contact-form-success {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ECFDF5;
  border: 1.5px solid #A7F3D0;
  border-radius: 10px;
  padding: 16px;
  margin-top: 16px;
  animation: contactFadeIn 0.3s ease;
}

@keyframes contactFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-success-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #10B981;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-success-icon-wrap svg {
  width: 18px;
  height: 18px;
}

.contact-success-text {
  font-size: 13px;
  color: #065F46;
  line-height: 1.4;
}

.contact-success-text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
  color: #047857;
}

/* -----------------------------------------------------------------------------
   RESPONSIVENESS
   ----------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .contact-info-column {
    max-width: 100%;
  }
  .contact-form-column {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .contact-main-section {
    padding: 36px 0 60px 0;
  }
  .contact-container {
    padding: 0 18px;
  }
  .contact-form-wrapper {
    padding: 0;
  }
  .contact-form-row-2col {
    grid-template-columns: 1fr;
  }
  .contact-page-title {
    font-size: 30px;
  }
  .contact-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .contact-info-side {
    border-left: none;
    padding-left: 0;
    font-size: 12.5px;
  }
}

/* =============================================================================
   SECTION 03: OUR LOCATION & INTERACTIVE MAP (BIBRA LAKE)
   ============================================================================= */
.contact-location-section {
  padding: 72px 0 90px 0;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  position: relative;
}

.location-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Left Column: Map Wrapper & Pinned Card */
.location-map-column {
  width: 100%;
}

.location-map-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 16px 36px -10px rgba(7, 27, 46, 0.08);
  background: #EEF2F6;
}

.location-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Floating Map Pin Callout Card */
.map-pin-callout {
  position: absolute;
  top: 44%;
  left: 48%;
  transform: translate(-50%, -100%);
  pointer-events: none;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.map-callout-card {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: 0 12px 28px -4px rgba(7, 27, 46, 0.16), 0 2px 6px rgba(0, 0, 0, 0.04);
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.9);
  white-space: nowrap;
}

.map-callout-title {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #071B2E;
  margin-bottom: 2px;
}

.map-callout-line {
  display: block;
  font-size: 11.5px;
  color: #64748B;
  line-height: 1.35;
}

.map-marker-pin {
  margin-top: 4px;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 4px 6px rgba(13, 95, 168, 0.3));
}

/* Right Column: Information, CTA & Amenities */
.location-info-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-eyebrow {
  margin-bottom: 10px;
}

.location-eyebrow-text {
  font-size: 12px;
  font-weight: 800;
  color: #0D5FA8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
}

.location-title {
  font-size: 36px;
  font-weight: 800;
  color: #071B2E;
  line-height: 1.2;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.location-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 26px 0;
  max-width: 520px;
}

.location-action-wrap {
  margin-bottom: 34px;
}

.location-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1.5px solid #0D5FA8;
  border-radius: 10px;
  background: #FFFFFF;
  color: #0D5FA8;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(13, 95, 168, 0.06);
}

.location-directions-btn:hover {
  background: #0D5FA8;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(13, 95, 168, 0.35);
}

.directions-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.directions-btn-icon svg {
  width: 18px;
  height: 18px;
}

.directions-btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.location-directions-btn:hover .directions-btn-arrow {
  transform: translateX(3px);
}

/* 3 Facility Amenities Row */
.location-amenities-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #E2E8F0;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.amenity-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D5FA8;
  flex-shrink: 0;
}

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

.amenity-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.3;
}

.amenity-text span {
  color: #475569;
  font-weight: 500;
  font-size: 11.5px;
}

.amenity-text strong {
  color: #071B2E;
  font-weight: 700;
  font-size: 12.5px;
}

/* Location Section Responsiveness */
@media (max-width: 1024px) {
  .location-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .location-map-wrapper {
    height: 340px;
  }
  .location-desc {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .contact-location-section {
    padding: 48px 0 60px 0;
  }
  .location-title {
    font-size: 28px;
  }
  .location-map-wrapper {
    height: 290px;
  }
  .location-amenities-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .map-callout-card {
    padding: 10px 14px;
  }
  .map-callout-title {
    font-size: 12.5px;
  }
  .map-callout-line {
    font-size: 10.5px;
  }
}
