/* ==========================================================================
   ANK Electric LLC - Premium Local Trade Design System
   ========================================================================== */

:root {
  /* Brand Color Tokens */
  --color-navy: #0B192C;
  --color-navy-dark: #060D17;
  --color-navy-light: #162C46;
  --color-amber: #F0A500;
  --color-amber-hover: #D99300;
  --color-amber-light: #FFF8E7;
  --color-gold: #FFC107;
  --color-slate-dark: #0F172A;
  --color-slate-body: #334155;
  --color-slate-muted: #64748B;
  --color-bg-light: #F8FAFC;
  --color-white: #FFFFFF;
  --color-border: #E2E8F0;
  --color-green: #10B981;
  --color-red: #EF4444;
  --color-blue: #2563EB;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 25, 44, 0.05);
  --shadow-md: 0 8px 24px rgba(11, 25, 44, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(11, 25, 44, 0.15);
  --shadow-gold: 0 8px 25px rgba(240, 165, 0, 0.35);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-slate-body);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-slate-dark);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* Layout Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 900px;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

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

.text-gold {
  color: var(--color-amber) !important;
}

.text-blue {
  color: var(--color-blue) !important;
}

.text-green {
  color: var(--color-green) !important;
}

.text-red {
  color: var(--color-red) !important;
}

.text-amber {
  color: var(--color-amber) !important;
}

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

.font-bold {
  font-weight: 700;
}

.section-header {
  margin-bottom: 3.5rem;
}

.sub-heading {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--color-slate-dark);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--color-slate-muted);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Buttons & Action CTAs
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.btn-primary-gold {
  background-color: var(--color-amber);
  color: var(--color-navy-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary-gold:hover {
  background-color: var(--color-amber-hover);
  transform: translateY(-2px);
}

.btn-outline-call {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline-call:hover {
  background-color: var(--color-white);
  color: var(--color-navy-dark);
  border-color: var(--color-white);
}

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

.btn-outline:hover {
  background-color: var(--color-bg-light);
  border-color: var(--color-slate-muted);
}

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

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-navy-dark);
}

.btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.btn-text {
  background: none;
  border: none;
  color: var(--color-slate-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.5rem;
}

.btn-text:hover {
  color: var(--color-amber);
}

/* ==========================================================================
   Top Announcement Utility Bar
   ========================================================================== */

.top-bar {
  background-color: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.emergency-badge {
  background-color: rgba(239, 68, 68, 0.2);
  color: #FF6B6B;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  border: 1px solid rgba(239, 68, 68, 0.4);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.pulse-icon {
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.15);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.top-phone {
  color: var(--color-amber);
  font-weight: 700;
}

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

.divider {
  opacity: 0.3;
}

/* ==========================================================================
   Primary Sticky Navigation Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(11, 25, 44, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.logo-emblem {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-amber) 0%, #D99300 100%);
  color: var(--color-navy-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 14px rgba(240, 165, 0, 0.4);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-tag {
  color: var(--color-amber);
}

.brand-sub {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-amber);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-amber);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-actions {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   Hero Section with Dynamic HD Video Background
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  overflow: hidden;
  color: var(--color-white);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(135deg, rgba(11, 25, 44, 0.45) 0%, rgba(6, 13, 23, 0.40) 100%);
}

.hero-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240, 165, 0, 0.25);
  border: 1px solid rgba(240, 165, 0, 0.5);
  color: var(--color-amber);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.375rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2.35rem, 4vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
}

.text-gold-highlight {
  color: var(--color-amber);
  background: linear-gradient(135deg, #FFD56B 0%, var(--color-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-trust-badges-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(11, 25, 44, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.625rem 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-badge-item i {
  font-size: 1.4rem;
}

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

.badge-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--color-white);
  line-height: 1.2;
}

.badge-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Hero Lead Form Card (Exact Reference Layout & High Contrast Typography) */
.hero-form-wrapper {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 4px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  padding: 2.5rem 2.25rem;
  color: var(--color-slate-dark);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.offer-title {
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--color-navy-dark);
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.promo-subhead {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #1E3A8A;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-subtitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1E293B;
  margin-top: 0.35rem;
}

.hero-lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-group.full-width {
  width: 100%;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1rem 1.15rem;
  border: 1.5px solid #94A3B8;
  border-radius: 4px;
  background-color: #ffffff;
  color: #0F172A;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #334155;
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-amber);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.3);
}

.btn-submit-form {
  width: 100%;
  background: linear-gradient(135deg, #F0A500 0%, #D99300 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  padding: 1.15rem;
  margin-top: 0.5rem;
  border-radius: 4px;
  border: none;
  box-shadow: 0 8px 20px rgba(240, 165, 0, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-submit-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(240, 165, 0, 0.5);
  background: linear-gradient(135deg, #FFB703 0%, #E09600 100%);
}

.form-privacy {
  font-size: 0.8438rem;
  color: var(--color-slate-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* ==========================================================================
   Continuous Slow Horizontal Certification Marquee
   ========================================================================== */

.marquee-section {
  background-color: var(--color-navy-dark);
  padding: 1.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.marquee-label-container {
  text-align: center;
  margin-bottom: 1rem;
}

.marquee-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-content {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-scroll 55s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 60px;
  padding: 0.75rem 1.75rem;
  background-color: var(--color-white);
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-slate-dark);
  white-space: nowrap;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.marquee-badge i {
  font-size: 1.25rem;
}

/* ==========================================================================
   Full-Width High-Impact Trust Stats Banner Section ("Box with Numbers")
   ========================================================================== */

.stats-banner-section {
  background: linear-gradient(135deg, #050B14 0%, var(--color-navy) 100%);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats-banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stats-big-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 800;
  color: var(--color-amber);
  line-height: 1;
  text-shadow: 0 4px 15px rgba(240, 165, 0, 0.3);
}

.stats-big-label {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Core Value Proposition Section (High Quality Stock Imagery)
   ========================================================================== */

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

.value-card {
  background-color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(240, 165, 0, 0.4);
}

.value-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.value-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.value-card:hover .value-card-image img {
  transform: scale(1.06);
}

.value-badge-icon {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 48px;
  height: 48px;
  background: var(--color-navy-dark);
  color: var(--color-amber);
  border: 2px solid var(--color-amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.value-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 1;
}

.value-card-body h3 {
  font-size: 1.35rem;
  color: var(--color-slate-dark);
}

.value-card-body p {
  color: var(--color-slate-body);
  font-size: 0.975rem;
}

.value-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.value-card-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-slate-dark);
}

.value-card-list i {
  color: var(--color-green);
}

/* ==========================================================================
   Comprehensive Services Grid
   ========================================================================== */

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

.service-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 2.25rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(240, 165, 0, 0.4);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--color-amber-light);
  color: var(--color-amber);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--color-slate-dark);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--color-slate-body);
}

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: 0.25rem;
}

.service-bullets li {
  font-size: 0.8438rem;
  color: var(--color-slate-muted);
}

.service-link {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  color: var(--color-amber);
}

/* ==========================================================================
   Interactive Estimate Calculator Widget
   ========================================================================== */

.calculator-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-white);
}

.calculator-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.calculator-header h2 {
  color: var(--color-white);
  font-size: 2.25rem;
}

.calculator-header p {
  color: rgba(255, 255, 255, 0.75);
}

.calc-steps-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
}

.calc-step-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  opacity: 0.5;
  transition: var(--transition-fast);
}

.calc-step-item.active {
  opacity: 1;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.calc-step-item.active .step-num {
  background: var(--color-amber);
  color: var(--color-navy-dark);
}

.step-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
}

.calc-step-content {
  display: none;
}

.calc-step-content.active {
  display: block;
}

.calc-step-content h3 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.calc-option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

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

.calc-option-btn,
.calc-service-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.calc-option-btn i,
.calc-service-btn i {
  font-size: 1.75rem;
  color: var(--color-amber);
}

.calc-option-btn:hover,
.calc-service-btn:hover,
.calc-option-btn.active,
.calc-service-btn.active {
  background: rgba(240, 165, 0, 0.2);
  border-color: var(--color-amber);
}

.calc-action-row {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}

.calc-result-box {
  padding: 2rem 1rem;
}

.result-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.result-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-amber);
  margin-bottom: 0.5rem;
}

.result-disclaimer {
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto 2rem auto;
}

.result-cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Deep Credibility Comparison Section
   ========================================================================== */

.table-responsive {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.comparison-table th {
  background-color: var(--color-bg-light);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-slate-dark);
}

.comparison-table th.highlight-column,
.comparison-table td.highlight-column {
  background-color: rgba(240, 165, 0, 0.08);
  border-left: 2px solid var(--color-amber);
  border-right: 2px solid var(--color-amber);
  font-weight: 600;
}

/* ==========================================================================
   Verified Google Reviews Section
   ========================================================================== */

.google-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.google-icon {
  font-size: 1.75rem;
  color: #4285F4;
}

.rating-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--color-slate-dark);
}

.stars-row {
  color: var(--color-amber);
  font-size: 1.15rem;
}

.reviews-count {
  font-size: 0.875rem;
  color: var(--color-slate-muted);
}

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

.review-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

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

.avatar-j {
  background-color: #E91E63;
}

.avatar-w {
  background-color: #9C27B0;
}

.avatar-d {
  background-color: #3F51B5;
}

.avatar-c {
  background-color: #009688;
}

.avatar-ch {
  background-color: #FF5722;
}

.avatar-a {
  background-color: #4CAF50;
}

.reviewer-meta h4 {
  font-size: 1rem;
  line-height: 1.2;
}

.review-date {
  font-size: 0.75rem;
  color: var(--color-slate-muted);
}

.google-card-icon {
  margin-left: auto;
  color: #4285F4;
  font-size: 1.25rem;
}

.review-stars {
  color: var(--color-amber);
  font-size: 0.9375rem;
}

.review-text {
  font-size: 0.9375rem;
  color: var(--color-slate-body);
  font-style: italic;
}

.owner-reply {
  background-color: var(--color-bg-light);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 0.8438rem;
  border-left: 3px solid var(--color-amber);
  margin-top: 0.5rem;
}

.owner-reply-header {
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

/* ==========================================================================
   Project Gallery Section
   ========================================================================== */

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

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 240px;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 25, 44, 0.88) 0%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: var(--color-white);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay h4 {
  color: var(--color-white);
  font-size: 1.05rem;
}

.gallery-overlay p {
  font-size: 0.8125rem;
  color: var(--color-amber);
}

/* ==========================================================================
   Location & Map Section
   ========================================================================== */

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

.location-info h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.location-info p {
  color: var(--color-slate-body);
  margin-bottom: 1.5rem;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.area-list li {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-contact-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-color: var(--color-white);
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.25rem;
  color: var(--color-amber);
  margin-top: 0.25rem;
}

.phone-link {
  color: var(--color-amber);
  font-weight: 800;
  font-size: 1.15rem;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-border);
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

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

.faq-icon {
  color: var(--color-amber);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--color-slate-body);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

/* ==========================================================================
   Final CTA Banner Section
   ========================================================================== */

.cta-banner-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, #081323 100%);
  color: var(--color-white);
  padding: 5rem 0;
}

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

.cta-banner-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.site-footer {
  background-color: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4.5rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-desc {
  font-size: 0.9375rem;
  margin: 1.25rem 0;
  line-height: 1.6;
}

.footer-license {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8438rem;
  color: var(--color-white);
}

.footer-title {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
}

.footer-contact i {
  margin-top: 0.25rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  font-size: 0.8438rem;
}

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

.footer-credit {
  color: var(--color-amber);
}

/* ==========================================================================
   Responsive Breakpoints & Touch Optimization
   ========================================================================== */

/* Touch Target Minimum Sizing Guarantee */
.btn,
.nav-link,
.faq-question,
.form-group input,
.form-group select,
.form-group textarea,
.mobile-toggle {
  min-height: 48px;
}

/* Touch Device Sticky Hover Removal */
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-2px);
  }

  .value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(240, 165, 0, 0.4);
  }

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

/* Tablet Breakpoint (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stats-banner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stats-banner-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

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

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

/* Mobile & Tablet Drawer Breakpoint (max-width: 768px) */
@media (max-width: 768px) {

  /* Mobile Top Announcement Bar Optimization */
  .top-bar {
    padding: 0.5rem 0;
    font-size: 0.8125rem;
  }

  .top-bar-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    text-align: center;
  }

  .top-bar-left {
    justify-content: center;
    width: 100%;
  }

  .top-bar-info {
    display: none;
    /* Hide redundant address on mobile top bar for clean layout */
  }

  .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    line-height: 1.2;
  }

  .top-bar-right span,
  .top-bar-right a,
  .top-bar-right i {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    line-height: 1.2;
  }

  .divider {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
  }

  .rating-highlight {
    font-size: 0.8125rem;
  }

  .top-bar .top-phone {
    font-size: 0.8125rem;
    min-height: auto !important;
    gap: 0.375rem;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(11, 25, 44, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 2rem;
    transition: var(--transition-normal);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Hide header desktop CTA buttons on mobile so yellow button never spills off-screen */
  .header-actions .btn-outline-call,
  .header-actions .btn-primary-gold {
    display: none !important;
  }

  .mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .btn-full {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .value-grid,
  .services-grid,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

/* Small Mobile Breakpoint (max-width: 576px - iPhone 14 Pro Max 430px) */
@media (max-width: 576px) {

  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .container {
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-sub {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }

  .hero-title,
  .offer-title,
  .section-title {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-form-wrapper {
    padding: 1.75rem 1.15rem;
    width: 100%;
  }

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

  .hero-trust-badges-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badge-item {
    width: 100%;
  }

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

  .stats-big-number {
    font-size: 2.75rem;
  }

  .marquee-section {
    overflow: hidden;
    max-width: 100vw;
  }

  .table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 540px;
  }
}