/* =============================================
   Guardian Plumbing and Drains LLC
   Fort Myers, FL

   Palette: Deep navy (#0B1D33), white (#FFFFFF),
            orange safety accent (#FF6B00)
   Fonts: Barlow (display/headings) + Inter (body)
   Aesthetic: Trustworthy, professional, blue-collar,
              shield/guardian motif, emergency-ready
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --navy: #0B1D33;
  --navy-dark: #06101F;
  --navy-mid: #112744;
  --navy-light: #1A3655;
  --primary-light: #4A7AB5;
  --accent: #FF6B00;
  --accent-dark: #D45A00;
  --accent-light: rgba(255, 107, 0, 0.12);
  --accent-glow: rgba(255, 107, 0, 0.25);
  --white: #FFFFFF;
  --gray-50: #F7F9FB;
  --gray-100: #EEF2F6;
  --gray-200: #D8DFE8;
  --gray-300: #B0BCCA;
  --gray-400: #8494A7;
  --gray-500: #5E7188;
  --gray-600: #3D5068;
  --text: #1A2332;
  --text-muted: #5E7188;
  --text-light: #8494A7;

  --font-display: 'Barlow', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(11, 29, 51, 0.08);
  --shadow: 0 4px 16px rgba(11, 29, 51, 0.1);
  --shadow-lg: 0 12px 40px rgba(11, 29, 51, 0.15);
  --shadow-accent: 0 4px 20px rgba(255, 107, 0, 0.25);

  --nav-height: 72px;
  --nav-height-scrolled: 64px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section Utilities ---------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

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

.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}

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

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

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

.btn--white:hover {
  background: var(--gray-50);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 15px;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn--full {
  width: 100%;
}

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__orb,
  .hero__drop,
  .hero__particle,
  .hero__check-path,
  .hero__scroll-dot,
  .spinner {
    animation: none !important;
  }
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(11, 29, 51, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: height 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
  height: var(--nav-height-scrolled);
  background: rgba(6, 16, 31, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__mark {
  width: 38px;
  height: 42px;
  flex-shrink: 0;
}

.logo__shield {
  width: 100%;
  height: 100%;
  color: var(--white);
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.logo__sub {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}

/* Nav Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: 13px;
  padding: 10px 20px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 16, 31, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav__mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease;
}

.nav__mobile-link:hover {
  color: var(--accent);
}

.nav__mobile-cta {
  margin-top: 24px;
  justify-content: center;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 0, 0.08);
  top: 10%;
  right: -10%;
  animation: float 20s ease-in-out infinite;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(74, 122, 181, 0.1);
  bottom: 20%;
  left: -5%;
  animation: float 25s ease-in-out infinite reverse;
}

.hero__orb--3 {
  width: 200px;
  height: 200px;
  background: rgba(255, 107, 0, 0.05);
  top: 50%;
  left: 40%;
  animation: float 18s ease-in-out infinite 3s;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0 120px;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero SVG Illustration */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__illustration {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.hero__shield-bg {
  animation: gentlePulse 4s ease-in-out infinite;
}

.hero__drop--1 { animation: dropFall 3s ease-in-out infinite; }
.hero__drop--2 { animation: dropFall 3.5s ease-in-out infinite 0.5s; }
.hero__drop--3 { animation: dropFall 4s ease-in-out infinite 1s; }
.hero__drop--4 { animation: dropFall 3.2s ease-in-out infinite 1.5s; }

.hero__particle--1 { animation: float 6s ease-in-out infinite; }
.hero__particle--2 { animation: float 8s ease-in-out infinite 1s; }
.hero__particle--3 { animation: float 7s ease-in-out infinite 2s; }
.hero__particle--4 { animation: float 9s ease-in-out infinite 0.5s; }

.hero__check-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawStroke 1.5s ease forwards 1s;
}

/* Stats Bar */
.hero__stats {
  position: relative;
  z-index: 3;
  margin-top: -40px;
}

.hero__stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  min-width: 140px;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.hero__stat-suffix {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.hero__stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero__scroll-line {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.hero__scroll-dot {
  width: 2px;
  height: 12px;
  background: var(--accent);
  border-radius: 2px;
  position: absolute;
  top: 0;
  animation: scrollDown 2s ease-in-out infinite;
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 24px 0;
}

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Service Card */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-card__icon {
  background: var(--accent);
  color: var(--white);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.service-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-card__features {
  margin-bottom: 20px;
}

.service-card__features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: gap 0.2s ease;
}

.service-card__cta:hover {
  gap: 10px;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  padding: 100px 0;
  background: var(--gray-50);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.about__quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
  margin: 24px 0;
}

.about__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about__values {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

/* Owner Card */
.about__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about__card-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.about__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
}

.about__card-info {
  padding: 24px;
}

.about__card-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
}

.about__card-role {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about__card-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.about__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  background: rgba(74, 122, 181, 0.08);
  padding: 8px 14px;
  border-radius: var(--radius);
}

/* ========================================
   PROCESS
   ======================================== */
.process {
  padding: 100px 0;
  background: var(--white);
}

.process__timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process__line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.process__step {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}

.process__step:last-child {
  margin-bottom: 0;
}

.process__number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--accent);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 2;
  transition: all 0.3s ease;
}

.process__step:hover .process__number {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.process__content {
  padding-top: 8px;
}

.process__content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.process__content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================
   WHY CHOOSE US + SERVICE AREAS
   ======================================== */
.why {
  padding: 100px 0;
  background: var(--navy);
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}

.why .section-tag {
  color: var(--accent);
}

.why .section-title {
  color: var(--white);
}

.why__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.why__card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.why__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 0, 0.2);
}

.why__card-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.why__card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.why__card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* Service Areas */
.why__areas {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.why__areas-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.why__areas-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.why__area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
  cursor: default;
}

.area-tag:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.why__areas-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 100px 0;
  background: var(--gray-50);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

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

.testimonial-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card--featured .testimonial-card__text {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
}

.testimonial-card--featured .testimonial-card__avatar {
  background: rgba(255, 107, 0, 0.2);
}

.testimonial-card__author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.testimonial-card--featured .testimonial-card__author strong {
  color: var(--white);
}

.testimonial-card__author span {
  font-size: 13px;
  color: var(--text-light);
}

.testimonial-card--featured .testimonial-card__author span {
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0d2340 40%, #133157 100%);
  padding: 80px 0;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-banner__pattern {
  width: 100%;
  height: 100%;
}

.cta-banner__inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-banner__shield {
  margin-bottom: 16px;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.cta-banner h2 em {
  font-style: italic;
  color: var(--accent);
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
}

/* Info Card */
.contact__info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact__info-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contact__detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.contact__detail strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact__detail p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.contact__detail a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.contact__detail a:hover {
  color: var(--accent);
}

.contact__emergency {
  display: flex;
  gap: 12px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 24px;
  color: var(--accent);
}

.contact__emergency strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.contact__emergency p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

/* Map Placeholder */
.contact__map {
  margin-top: 20px;
}

.contact__map-placeholder {
  width: 100%;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy-mid);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
}

/* Contact Form */
.contact__form-wrapper {
  position: relative;
}

.contact__form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form__group {
  margin-bottom: 16px;
  position: relative;
}

.form__row .form__group {
  margin-bottom: 0;
}

.form__label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form__required {
  color: var(--accent);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form__input.error,
.form__select.error,
.form__textarea.error {
  border-color: #DC3545;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235E7188' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__error {
  display: none;
  font-size: 12px;
  color: #DC3545;
  margin-top: 4px;
}

.form__group.has-error .form__error {
  display: block;
}

/* Submit Button States */
.btn__loading {
  display: none;
}

.btn.loading .btn__text {
  display: none;
}

.btn.loading .btn__loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  animation: spin 1s linear infinite;
}

/* Success State */
.contact__success {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 10;
}

.contact__success.show {
  display: flex;
}

.contact__success-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact__success-icon {
  margin-bottom: 20px;
}

.contact__success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact__success p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo--footer .logo__name {
  font-size: 18px;
}

.logo--footer .logo__sub {
  font-size: 10px;
}

.footer__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

.footer__social-link:hover {
  background: var(--accent);
  color: var(--white);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul li,
.footer__col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}

.footer__col ul li a:hover {
  color: var(--accent);
}

/* Footer Bottom */
.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}

.footer__legal {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: var(--accent);
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
  z-index: 900;
}

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

.back-to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes gentlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes dropFall {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

@keyframes drawStroke {
  to { stroke-dashoffset: 0; }
}

@keyframes scrollDown {
  0% { top: 0; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 28px; opacity: 0; }
}

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

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

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

/* Tablet */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 0 100px;
  }

  .hero__desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .hero__stats-inner {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 24px;
  }

  .hero__stat {
    min-width: auto;
    padding: 8px 16px;
  }

  .hero__stat-divider {
    display: none;
  }

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

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

  .about__card {
    max-width: 400px;
  }

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

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

  .testimonials__grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .contact__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile {
    display: block;
  }

  .hero__title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .hero__stats-inner {
    flex-direction: column;
    gap: 12px;
  }

  .hero__stat {
    flex-direction: row;
    gap: 8px;
    padding: 4px 0;
  }

  .hero__stat-label {
    text-align: left;
    margin-top: 0;
  }

  .trust__inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

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

  .about__card {
    max-width: 100%;
  }

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

  .testimonials__grid .testimonial-card:last-child {
    max-width: 100%;
  }

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

  .contact__form {
    padding: 24px;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__legal {
    flex-direction: column;
    gap: 8px;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__scroll {
    display: none;
  }
}

/* ---------- Print Styles ---------- */
@media print {
  .nav,
  .hero__bg,
  .hero__scroll,
  .hero__visual,
  .cta-banner,
  .back-to-top,
  .nav__mobile,
  .contact__form-wrapper,
  .footer__social {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 32px 0;
    background: #fff;
  }

  .hero__title,
  .hero__desc {
    color: #000;
  }
}
