/*
Theme Name: Water Damage Restoration Clapham
Theme URI: https://waterdamagerestorationclapham.co.uk
Description: Industrial Premium WordPress theme for Water Damage Restoration Clapham — B2B commercial water damage restoration company
Version: 1.0.0
Author: WDRC
Author URI: https://waterdamagerestorationclapham.co.uk
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wdrc
Tags: one-column, two-columns, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
  --color-navy: #003366;
  --color-navy-light: #004a94;
  --color-navy-dark: #002244;
  --color-orange: #FF5722;
  --color-orange-light: #FF7043;
  --color-orange-dark: #E64A19;
  --color-charcoal: #1A1A1A;
  --color-offwhite: #F8F9FA;
  --color-slate: #64748B;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-green: #22C55E;
  --color-green-light: #4ADE80;
  --color-gray-100: #F1F5F9;
  --color-gray-200: #E2E8F0;
  --color-gray-300: #CBD5E1;
  --color-gray-400: #94A3B8;
  --color-gray-500: #64748B;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1E293B;
  --color-gray-900: #0F172A;
  --color-glass-bg: rgba(255, 255, 255, 0.08);
  --color-glass-border: rgba(255, 255, 255, 0.12);
  --color-glass-bg-light: rgba(255, 255, 255, 0.7);
  --color-glass-border-light: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-orange: 0 10px 30px rgba(255, 87, 34, 0.3);
  --shadow-navy: 0 10px 30px rgba(0, 51, 102, 0.3);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-slower: 700ms ease;
  --z-mobile-menu: 1000;
  --z-mobile-sticky: 999;
  --z-header: 998;
  --z-dropdown: 997;
  --z-overlay: 996;
  --z-tooltip: 995;
  --container-max: 1280px;
  --container-narrow: 1024px;
  --header-height: 72px;
  --top-bar-height: 40px;
}

/* ==========================================================================
   FONT IMPORTS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-charcoal);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-slate);
}

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

/* ==========================================================================
   MODERN SCROLLBAR
   ========================================================================== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--color-navy);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-gray-100);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-navy-light);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-navy) var(--color-gray-100);
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 7rem 0;
}

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

.section-dark {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}

.section-light {
  background-color: var(--color-offwhite);
}

.section-gray {
  background-color: var(--color-gray-100);
}

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

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex {
  display: flex;
}

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

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.gap-sm { gap: 0.5rem; }
.gap-md { gap: 1rem; }
.gap-lg { gap: 1.5rem; }
.gap-xl { gap: 2rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--color-white); }
.text-navy { color: var(--color-navy); }
.text-orange { color: var(--color-orange); }
.text-slate { color: var(--color-slate); }

.mt-sm { margin-top: 0.5rem; }
.mt-md { margin-top: 1rem; }
.mt-lg { margin-top: 1.5rem; }
.mt-xl { margin-top: 2rem; }
.mt-2xl { margin-top: 3rem; }

.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1rem; }
.mb-lg { margin-bottom: 1.5rem; }
.mb-xl { margin-bottom: 2rem; }
.mb-2xl { margin-bottom: 3rem; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background-color: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 87, 34, 0.4);
}

.btn-secondary {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.btn-secondary:hover {
  background-color: var(--color-navy-light);
  border-color: var(--color-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-navy);
}

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

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

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

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

.btn-ghost {
  background-color: transparent;
  color: var(--color-orange);
  border-color: transparent;
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  background-color: rgba(255, 87, 34, 0.1);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.85rem;
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   GLASSMORPHISM
   ========================================================================== */
.glass {
  background: var(--color-glass-bg-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-glass-border-light);
  border-radius: var(--radius-2xl);
}

.glass-dark {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
}

.glass-card {
  background: var(--color-glass-bg-light);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-glass-border-light);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  transition: all var(--transition-base);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background-color: var(--color-charcoal);
  color: var(--color-gray-300);
  font-size: 0.8rem;
  font-weight: 500;
  height: var(--top-bar-height);
  transition: all var(--transition-base);
  overflow: hidden;
}

.site-header.scrolled .top-bar {
  height: 0;
  opacity: 0;
  padding: 0;
  margin: 0;
  border: none;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.status-dot-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-green);
  animation: pulse-ring 2s ease-out infinite;
  opacity: 0;
}

.top-bar-phone {
  color: var(--color-white);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.top-bar-phone:hover {
  color: var(--color-orange);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-right a {
  color: var(--color-gray-400);
  transition: color var(--transition-fast);
  font-size: 0.85rem;
}

.top-bar-right a:hover {
  color: var(--color-white);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  transition: all var(--transition-base);
  background-color: transparent;
}

.site-header.scrolled {
  background-color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.main-nav {
  background-color: transparent;
  height: var(--header-height);
  transition: all var(--transition-base);
}

.site-header.scrolled .main-nav {
  background-color: var(--color-white);
}

.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: var(--z-header);
}

.site-logo img {
  height: 40px;
  width: auto;
}

.site-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-white);
  line-height: 1.1;
  transition: color var(--transition-base);
}

.site-header.scrolled .site-logo-text {
  color: var(--color-navy);
}

.site-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition-base);
}

.site-header.scrolled .site-logo-text span {
  color: var(--color-slate);
}

/* Main Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu a {
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.nav-menu a:hover,
.nav-menu a.current-menu-item {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
}

.site-header.scrolled .nav-menu a {
  color: var(--color-charcoal);
}

.site-header.scrolled .nav-menu a:hover,
.site-header.scrolled .nav-menu a.current-menu-item {
  color: var(--color-navy);
  background-color: rgba(0, 51, 102, 0.05);
}

/* Services Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-base);
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-dropdown);
  border: 1px solid var(--color-gray-200);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--color-charcoal) !important;
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.nav-dropdown-menu a:hover {
  background-color: var(--color-offwhite) !important;
  color: var(--color-navy) !important;
}

.nav-dropdown-menu a svg {
  width: 20px;
  height: 20px;
  color: var(--color-orange);
  flex-shrink: 0;
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background-color: var(--color-orange);
  color: var(--color-white) !important;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-orange);
}

.nav-call-btn:hover {
  background-color: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 87, 34, 0.4);
}

.nav-call-btn svg {
  width: 16px;
  height: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: calc(var(--z-mobile-menu) + 1);
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.site-header.scrolled .hamburger span {
  background-color: var(--color-charcoal);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hamburger.active span {
  background-color: var(--color-white) !important;
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: var(--z-mobile-menu);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  height: 100dvh;
  background: var(--color-navy);
  z-index: calc(var(--z-mobile-menu) + 1);
  overflow-y: auto;
  transition: right var(--transition-slow);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--radius-full);
  color: var(--color-white);
  cursor: pointer;
  font-size: 1.5rem;
  transition: background var(--transition-fast);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-nav {
  flex: 1;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--transition-fast);
}

.mobile-menu-nav a:hover {
  color: var(--color-orange);
}

/* Mobile Menu Services Accordion */
.mobile-services-accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.mobile-services-toggle:hover {
  color: var(--color-orange);
}

.mobile-services-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
}

.mobile-services-accordion.active .mobile-services-toggle svg {
  transform: rotate(180deg);
}

.mobile-services-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.mobile-services-accordion.active .mobile-services-list {
  max-height: 500px;
}

.mobile-services-list a {
  padding: 0.75rem 0 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.mobile-menu-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-cta .btn {
  width: 100%;
  justify-content: center;
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  color: var(--color-white);
  font-weight: 600;
}

.mobile-menu-phone svg {
  color: var(--color-green);
}

/* ==========================================================================
   MOBILE STICKY BAR
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-mobile-sticky);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-gray-200);
  padding: 0.625rem 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.mobile-sticky-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background-color: var(--color-orange);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  box-shadow: var(--shadow-orange);
}

.mobile-sticky-phone svg {
  width: 16px;
  height: 16px;
}

.mobile-sticky-callback {
  padding: 0.625rem 1.25rem;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-charcoal);
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.85) 0%, rgba(26, 26, 26, 0.75) 50%, rgba(0, 51, 102, 0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: calc(var(--top-bar-height) + var(--header-height));
}

.hero-text {
  color: var(--color-white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-green-light);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--color-orange);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-note svg {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 0.25rem;
}

.hero-form-wrapper {
  display: flex;
  justify-content: flex-end;
}

/* ==========================================================================
   CALLBACK FORM
   ========================================================================== */
.callback-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  max-width: 400px;
  width: 100%;
}

.callback-form h3 {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.callback-form .form-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.callback-form .form-group {
  margin-bottom: 1rem;
}

.callback-form label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.callback-form input,
.callback-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.callback-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.callback-form input:focus,
.callback-form select:focus {
  outline: none;
  border-color: var(--color-orange);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.2);
}

.callback-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.callback-form select option {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.callback-form .btn-submit {
  width: 100%;
  padding: 0.875rem;
  margin-top: 0.5rem;
  position: relative;
}

.callback-form .btn-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.callback-form .btn-submit .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.callback-form .btn-submit.loading .spinner {
  display: inline-block;
}

.callback-form .btn-submit.loading .btn-text {
  display: none;
}

/* ==========================================================================
   TRUST BANNER
   ========================================================================== */
.trust-banner {
  background: var(--color-navy);
  padding: 1.5rem 0;
}

.trust-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--color-orange);
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
}

.trust-cert {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 500;
}

.trust-cert span {
  color: var(--color-gray-400);
}

/* ==========================================================================
   COST TICKER
   ========================================================================== */
.cost-ticker {
  background: var(--color-offwhite);
  padding: 5rem 0;
  text-align: center;
}

.cost-ticker-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cost-ticker-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cost-ticker-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cost-ticker-icon svg {
  color: #fff;
}

.cost-ticker h2 {
  font-size: 1.5rem;
  color: var(--color-charcoal);
  margin-bottom: 0;
  text-align: left;
  line-height: 1.3;
}

.cost-ticker .ticker-subtitle {
  color: var(--color-slate);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
  padding-left: 60px;
}

.ticker-counter-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.ticker-currency {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-orange);
}

.ticker-value {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(255, 87, 34, 0.2);
}

.ticker-per-second {
  font-size: 1rem;
  color: var(--color-slate);
  margin-bottom: 2rem;
  font-weight: 500;
}

.ticker-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ticker-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-navy);
  font-weight: 500;
  font-size: 0.9rem;
  background: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.ticker-stat svg {
  color: var(--color-orange);
  flex-shrink: 0;
}

.ticker-stat strong {
  color: var(--color-orange);
  font-weight: 700;
}

.ticker-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-navy);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.ticker-urgency svg {
  color: var(--color-orange);
}

/* ==========================================================================
   BEFORE/AFTER SLIDER
   ========================================================================== */
.before-after-section {
  padding: 5rem 0;
  background: var(--color-white);
}

.before-after-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.before-after-section .section-subtitle {
  text-align: center;
  color: var(--color-slate);
  margin-bottom: 3rem;
}

.before-after-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  aspect-ratio: 16/10;
  touch-action: none;
}

.before-after-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.before-after-after {
  z-index: 0;
}

.before-after-label {
  position: absolute;
  top: 1.5rem;
  padding: 0.375rem 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  z-index: 3;
}

.before-after-label.label-before {
  left: 1.5rem;
}

.before-after-label.label-after {
  right: 1.5rem;
}

.before-after-slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--color-white);
  z-index: 4;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.before-after-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background: var(--color-white);
  border-radius: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}

.before-after-handle svg {
  width: 20px;
  height: 20px;
  color: var(--color-charcoal);
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline-section {
  padding: 5rem 0;
  background: var(--color-offwhite);
}

.timeline-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.timeline-section .section-subtitle {
  text-align: center;
  color: var(--color-slate);
  margin-bottom: 3rem;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-navy), var(--color-orange));
  transform: translateX(-50%);
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: center;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step:nth-child(even) .timeline-content {
  grid-column: 2;
  text-align: left;
}

.timeline-step:nth-child(even) .timeline-spacer {
  grid-column: 1;
}

.timeline-step:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-step:nth-child(odd) .timeline-spacer {
  grid-column: 2;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  z-index: 2;
  box-shadow: 0 0 0 6px var(--color-offwhite), 0 0 0 8px var(--color-navy);
}

.timeline-dot svg {
  width: 22px;
  height: 22px;
}

.timeline-content {
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.timeline-content:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.timeline-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.timeline-step:nth-child(even) .timeline-number {
  margin-left: 0;
}

.timeline-step:nth-child(odd) .timeline-number {
  margin-right: auto;
  margin-left: 0;
}

.timeline-step:nth-child(even) .timeline-number {
  margin-left: auto;
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--color-slate);
  margin-bottom: 0;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-section {
  padding: 5rem 0;
  background: var(--color-white);
}

.services-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.services-section .section-subtitle {
  text-align: center;
  color: var(--color-slate);
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-navy), var(--color-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.1), rgba(255, 87, 34, 0.1));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  transform: scale(1.05);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-navy);
  transition: color var(--transition-base);
}

.service-card:hover .service-card-icon svg {
  color: var(--color-white);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--color-charcoal);
  transition: color var(--transition-fast);
}

.service-card:hover h3 {
  color: var(--color-navy);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-slate);
  margin-bottom: 1.25rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: all var(--transition-fast);
}

.service-card-link:hover {
  gap: 0.75rem;
  color: var(--color-orange-dark);
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   WHO WE SERVE
   ========================================================================== */
.who-we-serve-section {
  padding: 5rem 0;
  background: var(--color-offwhite);
}

.who-we-serve-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.who-we-serve-section .section-subtitle {
  text-align: center;
  color: var(--color-slate);
  margin-bottom: 3rem;
}

.who-we-serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.who-we-serve-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.who-we-serve-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.who-we-serve-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.who-we-serve-card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-white);
}

.who-we-serve-card h3 {
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
}

.who-we-serve-card ul {
  text-align: left;
}

.who-we-serve-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--color-slate);
}

.who-we-serve-card ul li svg {
  width: 20px;
  height: 20px;
  color: var(--color-green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   CASE STUDY
   ========================================================================== */
.case-study-section {
  padding: 5rem 0;
  background: var(--color-white);
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.case-study-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.case-study-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.case-study-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(255, 87, 34, 0.1);
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.case-study-content h2 {
  font-size: 1.75rem;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.case-study-content p {
  color: var(--color-slate);
  margin-bottom: 2rem;
}

.case-study-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.case-study-stat {
  background: var(--color-offwhite);
  border-radius: var(--radius-xl);
  padding: 1rem;
  text-align: center;
}

.case-study-stat-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.case-study-stat-value span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-slate);
}

.case-study-stat-label {
  font-size: 0.75rem;
  color: var(--color-slate);
  font-weight: 500;
}

/* ==========================================================================
   INTERACTIVE MAP
   ========================================================================== */
.interactive-map-section {
  padding: 5rem 0;
  background: var(--color-charcoal);
  color: var(--color-white);
}

.interactive-map-section h2 {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 0.5rem;
}

.interactive-map-section .section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3rem;
}

.interactive-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.map-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 500px;
  margin: 0 auto;
}

.map-circle {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.map-circle-1 { width: 30%; height: 30%; }
.map-circle-2 { width: 55%; height: 55%; }
.map-circle-3 { width: 80%; height: 80%; }
.map-circle-4 { width: 100%; height: 100%; }

.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--color-orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  transition: all var(--transition-fast);
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.3);
}

.map-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-orange);
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
}

.map-dot:hover {
  transform: translate(-50%, -50%) scale(1.3);
  box-shadow: 0 0 0 8px rgba(255, 87, 34, 0.3);
}

.map-dot.active {
  background: var(--color-green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3);
}

.map-dot-label {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.map-dot:hover .map-dot-label {
  opacity: 1;
}

.map-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.map-areas-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.map-area-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.map-area-item:hover,
.map-area-item.active {
  background: rgba(255, 87, 34, 0.1);
  border-color: rgba(255, 87, 34, 0.3);
}

.map-area-item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.map-area-item-dot {
  width: 8px;
  height: 8px;
  background: var(--color-orange);
  border-radius: 50%;
}

.map-area-item.active .map-area-item-dot {
  background: var(--color-green);
}

.map-area-item-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.map-area-item-time {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.map-detail-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.map-detail-card h3 {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.map-detail-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.map-detail-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.map-detail-stat {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
}

.map-detail-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.25rem;
}

.map-detail-stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-orange);
}

/* ==========================================================================
   INSURANCE PUSH
   ========================================================================== */
.insurance-section {
  padding: 5rem 0;
  background: var(--color-charcoal);
  color: var(--color-white);
}

.insurance-section h2 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.insurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.insurance-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.insurance-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.insurance-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 87, 34, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.insurance-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-orange);
}

.insurance-feature h4 {
  color: var(--color-white);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.insurance-feature p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.insurance-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
}

.insurance-card h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.insurance-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.insurance-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
}

.insurance-badge svg {
  width: 24px;
  height: 24px;
  color: var(--color-green);
  flex-shrink: 0;
}

.insurance-badge span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  padding: 5rem 0;
  background: var(--color-offwhite);
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.testimonials-section .section-subtitle {
  text-align: center;
  color: var(--color-slate);
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
}

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

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #FBBF24;
  fill: #FBBF24;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--color-slate);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 3rem;
  font-family: Georgia, serif;
  color: var(--color-orange);
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author-info h4 {
  font-size: 0.9rem;
  color: var(--color-charcoal);
}

.testimonial-author-info p {
  font-size: 0.8rem;
  color: var(--color-slate);
  margin-bottom: 0;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.final-cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(60px);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.final-cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.final-cta-actions .btn {
  box-shadow: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-cta-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.footer-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 87, 34, 0.15);
  border-radius: 50%;
  filter: blur(80px);
}

.footer-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 250px;
  height: 250px;
  background: rgba(255, 87, 34, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.footer-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-cta-inner h2 {
  color: var(--color-white);
  font-size: 1.75rem;
}

.footer-cta-inner p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.site-footer {
  background: var(--color-charcoal);
  color: var(--color-gray-400);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p {
  color: var(--color-gray-400);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Footer Social Proof Badges */
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gray-300);
}

.footer-badge svg {
  width: 14px;
  height: 14px;
  color: var(--color-green);
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  color: var(--color-gray-400);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.footer-links a:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.footer-links a svg {
  width: 12px;
  height: 12px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover svg {
  opacity: 1;
}

/* Footer Contact Info */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: 0.9rem;
  color: var(--color-gray-400);
  margin-bottom: 0;
}

.footer-contact-item a:hover {
  color: var(--color-white);
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-gray-500);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--color-gray-500);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-ring {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.animate-fade-in.visible {
  opacity: 1;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Staggered animation delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* ==========================================================================
   PAGE HERO BANNERS (for inner pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 10rem 0 4rem;
  background: var(--color-navy);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.7));
  z-index: 1;
}

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

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.page-hero h1 {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.page-hero-breadcrumb a:hover {
  color: var(--color-white);
}

.page-hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

.page-hero-breadcrumb .current {
  color: var(--color-orange);
}

/* ==========================================================================
   PAGE CONTENT LAYOUTS
   ========================================================================== */
.page-content {
  padding: 4rem 0;
}

.page-content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
}

.page-main-content h2 {
  font-size: 1.75rem;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.page-main-content h3 {
  font-size: 1.35rem;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.page-main-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-slate);
}

.page-main-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.page-main-content ul li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--color-slate);
}

.page-main-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background: var(--color-orange);
  border-radius: 50%;
}

/* Sidebar Widget */
.sidebar-widget {
  background: var(--color-offwhite);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-widget h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.sidebar-widget ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-widget ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: var(--color-slate);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.sidebar-widget ul li a:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

/* ==========================================================================
   SERVICE PAGE SPECIFIC
   ========================================================================== */
.service-process {
  padding: 4rem 0;
  background: var(--color-offwhite);
}

.service-process h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.service-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
}

.service-process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.service-process-step h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.service-process-step p {
  font-size: 0.85rem;
  color: var(--color-slate);
  margin-bottom: 0;
}

.service-equipment {
  padding: 4rem 0;
  background: var(--color-white);
}

.service-equipment h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.equipment-card {
  padding: 1.5rem;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-base);
}

.equipment-card:hover {
  border-color: var(--color-orange);
  box-shadow: var(--shadow-lg);
}

.equipment-card svg {
  width: 36px;
  height: 36px;
  color: var(--color-navy);
  margin: 0 auto 1rem;
}

.equipment-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.equipment-card p {
  font-size: 0.85rem;
  color: var(--color-slate);
  margin-bottom: 0;
}

/* Related Services */
.related-services {
  padding: 4rem 0;
  background: var(--color-offwhite);
}

.related-services h2 {
  text-align: center;
  margin-bottom: 3rem;
}

/* FAQ Accordion */
.faq-section {
  padding: 4rem 0;
  background: var(--color-white);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.active {
  border-color: var(--color-navy);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-charcoal);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-navy);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--color-slate);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--color-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-slate);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form h2 {
  margin-bottom: 0.5rem;
}

.contact-form .form-subtitle {
  color: var(--color-slate);
  margin-bottom: 2rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-charcoal);
  margin-bottom: 0.375rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  background: var(--color-white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(0, 51, 102, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-navy);
}

.contact-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--color-slate);
  margin-bottom: 0;
}

.contact-map-placeholder {
  background: var(--color-gray-100);
  border-radius: var(--radius-xl);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-slate);
  font-weight: 500;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-story {
  padding: 4rem 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-content h2 {
  margin-bottom: 1rem;
}

.about-values {
  padding: 4rem 0;
  background: var(--color-offwhite);
}

.about-values h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.value-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.value-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-slate);
  margin-bottom: 0;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  text-align: center;
}

.error-404-content {
  max-width: 500px;
}

.error-404-number {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
  opacity: 0.15;
  margin-bottom: -1rem;
}

.error-404 h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-404 p {
  color: var(--color-slate);
  margin-bottom: 2rem;
}

.error-404 .search-form {
  max-width: 400px;
  margin: 0 auto 2rem;
}

.error-404 .search-form label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.error-404 .search-form .search-input-wrapper {
  display: flex;
  gap: 0.5rem;
}

.error-404 .search-form input[type="search"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
}

.error-404 .search-form input[type="search"]:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

/* ==========================================================================
   BLOG / POSTS
   ========================================================================== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.post-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.post-card:hover .post-card-image img {
  transform: scale(1.05);
}

.post-card-content {
  padding: 1.5rem;
}

.post-card-date {
  font-size: 0.8rem;
  color: var(--color-slate);
  margin-bottom: 0.5rem;
}

.post-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.post-card h3 a {
  transition: color var(--transition-fast);
}

.post-card h3 a:hover {
  color: var(--color-orange);
}

.post-card p {
  font-size: 0.9rem;
  color: var(--color-slate);
  margin-bottom: 1rem;
}

.post-card-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap var(--transition-fast);
}

.post-card-link:hover {
  gap: 0.75rem;
}

/* Single Post */
.single-post {
  padding: 4rem 0;
}

.single-post-featured-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
}

.single-post-featured-image img {
  width: 100%;
  height: auto;
}

.single-post-content {
  max-width: 800px;
  margin: 0 auto;
}

.single-post-content h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-gray-200);
  color: var(--color-slate);
  font-size: 0.9rem;
}

.single-post-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-slate);
}

.single-post-body h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.single-post-body p {
  margin-bottom: 1.25rem;
}

/* Comments */
.comments-section {
  max-width: 800px;
  margin: 3rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid var(--color-gray-200);
}

.comments-section h3 {
  margin-bottom: 2rem;
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-offwhite);
  border-radius: var(--radius-xl);
}

.comment-avatar {
  width: 48px;
  height: 48px;
  background: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  flex-shrink: 0;
}

.comment-content h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.comment-content .comment-date {
  font-size: 0.8rem;
  color: var(--color-slate);
  margin-bottom: 0.5rem;
}

.comment-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Comment Form */
.comment-respond {
  margin-top: 2rem;
}

.comment-respond h3 {
  margin-bottom: 1.5rem;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.comment-form textarea {
  min-height: 120px;
  resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.comment-form .form-submit .submit {
  background: var(--color-navy);
  color: var(--color-white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.comment-form .form-submit .submit:hover {
  background: var(--color-navy-light);
}

/* ==========================================================================
   SERVICES OVERVIEW PAGE
   ========================================================================== */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-overview-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  transition: all var(--transition-base);
}

.service-overview-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.service-overview-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.08), rgba(255, 87, 34, 0.08));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-overview-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-navy);
}

.service-overview-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-overview-card p {
  font-size: 0.9rem;
  color: var(--color-slate);
  margin-bottom: 1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet and below */
@media (max-width: 1024px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .hero h1 { font-size: 2.5rem; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-form-wrapper { justify-content: center; }
  .callback-form { max-width: 100%; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .who-we-serve-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .case-study-grid { grid-template-columns: 1fr; }
  .interactive-map-grid { grid-template-columns: 1fr; }
  .insurance-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .page-content-grid { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-process-steps { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .services-overview-grid { grid-template-columns: 1fr; }

  .posts-grid { grid-template-columns: repeat(2, 1fr); }

  /* Timeline responsive */
  .timeline::before { left: 24px; }
  .timeline-step { grid-template-columns: 1fr; padding-left: 60px; }
  .timeline-step:nth-child(even) .timeline-content,
  .timeline-step:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: left;
  }
  .timeline-step:nth-child(even) .timeline-spacer,
  .timeline-step:nth-child(odd) .timeline-spacer {
    display: none;
  }
  .timeline-dot {
    left: 24px;
    top: 0;
    transform: translate(-50%, 0);
    width: 40px;
    height: 40px;
  }
  .timeline-step:nth-child(odd) .timeline-number,
  .timeline-step:nth-child(even) .timeline-number {
    margin-left: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4.5rem 0; }

  /* Top Bar */
  .top-bar { font-size: 0.7rem; }
  .top-bar-left { gap: 0.75rem; }
  .top-bar-right { display: none; }

  /* Navigation */
  .nav-menu,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile Sticky Bar */
  .mobile-sticky-bar {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: calc(var(--top-bar-height) + var(--header-height) + 2rem);
    padding-bottom: 2rem;
  }

  .hero h1 { font-size: 1.875rem; }
  .hero-description { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }

  /* Callback Form */
  .callback-form { padding: 1.5rem; }

  /* Trust Banner */
  .trust-banner .container {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-divider {
    width: 40px;
    height: 1px;
  }

  /* Cost Ticker */
  .ticker-value { font-size: 3rem; }

  /* Before/After */
  .before-after-container { aspect-ratio: 4/3; }
  .before-after-handle { width: 52px; height: 52px; }
  .before-after-handle svg { width: 24px; height: 24px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .who-we-serve-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Case Study */
  .case-study-stats { grid-template-columns: repeat(2, 1fr); }

  /* Map */
  .map-visual { max-width: 300px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-cta-inner { text-align: center; justify-content: center; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Final CTA */
  .final-cta-content h2 { font-size: 1.75rem; }
  .final-cta-actions { flex-direction: column; align-items: stretch; }

  /* Page Hero */
  .page-hero { padding: 8rem 0 3rem; }
  .page-hero h1 { font-size: 1.75rem; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }

  /* Service Process */
  .service-process-steps { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-form .form-row { grid-template-columns: 1fr; }

  /* Posts */
  .posts-grid { grid-template-columns: 1fr; }

  /* CTA Banner */
  .footer-cta-banner::before,
  .footer-cta-banner::after {
    display: none;
  }

  /* Glass card padding reduction */
  .glass-card { padding: 1.5rem; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.35rem; }

  .hero h1 { font-size: 1.625rem; }

  .btn { padding: 0.75rem 1.5rem; font-size: 0.85rem; }
  .btn-lg { padding: 0.875rem 2rem; }

  .case-study-stats { grid-template-columns: 1fr; }

  .map-detail-stats { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
  .site-header,
  .site-footer,
  .footer-cta-banner,
  .mobile-sticky-bar,
  .mobile-menu,
  .mobile-menu-overlay,
  .nav-call-btn,
  .callback-form,
  .final-cta-section {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: #fff !important;
  }

  .hero h1 {
    color: #000;
    font-size: 18pt;
  }
}

/* ==========================================================================
   WORDPRESS SPECIFIC OVERRIDES
   ========================================================================== */
.wp-block-image {
  margin: 2rem 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.wp-block-image img {
  border-radius: var(--radius-xl);
}

.wp-block-gallery {
  margin: 2rem 0;
}

.alignleft {
  float: left;
  margin: 0 1.5rem 1rem 0;
}

.alignright {
  float: right;
  margin: 0 0 1rem 1.5rem;
}

.aligncenter {
  display: block;
  margin: 2rem auto;
}

.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.wp-caption {
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.wp-caption-text {
  font-size: 0.85rem;
  color: var(--color-slate);
  text-align: center;
  padding: 0.5rem;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-orange);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  font-weight: 600;
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}
