/* ==================== RESET & BASE ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0a2a6b;
  --blue: #1d4ed8;
  --royal: #2546d4;
  --red: #e11d2e;
  --red-deep: #b91c1c;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
   --red-100:#fde7ea;
  --ink-900:#0e1116;
  --ink-800:#1a1f27;
  --ink-700:#2b323d;
  --ink-500:#5a6270;
  --ink-400:#8a93a3;
  --ink-200:#dfe3ea;
  --ink-100:#eef1f6;
  --paper:#ffffff;
  --paper-2:#f7f8fb;
  --paper-3:#eef1f6;
  --silver-1:#e6e8ec;
  --silver-2:#c9ccd3;
  --silver-3:#9aa0aa;
  --radius: 0.75rem;
  --font-heading: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Roboto', ui-sans-serif, system-ui, sans-serif;
  --shadow-luxe: 0 30px 80px -30px rgba(10, 42, 107, 0.35);
  --shadow-glow-blue: 0 20px 60px -15px rgba(37, 70, 212, 0.45);
  --shadow-glow-red: 0 20px 60px -15px rgba(225, 29, 46, 0.4);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); color: var(--slate-900); background: var(--white); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
p{text-align: justify;}
img { display: block; max-width: 100%; }
.text-center{text-align: center;}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; overflow: hidden; }
.pt-0{padding-top: 0px;}
.pb-0{padding-bottom: 0px;}
.text-white { color: #fff !important; }
.text-white-80 { color: rgba(255,255,255,0.8) !important; }
.text-gradient { background: linear-gradient(120deg, #0a2a6b, #2546d4); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.text-red-accent { color: #f87171; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: linear-gradient(#0a2a6b, #1d4ed8); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #0a2a6b; }

/* ==================== EYEBROWS & TITLES ==================== */
.eyebrow { display: inline-block; padding: 6px 16px; border-radius: 999px; font-family: var(--font-heading); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px; }
.eyebrow-blue { background: #eff6ff; color: var(--blue); }
.eyebrow-red { background: #fef2f2; color: var(--red); }
.eyebrow-green { background: #f0fdf4; color: #15803d; }
.eyebrow-glass { background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); color: #fff; }

.section-title { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; color: var(--slate-900); }
.section-subtitle { margin-top: 20px; font-size: 1.125rem; color: var(--slate-600); max-width: 640px; margin-left: auto; margin-right: auto; }
.section-head-center { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.body-text { margin-top: 24px; font-size: 1.125rem; color: var(--slate-600); line-height: 1.7; }

/* ==================== BUTTONS ==================== */
.btn-primary, .btn-quote, .btn-red, .btn-white, .btn-glass {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
  border-radius: 999px; font-family: var(--font-heading); font-weight: 600;
  transition: all 0.3s ease; cursor: pointer; border: none; font-size: 14px;
}
.btn-primary { background: linear-gradient(135deg, #0a2a6b, #2546d4); color: #fff; box-shadow: var(--shadow-glow-blue); }
.btn-primary:hover { transform: scale(1.05); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-quote { background: linear-gradient(135deg, #e11d2e, #b91c1c); color: #fff; box-shadow: var(--shadow-glow-red); padding: 10px 20px; }
.btn-quote:hover { transform: scale(1.05) translateY(-2px); }

.btn-red { background: linear-gradient(135deg, #e11d2e, #b91c1c); color: #fff; box-shadow: var(--shadow-glow-red); }
.btn-red:hover { transform: scale(1.05); }

.btn-white { background: #fff; color: var(--navy); box-shadow: var(--shadow-luxe); }
.btn-white:hover { transform: scale(1.05); }

.btn-glass { background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.btn-glass:hover { background: rgba(255,255,255,0.2); }

.btn-large { padding: 16px 32px; font-size: 16px; }

.icon-red { color: var(--red); }
.icon-red-light { color: #fca5a5; }
.icon-menu { display: block; } .icon-x { display: none; }
.mobile-toggle.open .icon-menu { display: none; }
.mobile-toggle.open .icon-x { display: block; }

/* ==================== UTILITY BAR ==================== */
.utility-bar { display: none; background: var(--navy); color: #fff; font-size: 12px; }
.utility-inner { display: flex; align-items: center; justify-content: space-between; height: 36px; }
.utility-left, .utility-right { display: flex; align-items: center; gap: 20px; }
.util-item { display: flex; align-items: center; gap: 6px; }
.util-icon-red { color: #f87171; }
.util-icon-yellow { color: #facc15; }

/* ==================== NAVBAR ==================== */
.navbar { position: sticky; top: 0; z-index: 50; background: #fff; padding: 12px 0; transition: all 0.3s; }
.navbar.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); box-shadow: 0 4px 20px rgba(0,0,0,0.08); padding: 8px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.logo { height: 56px; width: auto; border-radius: 50%; }
.nav-items { display: none; align-items: center; gap: 4px; list-style: none; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 6px; padding: 10px 14px; font-family: var(--font-heading); font-size: 13px; font-weight: 500; color: var(--slate-700); transition: color 0.3s; cursor: pointer; background: none; border: none; position: relative; white-space: nowrap; }
.nav-link:hover { color: var(--blue); }
.nav-underline { position: absolute; left: 14px; right: 14px; bottom: -2px; height: 2px; background: linear-gradient(to right, #0a2a6b, #2546d4); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.nav-link:hover .nav-underline { transform: scaleX(1); }
.dropdown-chevron { transition: transform 0.3s; }
.nav-dropdown:hover .dropdown-chevron { transform: rotate(180deg); color: var(--red); }

/* Dropdown panels */
.dropdown-panel { position: absolute; left: 50%; transform: translateX(-50%) translateY(8px); top: 100%; padding-top: 16px; opacity: 0; visibility: hidden; transition: all 0.3s; }
.nav-dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-services { width: 640px; }
.dropdown-areas { width: 720px; }
.dropdown-services .dropdown-grid { background: #fff; border-radius: 16px; box-shadow: var(--shadow-luxe); border: 1px solid #f1f5f9; padding: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.dropdown-card { display: flex; align-items: flex-start; gap: 12px; padding: 12px; border-radius: 12px; transition: background 0.2s; }
.dropdown-card:hover { background: linear-gradient(135deg, #eff6ff, #fff); }
.dropdown-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, #0a2a6b, #2546d4); display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: var(--shadow-glow-blue); transition: transform 0.3s; }
.dropdown-card:hover .dropdown-icon { transform: scale(1.1) rotate(3deg); }
.dropdown-title { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--slate-900); transition: color 0.2s; }
.dropdown-card:hover .dropdown-title { color: var(--blue); }
.dropdown-desc { font-size: 12px; color: var(--slate-500); margin-top: 2px; line-height: 1.4; }

.dropdown-areas .dropdown-heading { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.dropdown-areas .areas-grid { background: #fff; border-radius: 16px; box-shadow: var(--shadow-luxe); border: 1px solid #f1f5f9; padding: 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.area-chip { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 8px; transition: background 0.15s; }
.area-chip:hover { background: #eff6ff; }
.area-pin { color: var(--red); flex-shrink: 0; transition: transform 0.2s; }
.area-chip:hover .area-pin { transform: scale(1.1); }
.area-chip span { font-size: 14px; font-weight: 500; color: var(--slate-700); }
.area-chip:hover span { color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.mobile-toggle { display: flex; align-items: center; justify-content: center; background: none; border: none; color: var(--slate-700); cursor: pointer; padding: 8px; }

/* Synchrony nav item */
.synchrony-nav-item { display: flex; align-items: center; gap: 8px; }
.synchrony-blink-wrap { display: flex; align-items: center; gap: 8px; text-decoration: none; padding: 6px 14px; border-radius: 999px; border: 1.5px solid #FBC600; background: #fffbea; transition: all 0.3s; }
.synchrony-blink-wrap:hover { background: #FBC600; }
.synchrony-blink-wrap img, .synchrony-blink-wrap svg { height: 22px; width: auto; }
.synchrony-blink-text { font-family: var(--font-heading); font-size: 11px; font-weight: 600; color: #7a5c00; white-space: nowrap; animation: syncBlink 2s ease-in-out infinite; }
.synchrony-blink-wrap:hover .synchrony-blink-text { color: #3d2d00; }
@keyframes syncBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
/* ==================== Mobile Menu ==================== */
.mobile-menu { 
  display: none; 
  background: #fff; 
  border-top: 1px solid #f1f5f9; 
  max-height: 80vh; 
  overflow-y: auto; 
}
.mobile-menu.open { 
  display: block; 
}
.mobile-menu-inner { 
  padding: 16px 24px; 
}
.mobile-link { 
  display: block; 
  padding: 12px 0; 
  font-family: var(--font-heading); 
  font-weight: 500; 
  color: var(--slate-700); 
  cursor: pointer; 
  background: none; 
  border: none; 
  width: 100%; 
  text-align: left; 
  font-size: 16px; 
}
.mobile-section-toggle { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
}
.mobile-chevron { 
  transition: transform 0.3s; 
}
.mobile-section-toggle.open .mobile-chevron { 
  transform: rotate(180deg); 
}

/* Base Submenu Styling */
.mobile-submenu { 
  padding-left: 16px; 
  padding-bottom: 8px; 
  margin-left: 8px; 
  display: none; /* Kept hidden by default */
}
.mobile-submenu.open { 
  display: block; 
}
.mobile-submenu a { 
  display: block; 
  padding: 8px 0; 
  font-size: 14px; 
  color: var(--slate-600); 
}

/* FIX: Prevent areas submenu from overriding 'display: none'.
   It will only take on 'display: grid' when it has the '.open' class.
*/
.mobile-areas-submenu { 
  display: none; /* Keep hidden initially */
  grid-template-columns: 1fr 1fr; 
  gap: 0; 
}
.mobile-areas-submenu.open { 
  display: grid; /* Becomes a grid layout only when toggled open */
}
.mobile-areas-submenu a { 
  display: flex; 
  align-items: center; 
  gap: 6px; 
}

/* Call and Financing Buttons */
.mobile-call-btn { 
  display: flex !important; 
  align-items: center; 
  justify-content: center; 
  gap: 8px; 
  margin-top: 8px; 
  padding: 12px 20px; 
  border-radius: 999px; 
  background: linear-gradient(135deg, #e11d2e, #b91c1c); 
  color: #fff !important; 
  font-family: var(--font-heading); 
  font-weight: 600; 
}
.mobile-sync-btn { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  margin-top: 8px; 
  padding: 10px 16px; 
  border-radius: 999px; 
  border: 1.5px solid #FBC600; 
  background: #fffbea; 
}
.mobile-sync-btn span { 
  font-family: var(--font-heading); 
  font-size: 12px; 
  font-weight: 600; 
  color: #7a5c00; 
}
/* ==================== HERO ==================== */
.hero { position: relative; height: 92vh; min-height: 600px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease-out; }
.hero-slide.active { opacity: 1; animation: kenburns 7s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.1); } }

.hero-overlay-left { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to right, rgba(10,42,107,0.9), rgba(10,42,107,0.65), transparent); }
.hero-overlay-bottom { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); }

.hero-content { position: relative; z-index: 3; height: 92vh; min-height: 600px; display: flex; align-items: center; }
.hero-text { max-width: 640px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 999px; background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); margin-bottom: 24px; }
.hero-eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-eyebrow p { font-size: 14px; font-family: var(--font-heading); font-weight: 500; color: rgba(255,255,255,0.9); }
.hero-text h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); font-weight: 800; color: #fff; line-height: 1.05; }
.hero-text > p { margin-top: 24px; font-size: clamp(1rem, 1.5vw, 1.25rem); color: rgba(255,255,255,0.8); max-width: 540px; line-height: 1.6; }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero-actions .btn-primary { background: linear-gradient(135deg, #e11d2e, #b91c1c); box-shadow: var(--shadow-glow-red); }
.hero-actions .btn-primary:hover { transform: scale(1.05) translateY(-2px); }
.hero-glass-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 999px; background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-family: var(--font-heading); font-weight: 600; font-size: 14px; transition: background 0.3s; }
.hero-glass-btn:hover { background: rgba(255,255,255,0.2); }
.hero-trust { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; color: rgba(255,255,255,0.9); }
.hero-trust .stars { display: flex; gap: 2px; }
.hero-trust .star { width: 16px; height: 16px; color: #facc15; fill: #facc15; }
.hero-trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.3); }
.hero-trust span { font-size: 14px; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.15); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.25); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.3s; }
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-arrow-left { left: 16px; }
.hero-arrow-right { right: 16px; }
.hero-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero-dot { height: 8px; width: 8px; border-radius: 999px; background: rgba(255,255,255,0.4); transition: all 0.3s; cursor: pointer; border: none; }
.hero-dot.active { width: 40px; background: #fff; }

/* ==================== PAGE HERO (inner pages) ==================== */
.page-hero { position: relative; padding: 100px 0 80px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,42,107,0.96) 0%, rgba(37,70,212,0.88) 60%, rgba(10,21,48,0.95) 100%); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a, .breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.6); font-family: var(--font-heading); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1.1; }
.page-hero-sub { margin-top: 20px; font-size: 1.125rem; color: rgba(255,255,255,0.8); max-width: 680px; line-height: 1.7; }
.page-hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.page-hero-trust { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 24px; }
.page-hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); font-size: 14px; font-family: var(--font-heading); font-weight: 500; }
.page-hero-trust-item svg { color: #f87171; }

/* ==================== TRUST BAR ==================== */
.trust-bar { padding: 40px 0; background: #fff; border-bottom: 1px solid #f1f5f9; overflow: hidden; }
.trust-heading { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 24px; }
.trust-heading-icon { color: var(--blue); }
.trust-heading span { font-size: 12px; font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--slate-400); }
.trust-marquee-wrap { position: relative; overflow: hidden; }
.trust-marquee { display: flex; align-items: center; gap: 48px; animation: marquee 30s linear infinite; width: max-content; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.trust-marquee span { font-family: var(--font-heading); font-weight: 700; font-size: 24px; color: #cbd5e1; transition: color 0.3s; white-space: nowrap; }
.trust-marquee span:hover { color: var(--blue); }
.trust-fade-left, .trust-fade-right { position: absolute; top: 0; bottom: 0; width: 96px; z-index: 10; }
.trust-fade-left { left: 0; background: linear-gradient(to right, #fff, transparent); }
.trust-fade-right { right: 0; background: linear-gradient(to left, #fff, transparent); }

/* ==================== SERVICES GRID ==================== */
.services { 
  position: relative; /* Container needs relative position for absolute pattern */
  background: #f8fafc; 
}

.services-pattern {
  position: absolute; 
  inset: 0; 
  opacity: 0.03;
  background-image: radial-gradient(#0a2a6b 1px, transparent 1px); 
  background-size: 28px 28px;
  pointer-events: none; /* Prevents interference with clicks */
}

/* Responsive grid system (1 column on mobile, 2 on tablet, 3 on desktop) */
.services-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 24px; 
  position: relative; 
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative; 
  border-radius: 24px; 
  overflow: hidden; 
  background: #fff; 
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04); 
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
  display: block;
  text-decoration: none; /* Cleans up link rendering */
}

.service-card:hover { 
  box-shadow: var(--shadow-luxe, 0 20px 25px -5px rgba(0, 0, 0, 0.1)); 
  transform: translateY(-8px); 
}

/* Image Background Layer */
.service-card-bg { 
  position: absolute; 
  inset: 0; 
  background-size: cover; 
  background-position: center; 
  opacity: 0; 
  z-index: 1; /* Keeps image behind the overlay and text */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
}

.service-card:hover .service-card-bg { 
  opacity: 1; 
  transform: scale(1.1); 
}

/* Semi-Transparent Overlay Layer */
.service-card-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(to top, rgba(10,42,107,0.95), rgba(10,42,107,0.8), rgba(10,42,107,0.6)); 
  opacity: 0; 
  z-index: 2; /* Sits directly on top of image, but behind text */
  transition: opacity 0.5s ease; 
}

.service-card:hover .service-card-overlay { 
  opacity: 1; 
}

/* Body Content Area */
.service-card-body { 
  position: relative; /* Required: Enables z-index rendering */
  z-index: 10;        /* Elevates text completely above the background and overlay */
  padding: 28px; 
}

.service-card-icon {
  width: 56px; 
  height: 56px; 
  border-radius: 16px; 
  background: linear-gradient(135deg, #0a2a6b, #2546d4);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: #fff; 
  box-shadow: var(--shadow-glow-blue, 0 4px 14px rgba(37, 70, 212, 0.4));
  margin-bottom: 20px; 
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-icon { 
  transform: scale(1.1) rotate(6deg); 
  background: #fff; 
}

.service-card:hover .service-card-icon svg { 
  color: var(--blue, #2546d4); 
}

.service-card-icon svg { 
  transition: color 0.5s; 
}

.service-card-body h3 { 
  font-size: 20px; 
  font-weight: 700; 
  color: var(--slate-900, #0f172a); 
  margin: 0 0 12px 0;
  transition: color 0.5s; 
}

.service-card:hover .service-card-body h3 { 
  color: #fff; 
}

.service-card-body p { 
  margin: 0;
  font-size: 14px; 
  color: var(--slate-600, #475569); 
  line-height: 1.6; 
  transition: color 0.5s; 
}

.service-card:hover .service-card-body p { 
  color: rgba(255, 255, 255, 0.85); 
}

.service-card-link { 
  margin-top: 20px; 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  font-size: 14px; 
  font-family: var(--font-heading, sans-serif); 
  font-weight: 600; 
  color: var(--blue, #2546d4); 
  transition: color 0.5s; 
}

.service-card:hover .service-card-link { 
  color: #fff; 
}

.service-card-link svg { 
  transition: transform 0.3s ease; 
}

.service-card:hover .service-card-link svg { 
  transform: translateX(6px); 
}
/* ==================== WHY CHOOSE US ==================== */
.why { background: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: start; }
.why-promise { margin-top: 32px; padding: 24px; border-radius: 16px; background: linear-gradient(135deg, #0a2a6b, #2546d4); color: #fff; box-shadow: var(--shadow-glow-blue); }
.why-promise-title { font-family: var(--font-heading); font-weight: 700; font-size: 24px; }
.why-promise-text { margin-top: 8px; color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.6; }
.why-features { display: grid; grid-template-columns: 1fr; gap: 20px; }
.why-feature { padding: 24px; border-radius: 16px; border: 1px solid #f1f5f9; background: #fff; transition: all 0.3s; }
.why-feature:hover { background: #f8fafc; border-color: #dbeafe; transform: translateY(-4px); box-shadow: var(--shadow-luxe); }
.why-feature-top { display: flex; align-items: flex-start; gap: 16px; }
.why-feature-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: #eff6ff; display: flex; align-items: center; justify-content: center; color: var(--blue); transition: all 0.3s; }
.why-feature:hover .why-feature-icon { background: linear-gradient(135deg, #0a2a6b, #2546d4); color: #fff; }
.why-feature h3 { font-size: 18px; font-weight: 700; color: var(--slate-900); }
.why-feature p { margin-top: 4px; font-size: 14px; color: var(--slate-500); line-height: 1.6; }
.why-feature-bar { margin-top: 16px; height: 2px; width: 0; background: linear-gradient(to right, #0a2a6b, #2546d4); transition: width 0.5s; }
.why-feature:hover .why-feature-bar { width: 100%; }

/* ==================== PROCESS ==================== */
.process { background: #fff; }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 24px; position: relative; }
.process-step { text-align: center; position: relative; }
.process-step-icon-wrap { position: relative; width: 80px; height: 80px; margin: 0 auto 24px; }
.process-step-icon-bg { position: absolute; inset: 0; border-radius: 50%; background: linear-gradient(135deg, #0a2a6b, #2546d4); box-shadow: var(--shadow-glow-blue); transition: transform 0.3s; }
.process-step:hover .process-step-icon-bg { transform: scale(1.1); }
.process-step-icon { position: relative; width: 100%; height: 100%; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.process-step-num { position: absolute; top: -8px; right: -4px; width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #e11d2e, #b91c1c); color: #fff; font-size: 12px; font-family: var(--font-heading); font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-glow-red); }
.process-step h3 { font-size: 18px; font-weight: 700; color: var(--slate-900); }
.process-step p { margin-top: 8px; font-size: 14px; color: var(--slate-500); line-height: 1.6; max-width: 220px; margin-left: auto; margin-right: auto; }

/* ==================== STATS ==================== */
.stats { padding: 96px 0; }
.stats-bg { position: absolute; inset: 0; z-index: 0; }
.stats-bg img { width: 100%; height: 100%; object-fit: cover; }
.stats-bg-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,42,107,0.95), rgba(10,21,48,0.95)); }
.stats .container { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-card { text-align: center; padding: 32px; border-radius: 16px; background: rgba(255,255,255,0.08); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.18); transition: background 0.3s; }
.stat-card:hover { background: rgba(255,255,255,0.15); }
.stat-value { font-family: var(--font-heading); font-weight: 800; font-size: clamp(2rem, 5vw, 3.75rem); color: #fff; }
.stat-label { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }

/* ==================== AREAS ==================== */
.areas { padding: 96px 0; }
.areas-bg { position: absolute; inset: 0; z-index: 0; }
.areas-bg img { width: 100%; height: 100%; object-fit: cover; }
.areas-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,42,107,0.95), rgba(10,42,107,0.85), rgba(10,42,107,0.7)); }
.areas .container { position: relative; z-index: 1; }
.areas-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.areas-content .btn-white { margin-top: 32px; }
.areas-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.areas-chip { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 12px; background: rgba(255,255,255,0.08); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.18); color: #fff; transition: all 0.3s; }
.areas-chip:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.areas-chip svg { color: #f87171; flex-shrink: 0; transition: transform 0.3s; }
.areas-chip:hover svg { transform: scale(1.25); }
.areas-chip span { font-size: 14px; font-family: var(--font-heading); font-weight: 500; }

/* ==================== IAQ ==================== */
.iaq { background: #f8fafc; }
.iaq-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
.iaq-content .btn-primary { margin-top: 36px; }
.iaq-points { margin-top: 28px; }
.iaq-points li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.check-circle { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, #0a2a6b, #2546d4); display: flex; align-items: center; justify-content: center; color: #fff; }
.iaq-points li span:last-child { color: var(--slate-700); font-weight: 500; }
.iaq-image-wrap { position: relative; }
.iaq-glow { position: absolute; top: -32px; right: -32px; width: 160px; height: 160px; border-radius: 50%; background: rgba(220,252,231,0.7); filter: blur(40px); }
.iaq-image-box { position: relative; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-luxe); }
.iaq-image-box img { width: 100%; height: 460px; object-fit: cover; }
.iaq-badge { position: absolute; top: 20px; left: 20px; background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.5); border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.iaq-badge svg { color: var(--blue); }
.iaq-badge-title { font-family: var(--font-heading); font-weight: 700; color: var(--slate-900); font-size: 14px; line-height: 1.2; }
.iaq-badge-sub { font-size: 12px; color: var(--slate-500); }

/* ==================== TESTIMONIALS ==================== */
.testimonials { background: #fff; }
.testimonials-glow { position: absolute; width: 288px; height: 288px; border-radius: 50%; filter: blur(48px); }
.testimonials-glow-blue { top: 40px; left: 40px; background: rgba(219,234,254,0.6); }
.testimonials-glow-red { bottom: 40px; right: 40px; background: rgba(254,226,226,0.6); }
.testimonials .container { position: relative; z-index: 1; }
.testimonials-rating { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; }
.testimonials-rating .stars { display: flex; gap: 2px; }
.testimonials-rating .star { width: 20px; height: 20px; color: #facc15; fill: #facc15; }
.testimonials-rating-text { color: var(--slate-600); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.testimonial-card { position: relative; padding: 28px; border-radius: 16px; background: #f8fafc; border: 1px solid #f1f5f9; transition: all 0.3s; }
.testimonial-card:hover { background: #fff; box-shadow: var(--shadow-luxe); border-color: #dbeafe; transform: translateY(-8px); }
.testimonial-quote { position: absolute; top: 20px; right: 20px; width: 32px; height: 32px; color: #dbeafe; }
.testimonial-card:hover .testimonial-quote { color: #bfdbfe; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-stars .star { width: 16px; height: 16px; color: #facc15; fill: #facc15; }
.testimonial-card p { font-size: 14px; color: var(--slate-600); line-height: 1.7; }
.testimonial-author { margin-top: 24px; display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid #f1f5f9; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #0a2a6b, #2546d4); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-heading); font-weight: 700; }
.testimonial-name { font-family: var(--font-heading); font-weight: 600; color: var(--slate-900); font-size: 14px; }
.testimonial-city { font-size: 12px; color: var(--slate-500); }

/* ==================== EMERGENCY CTA ==================== */
.emergency { padding: 96px 0; }
.emergency-bg { position: absolute; inset: 0; z-index: 0; }
.emergency-bg img { width: 100%; height: 100%; object-fit: cover; }
.emergency-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,21,48,0.97), rgba(10,42,107,0.9), rgba(185,28,28,0.85)); }
.emergency .container { position: relative; z-index: 1; }
.emergency-content { max-width: 640px; }
.emergency-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 999px; background: rgba(239,68,68,0.2); backdrop-filter: blur(12px); border: 1px solid rgba(248,113,113,0.3); color: #fecaca; font-size: 12px; font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 24px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #f87171; animation: pulse-ring 2s infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(225,29,46,0.5); } 70% { box-shadow: 0 0 0 16px rgba(225,29,46,0); } 100% { box-shadow: 0 0 0 0 rgba(225,29,46,0); } }
.emergency-actions { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.emergency-trust { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 32px; }
.emergency-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); }
.emergency-trust-item span { font-size: 14px; font-weight: 500; }

/* ==================== CONTACT CTA ==================== */
.contact-cta { background: linear-gradient(to bottom, #f8fafc, #fff); }
.contact-card { position: relative; border-radius: 40px; overflow: hidden; box-shadow: var(--shadow-luxe); }
.contact-card > .contact-card-pattern { position: absolute; inset: 0; background: linear-gradient(135deg, #0a2a6b, #2546d4); }
.contact-card-pattern::after { content: ''; position: absolute; inset: 0; opacity: 0.1; background-image: radial-gradient(circle at 20% 20%, #fff 1px, transparent 1px), radial-gradient(circle at 80% 70%, #fff 1px, transparent 1px); background-size: 40px 40px; }
.contact-card-content { position: relative; padding: 64px 40px; text-align: center; color: #fff; }
.contact-subtitle { max-width: 540px; margin-left: auto; margin-right: auto; }
.contact-tiles { margin-top: 40px; display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 640px; margin-left: auto; margin-right: auto; }
.contact-tile { padding: 20px; border-radius: 16px; background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); text-align: center; transition: all 0.3s; cursor: pointer; }
.contact-tile:hover { background: rgba(255,255,255,0.2); transform: translateY(-4px); }
.contact-tile svg { margin: 0 auto 8px; display: block; }
.contact-tile-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-tile-value { font-family: var(--font-heading); font-weight: 600; font-size: 14px; margin-top: 4px; }
.contact-actions { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.contact-hours { margin-top: 32px; display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 14px; }

/* ==================== FOOTER ==================== */
.footer { background: #0a1530; color: #fff; position: relative; overflow: hidden; }
.footer-accent { height: 6px; background: linear-gradient(to right, #0a2a6b, #2546d4, #e11d2e); }
.footer-cta-strip { border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-cta-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 24px; padding: 40px 24px; text-align: center; }
.footer-cta-title { font-family: var(--font-heading); font-weight: 700; font-size: 24px; }
.footer-cta-text { color: rgba(255,255,255,0.6); margin-top: 8px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 56px 24px; }
.footer-logo { height: 64px; border-radius: 50%; margin-bottom: 16px; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; }
.footer-badges { display: flex; gap: 12px; margin-top: 20px; }
.footer-badge { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #93c5fd; }
.footer-heading { font-family: var(--font-heading); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { display: flex; align-items: center; gap: 6px; font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-links a::before { content: '›'; color: var(--red); font-size: 14px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-contact svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 12px; padding: 24px; font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; }

/* ==================== FAQ SECTION ==================== */
.faq { background: #f8fafc; }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid #e2e8f0; border-radius: 16px; margin-bottom: 12px; overflow: hidden; background: #fff; transition: box-shadow 0.3s; }
.faq-item.open { box-shadow: var(--shadow-luxe); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 28px; cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: 17px; color: var(--slate-900); }
.faq-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: #eff6ff; display: flex; align-items: center; justify-content: center; color: var(--blue); transition: all 0.3s; }
.faq-item.open .faq-icon { background: linear-gradient(135deg, #0a2a6b, #2546d4); color: #fff; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 28px 24px; font-size: 15px; color: var(--slate-600); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ==================== CONTENT SECTIONS ==================== */
.content-section { background: #fff; padding: 80px 0px; }
.content-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: start; }
.content-img-box { position: relative; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-luxe); }
.content-img-box img { width: 100%; height: 600px; object-fit: cover; }
.content-badge { position: absolute; bottom: 5px; left: 20px; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border-radius: 12px; padding: 12px 18px; }
.content-badge-text { font-family: var(--font-heading); font-weight: 700; color: var(--navy); font-size: 15px; }
.content-badge-sub { font-size: 12px; color: var(--slate-500); margin-top: 2px; }
.feature-list { margin-top: 28px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 15px; color: var(--slate-700); line-height: 1.6; }
.feature-dot { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, #0a2a6b, #2546d4); display: flex; align-items: center; justify-content: center; color: #fff; margin-top: 2px; }

/* ==================== AREAS PAGE ==================== */
/* ==================== AREAS PAGE ==================== */
.areas-map-section { 
  background: #f8fafc; 
}

/* 3 cards in one row on desktop, collapsing smoothly on tablet/mobile */
.area-cards-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 20px; 
}

@media (min-width: 640px) {
  .area-cards-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (min-width: 992px) {
  .area-cards-grid { 
    grid-template-columns: repeat(3, 1fr); 
  }
}

/* Cards styled as cards with backgrounds and appropriate height */
.area-full-card { 
  position: relative;
  display: flex; 
  align-items: center; 
  gap: 16px; 
  padding: 24px; 
  border-radius: 16px; 
  min-height: 275px; /* Gives proper, professional card height */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.15); 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  box-shadow: 0 4px 15px rgba(10, 42, 107, 0.08); 
  overflow: hidden;
  text-decoration: none; /* Disables default link underline */
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

/* Dark Overlay Layer over the Background Image */
.area-full-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 42, 107, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}

/* Ensure all interactive content stays clearly above the overlay layer */
.area-full-card > * {
  position: relative;
  z-index: 2;
}

/* Subtle Interactive Hover State effects */
.area-full-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 12px 24px rgba(10, 42, 107, 0.15); 
  border-color: rgba(255, 255, 255, 0.35);
}

.area-full-card:hover::before {
  background: linear-gradient(135deg, rgba(10, 42, 107, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.area-card-pin { 
  width: 44px; 
  height: 44px; 
  border-radius: 12px; 
  background: linear-gradient(135deg, #2546d4, #3b82f6); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: #fff; 
  flex-shrink: 0; 
  box-shadow: 0 4px 12px rgba(37, 70, 212, 0.3);
}

.area-card-name { 
  font-family: var(--font-heading, sans-serif); 
  font-weight: 700; 
  font-size: 24px; 
  color: #ffffff; /* Bright white text for optimal accessibility */
  margin: 0;
}

.area-card-label { 
  font-size: 18px; 
  color: #cbd5e1; /* Smooth light-slate text color */
  margin-top: 4px; 
  margin-bottom: 0;
}
/* ==================== SERVICE DETAIL PAGE ==================== */
.service-benefits { background: #f8fafc; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.benefit-card { padding: 28px; border-radius: 20px; background: #fff; border: 1px solid #e2e8f0; transition: all 0.3s; }
.benefit-card:hover { border-color: #bfdbfe; transform: translateY(-4px); box-shadow: var(--shadow-luxe); }
.benefit-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, #eff6ff, #dbeafe); display: flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 16px; transition: all 0.3s; }
.benefit-card:hover .benefit-icon { background: linear-gradient(135deg, #0a2a6b, #2546d4); color: #fff; }
.benefit-card h3 { font-size: 17px; font-weight: 700; color: var(--slate-900); }
.benefit-card p { margin-top: 8px; font-size: 14px; color: var(--slate-600); line-height: 1.65; }

/* ==================== CONTACT PAGE ==================== */
.contact-form-section { background: #f8fafc; }
.contact-page-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.contact-form-card { background: #fff; border-radius: 28px; padding: 40px; box-shadow: var(--shadow-luxe); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--slate-700); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 14px 18px; border: 1.5px solid #e2e8f0; border-radius: 12px; font-family: var(--font-body); font-size: 15px; color: var(--slate-900); background: #f8fafc; transition: all 0.3s; outline: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(29,78,216,0.1); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
.contact-info-card { background: linear-gradient(135deg, #0a2a6b, #1d4ed8); border-radius: 28px; padding: 40px; color: #fff; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-info-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--font-heading); }
.contact-info-value { font-family: var(--font-heading); font-weight: 600; margin-top: 4px; font-size: 15px; }

/* ==================== ABOUT PAGE ==================== */
.about { background: linear-gradient(to bottom, #fff, #f8fafc); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-box { position: relative; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-luxe); }
.about-image-box img { width: 100%; height: 520px; object-fit: cover; }
.about-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,42,107,0.4), transparent); }
.about-badge {
  position: absolute; bottom: -24px; right: -8px; background: #fff; border-radius: 16px; box-shadow: var(--shadow-luxe);
  padding: 20px; border: 1px solid #f1f5f9; display: flex; align-items: center; gap: 16px;
  animation: float-slow 6s ease-in-out infinite;
}
.about-img-stack .about-badge{    position: absolute;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-luxe);
    padding: 20px;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float-slow 6s ease-in-out infinite;
    bottom: 120px;
    left: 40px;
  width:max-content;
}
@keyframes float-slow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
.about-badge-icon { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(135deg, #0a2a6b, #2546d4); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 20px; }
.about-badge-title { font-family: var(--font-heading); font-weight: 700; color: var(--slate-900); line-height: 1.2; }
.about-badge-sub { font-size: 14px; color: var(--slate-500); }
.about-decor-circle { position: absolute; top: -24px; left: -24px; width: 112px; height: 112px; border-radius: 50%; background: rgba(219,234,254,0.6); z-index: -1; }
.about-decor-dot { position: absolute; top: 50%; left: -40px; width: 16px; height: 16px; border-radius: 50%; background: var(--red); z-index: -1; }

.about-points { margin-top: 28px; display: grid; grid-template-columns: 1fr; gap: 12px; }
.about-points li { display: flex; align-items: center; gap: 10px; }
.about-points svg { color: var(--blue); flex-shrink: 0; }
.about-points span { font-size: 14px; font-weight: 500; color: var(--slate-700); }
.about-content .btn-primary { margin-top: 36px; }

/* ==================== SERVICES PAGE ==================== */
.services-listing { background: #fff; }
.services-detail-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.service-listing-card { display: grid; grid-template-columns: 1fr; gap: 0; border-radius: 24px; overflow: hidden; border: 1px solid #e2e8f0; transition: all 0.3s; box-shadow: 0 4px 20px rgba(10,42,107,0.06); }
.service-listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-luxe); border-color: #bfdbfe; }
.service-listing-img { height: 260px; overflow: hidden; }
.service-listing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.service-listing-card:hover .service-listing-img img { transform: scale(1.05); }
.service-listing-body { padding: 32px; background: #fff; }
.service-listing-body h3 { font-size: 22px; font-weight: 700; color: var(--slate-900); }
.service-listing-body p { margin-top: 12px; font-size: 15px; color: var(--slate-600); line-height: 1.7; }
.service-listing-tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag { padding: 5px 14px; border-radius: 999px; background: #eff6ff; color: var(--blue); font-size: 12px; font-family: var(--font-heading); font-weight: 600; }

/* ==================== AREA DETAIL PAGE ==================== */
.area-services-section { background: #fff; }
.area-service-card { display: flex; align-items: flex-start; gap: 18px; padding: 24px; border-radius: 18px; border: 1px solid #e2e8f0; background: #fff; transition: all 0.3s; margin-bottom: 16px; }
.area-service-card:hover { border-color: #bfdbfe; transform: translateX(4px); box-shadow: var(--shadow-luxe); }
.area-svc-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, #0a2a6b, #2546d4); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.area-svc-name { font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: var(--slate-900); }
.area-svc-desc { font-size: 14px; color: var(--slate-600); margin-top: 4px; line-height: 1.6; }

/* ==================== ANIMATIONS ==================== */
/* .fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); } */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ==================== RESPONSIVE ==================== */
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-tiles { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-features { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .mobile-areas-submenu { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .utility-bar { display: block; }
  .footer-cta-inner { flex-direction: row; text-align: left; }
  .footer-bottom-inner { flex-direction: row; }
  .areas-chips { grid-template-columns: 1fr 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr 1fr; }
  .services-detail-grid { grid-template-columns: 1fr 1fr; }
  .service-listing-card { grid-template-columns: 300px 1fr; }
  .service-listing-img { height: auto; }
  .contact-page-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .nav-items { display: flex; }
  .mobile-toggle { display: none; }
  .btn-quote { display: inline-flex; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 0.9fr 1.1fr; }
  .why-left { position: sticky; top: 112px; }
  .why-features { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .iaq-grid { grid-template-columns: 1fr 1fr; }
  .iaq-content { order: 1; }
  .iaq-image-wrap { order: 2; }
  .testimonials-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .areas-chips { grid-template-columns: 1fr 1fr 1fr; }
  .process-grid::before { content: ''; position: absolute; top: 40px; left: 12%; right: 12%; height: 2px; background: linear-gradient(to right, #dbeafe, #bfdbfe, #fecaca); }
  .content-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .about-story .about-grid { grid-template-columns: 1fr 1fr; }
  .mobile-menu { display: none !important; }
}

/* ==================== ADDITIONAL NAV STYLES (Homepage compat) ==================== */
.btn-quote { display: none; }
@media (min-width: 1024px) { .btn-quote { display: inline-flex; } }

/* Dropdown areas panel needs positioning fix */
.dropdown-areas { left: 0; right: 0; transform: translateX(0) translateY(8px); }
.nav-dropdown:hover .dropdown-areas { transform: translateX(0) translateY(0); }

/* Mobile sync btn */
.mobile-sync-btn { 
  display: flex; align-items: center; gap: 8px; margin-top: 8px; 
  padding: 10px 16px; border-radius: 999px; border: 1.5px solid #FBC600; 
  background: #fffbea; text-decoration: none;
}
.mobile-sync-btn span { font-family: var(--font-heading); font-size: 12px; font-weight: 600; color: #7a5c00; }


.area-services-alternating {
  background: #f8fafc;
  padding: 80px 0;
}

.svc-rows-container {
  display: flex;
  flex-direction: column;
  gap: 100px; /* Space between each row */
  margin-top: 60px;
}

.svc-row {
  display: flex;
  align-items: center;
  gap: 60px; /* Space between text and image */
}

/* Automatically flips every second row */
.svc-row:nth-child(even) {
  flex-direction: row-reverse;
}

.svc-content, 
.svc-image-wrap {
  flex: 1;
  width: 50%;
}

.svc-heading {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.svc-heading a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.svc-heading a:hover {
  color: #ef4444; /* Your primary theme accent brand color */
}

.svc-desc-p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4b5563; /* Muted gray text color */
  margin-bottom: 16px;
}

.svc-desc-p:last-of-type {
  margin-bottom: 0;
}

.svc-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.svc-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 350px;
}

/* Responsive adjustment for tablet and mobile sizes */
@media (max-width: 991px) {
  .svc-row, 
  .svc-row:nth-child(even) {
    flex-direction: column; /* Stack vertically on smaller screens */
    gap: 30px;
  }
  
  .svc-content, 
  .svc-image-wrap {
    width: 100%;
  }
  
  .svc-rows-container {
    gap: 60px;
  }
} 

/* Styling for the WordPress Block Editor (Gutenberg) to match front-end */
body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    color: #333333;
}

.wp-block-post-title {
    font-family: 'Poppins', sans-serif;
    color: #0a2a6b;
    font-weight: 700;
}



/* 1. Base state (hidden) */
.faq-a {
  max-height: 0 !important; /* Forces it shut by default */
  overflow: hidden !important;
  opacity: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;  display: none; /* Simply toggle display instead of calculating height */
  padding: 15px 0;
}

/* 2. Active state (visible) */
.faq-item.active .faq-a {
  max-height: 1000px !important; /* Overrides the 0 height with plenty of room */
  opacity: 1 !important;
  display: block !important;
  padding: 15px;
}

/* 3. Optional: Rotate the arrow icon when open */
.faq-icon {
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(90deg);
}
.faq-q {
  cursor: pointer;
}




/* Blog ------------------------------------------------------- */
.chip-row{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin-bottom:44px}
.chip{padding:10px 18px;border-radius:999px;background:#fff;border:1px solid var(--ink-100);font-family:var(--font-head);font-weight:600;font-size:.82rem;color:var(--ink-700);cursor:pointer;transition:all .2s ease}
.chip:hover{border-color:var(--red-600);color:var(--red-700)}
.chip.active{background:var(--ink-900);color:#fff;border-color:var(--ink-900)}
.blog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px}
.blog-card{background:#fff;border-radius:var(--radius-xl);overflow:hidden;border:1px solid var(--ink-100);box-shadow:var(--shadow-sm);display:flex;flex-direction:column;transition:all .3s ease;cursor:pointer}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:transparent}
.blog-featured{grid-column:span 2}
.blog-featured .bc-media{aspect-ratio:16/8}
.blog-featured h3{font-size:1.6rem}
.bc-media{position:relative;aspect-ratio:16/10;overflow:hidden}
.bc-media img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}
.blog-card:hover .bc-media img{transform:scale(1.06)}
.bc-tag{position:absolute;top:16px;left:16px;background:rgba(14,17,22,.85);color:#fff;padding:6px 12px;border-radius:999px;font-family:var(--font-head);font-weight:600;font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;backdrop-filter:blur(6px)}
.bc-body{padding:26px 26px 30px;display:flex;flex-direction:column;gap:10px;flex:1}
.bc-body h3{margin:0;font-size:1.2rem;line-height:1.3}
.bc-body p{color:var(--ink-500);font-size:.94rem;margin:0;flex:1}
.bc-link{display:inline-flex;align-items:center;gap:8px;color:var(--red-700);font-family:var(--font-head);font-weight:600;font-size:.9rem;margin-top:6px}
.bc-link svg{width:16px;height:16px;transition:transform .2s ease}
.blog-card:hover .bc-link svg{transform:translateX(4px)}
@media (max-width:960px){.blog-grid{grid-template-columns:1fr 1fr}.blog-featured{grid-column:span 2}}
@media (max-width:640px){.blog-grid{grid-template-columns:1fr}.blog-featured{grid-column:span 1}.blog-featured h3{font-size:1.2rem}}



@media (max-width:768px){
  .synchrony-blink-wrap{
    flex-direction: column;
  }
  .synchrony-blink-wrap img{
    height: 15px;
  }
  .synchrony-blink-text{
    font-size: 8px;
  }
}