/* ==========================================================================
   Valon Installateur e.U. - Premium High-Converting UI/UX Design Architecture
   STRICT Vanilla CSS3 with Modern CSS Variables, Flexbox, & CSS Grid
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-primary: #ffffff;           /* Main sections background */
  --bg-alternate: #f8f9fa;         /* Alternate sections background */
  
  --text-heading: #1e293b;         /* Deep slate for headings (slate 800/900) */
  --text-body: #475569;            /* Slate grey for body text (slate 600) */
  --text-muted: #64748b;           /* Muted slate for subtext */
  
  --brand-primary: #003F87;        /* Deep Royal Blue from Valon Logo */
  --brand-primary-dark: #002855;   /* Navy blend color for gradients */
  --brand-secondary: #B3B3B3;      /* Light Grey from logo wrench graphic */
  --brand-secondary-light: #e2e8f0;/* Subtle border gray */
  
  --emergency-color: #ef4444;      /* Crisp Modern Red for 24h Notfall */
  --emergency-hover: #dc2626;
  --accent-gold: #f59e0b;          /* Gold accent for ratings & highlights */
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Elevation & Diffused Soft Shadows */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 40px rgba(0, 63, 135, 0.12);
  --shadow-emergency: 0 8px 24px rgba(239, 68, 68, 0.35);

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

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

p {
  color: var(--text-body);
}

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

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

ul {
  list-style: none;
}

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

/* Container & Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 48px 0;
  }
}

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

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

.bold {
  font-weight: 700;
}

.margin-top {
  margin-top: 28px;
}

/* Inline SVG Utilities */
.svg-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

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

.svg-icon-md {
  width: 20px;
  height: 20px;
}

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

/* --------------------------------------------------------------------------
   3. Section Badges & Headings
   -------------------------------------------------------------------------- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--brand-primary);
  background-color: rgba(0, 63, 135, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-heading {
  font-size: clamp(1.8rem, 3vw + 1rem, 2.75rem);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--text-heading);
}

.section-subheading {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 48px auto;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   4. Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 63, 135, 0.25);
}

.btn-primary:hover {
  background-color: #002f66;
  box-shadow: 0 10px 25px rgba(0, 63, 135, 0.35);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* CRISP RED 24h NOTFALL PILL BUTTON */
.btn-emergency, .nav-emergency-pill {
  background-color: var(--emergency-color) !important;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 800;
  border-radius: var(--radius-full);
  padding: 10px 22px;
  box-shadow: var(--shadow-emergency);
  transition: var(--transition-normal);
}

.btn-emergency:hover, .nav-emergency-pill:hover {
  background-color: var(--emergency-hover) !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.45);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: pulseBlink 1.4s infinite ease-in-out;
}

@keyframes pulseBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(1.3); }
}

.btn-emergency-cta {
  background: linear-gradient(135deg, var(--emergency-color), #dc2626);
  color: #ffffff;
  font-weight: 800;
  box-shadow: var(--shadow-emergency);
}

.btn-emergency-cta:hover {
  background: linear-gradient(135deg, #f87171, var(--emergency-color));
}

.btn-secondary-cta {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-secondary-cta:hover {
  background-color: #ffffff;
  color: var(--text-heading);
  border-color: #ffffff;
}

.btn-accent-gold {
  background-color: var(--accent-gold);
  color: var(--text-heading);
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.btn-accent-gold:hover {
  background-color: #d97706;
  color: #ffffff;
}

/* Mobile Button Wrapping & Width Rule */
@media (max-width: 768px) {
  .btn {
    white-space: normal;
    text-align: center;
    word-break: break-word;
  }
}

/* --------------------------------------------------------------------------
   5. Announcement Topbar
   -------------------------------------------------------------------------- */
.topbar {
  background-color: var(--text-heading);
  color: #94a3b8;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-item, .topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-link:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   6. Header Navigation & Sticky Navbar
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--brand-secondary-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-soft);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* ASPECT RATIO PRESERVATION FOR LOGO */
.header-logo {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

.desktop-nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.975rem;
  color: var(--text-heading);
  padding: 6px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--brand-primary);
  border-radius: 2px;
  transition: var(--transition-normal);
}

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

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

/* Mobile Hamburger Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1006;
}

.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--text-heading);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* Mobile Backdrop Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Mobile Off-Canvas Drawer (OUTSIDE HEADER -> 100% UNBLURRED) */
.nav-menu {
  display: none;
}

@media (max-width: 992px) {
  .desktop-nav-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 82%;
    max-width: 360px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 24px 40px 24px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    transform: translateX(105%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s, opacity 0.3s;
    gap: 24px;
    overflow-y: auto;
    z-index: 1005;
  }

  .nav-menu.open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

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

  .nav-link {
    font-size: 1.15rem;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--brand-secondary-light);
  }

  .nav-emergency-pill {
    width: 100%;
    justify-content: center;
  }

  /* Hamburger transformation */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 100px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* SUBTLE GRADIENT: #003F87 blending into #002855 */
  background: linear-gradient(135deg, rgba(0, 63, 135, 0.90) 0%, rgba(0, 40, 85, 0.94) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 780px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw + 1rem, 3.8rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .highlight-text {
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.5vw + 0.8rem, 1.25rem);
  color: #e2e8f0;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f1f5f9;
}

.check-icon {
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   8. Emergency Quick Callout Banner
   -------------------------------------------------------------------------- */
.emergency-banner-section {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.emergency-banner {
  background: linear-gradient(135deg, var(--emergency-color) 0%, #dc2626 100%);
  color: #ffffff;
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-emergency);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

.emergency-banner-text {
  flex: 1 1 450px;
}

.emergency-banner-text h2 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.emergency-banner-text p {
  color: #fecdd3;
  font-size: 1rem;
}

.btn-emergency-pill-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-color: #ffffff;
  color: var(--emergency-hover);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: var(--transition-normal);
  text-decoration: none;
}

.btn-emergency-pill-large:hover {
  background-color: var(--accent-gold);
  color: var(--text-heading);
  transform: translateY(-2px);
}

.emergency-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-action-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-phone-number {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--emergency-hover);
  white-space: nowrap;
}

.btn-emergency-pill-large:hover .btn-phone-number {
  color: var(--text-heading);
}

/* MOBILE FIX FOR EMERGENCY CARD */
@media (max-width: 768px) {
  .emergency-banner-section {
    margin-top: 24px;
  }

  .emergency-banner {
    padding: 24px 20px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 16px;
  }

  .emergency-banner-text {
    flex: 1 1 100%;
  }

  .emergency-banner-text h2 {
    font-size: 1.2rem;
    justify-content: center;
  }

  .emergency-banner-text p {
    font-size: 0.95rem;
  }

  .btn-emergency-pill-large {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-lg);
  }

  .emergency-btn-text {
    align-items: center;
  }

  .btn-action-label {
    font-size: 0.85rem;
  }

  .btn-phone-number {
    font-size: 1.15rem;
  }
}

/* --------------------------------------------------------------------------
   9. Layout Grids
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 32px;
}

.grid-2-col {
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .grid-2-col {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

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

/* --------------------------------------------------------------------------
   10. About Us Section
   -------------------------------------------------------------------------- */
.about-grid {
  align-items: center;
  gap: 50px;
}

.about-images-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  width: 100%;
}

.vertical-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
}

.horizontal-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-lg);
}

.badge-experience {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: var(--brand-primary);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.exp-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-text-col {
  width: 100%;
}

.lead-paragraph {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.body-paragraph {
  color: var(--text-body);
  margin-bottom: 24px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  width: 100%;
}

.feature-card {
  display: flex;
  gap: 16px;
  background-color: var(--bg-alternate);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--brand-primary);
  width: 100%;
  box-sizing: border-box;
}

.feature-icon-wrapper {
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.feature-info p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

/* RESPONSIVE MOBILE FIX FOR ABOUT SECTION */
@media (max-width: 768px) {
  .about-grid {
    gap: 32px;
  }

  .about-images-col {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vertical-card img {
    height: 380px;
  }

  .horizontal-card img {
    height: 220px;
  }

  .about-text-col .btn-primary {
    width: 100%;
    white-space: normal;
    text-align: center;
    padding: 14px 20px;
  }
}

/* --------------------------------------------------------------------------
   11. Services Section
   -------------------------------------------------------------------------- */
.services-grid {
  gap: 32px;
}

.service-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--brand-secondary-light);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  width: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 63, 135, 0.2);
}

.card-img-container {
  position: relative;
  height: 240px;
  overflow: hidden;
  width: 100%;
}

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

.service-card:hover .card-img-container img {
  transform: scale(1.06);
}

.card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--brand-primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-heading);
}

.card-content p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-checklist {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-checklist li {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}

.card-link:hover {
  color: var(--brand-primary-dark);
  gap: 10px;
}

/* --------------------------------------------------------------------------
   12. Sleek Dark Navy Promo Banner
   -------------------------------------------------------------------------- */
.promo-navy-card {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 56px;
  color: #ffffff;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  width: 100%;
}

.promo-info {
  max-width: 680px;
}

.promo-badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--accent-gold);
  color: var(--text-heading);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.promo-info h2 {
  color: #ffffff;
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.promo-info p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.promo-perks-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #f1f5f9;
}

.promo-perks-list span {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .promo-navy-card {
    padding: 32px 24px;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    box-sizing: border-box;
    width: 100%;
  }

  .promo-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .promo-badge-gold {
    margin: 0 0 16px 0;
    align-self: flex-start;
  }

  .promo-info h2 {
    font-size: 1.6rem;
    text-align: left;
  }

  .promo-info p {
    font-size: 0.975rem;
    text-align: left;
  }

  .promo-perks-list {
    align-items: flex-start;
    display: flex;
    text-align: left;
    width: 100%;
    margin: 0 0 20px 0;
  }

  .promo-action {
    width: 100%;
  }

  .promo-action .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
    padding: 14px 16px;
  }
}

/* --------------------------------------------------------------------------
   13. Google Reviews Carousel Section
   -------------------------------------------------------------------------- */
.google-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.stars-gold {
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 2px;
}

.rating-number {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-heading);
}

.rating-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.google-maps-link {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.carousel-wrapper {
  max-width: 920px;
  margin: 40px auto 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 4px;
}

.review-card-inner {
  background-color: var(--bg-primary);
  border: 1px solid var(--brand-secondary-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--brand-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
}

.user-info h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.user-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.review-stars {
  margin-left: auto;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 2px;
}

.review-body {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-heading);
  line-height: 1.7;
}

.carousel-nav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--brand-secondary-light);
  background-color: #ffffff;
  color: var(--text-heading);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-card);
}

.carousel-btn:hover {
  background-color: var(--brand-primary);
  color: #ffffff;
  border-color: var(--brand-primary);
}

.carousel-dots-wrapper {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--brand-secondary-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--brand-primary);
  width: 24px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   14. Contact Section
   -------------------------------------------------------------------------- */
.contact-grid-layout {
  align-items: start;
  gap: 48px;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.contact-item-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--bg-primary);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--brand-secondary-light);
  box-shadow: var(--shadow-card);
}

.contact-item-card.highlighted-card {
  border-left: 4px solid var(--emergency-color);
}

.item-icon {
  background-color: rgba(0, 63, 135, 0.07);
  color: var(--brand-primary);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.item-details h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.item-details p {
  font-size: 0.95rem;
  color: var(--text-body);
}

.phone-link, .mail-link {
  font-weight: 700;
  color: var(--brand-primary);
}

.emergency-tag-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--emergency-color);
}

.form-container-card {
  background-color: var(--bg-primary);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--brand-secondary-light);
  box-shadow: var(--shadow-soft);
}

.form-container-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.form-subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .form-row-2col {
    grid-template-columns: 1fr 1fr;
  }
}

.input-field-group {
  margin-bottom: 20px;
}

.input-field-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-heading);
}

.input-field-group input,
.input-field-group select,
.input-field-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--brand-secondary-light);
  border-radius: var(--radius-md);
  background-color: var(--bg-alternate);
  color: var(--text-heading);
  transition: var(--transition-fast);
}

.input-field-group input:focus,
.input-field-group select:focus,
.input-field-group textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 63, 135, 0.1);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--brand-primary);
}

.checkbox-field label {
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--text-body);
}

.form-alert {
  margin-top: 20px;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  display: none;
}

.form-alert.success {
  display: block;
  background-color: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* --------------------------------------------------------------------------
   15. Footer (HIGH CONTRAST WHITE LOGO & ULTRA-BRIGHT CONTRAST TEXT)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--text-heading);
  color: #f8fafc;
  padding: 80px 0 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  margin-bottom: 60px;
}

/* PURE WHITE LOGO VIA CSS FILTER */
.footer-logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-about {
  font-size: 0.95rem;
  color: #e2e8f0;
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-emergency-badge {
  background: rgba(239, 68, 68, 0.18);
  border: 1.5px solid rgba(239, 68, 68, 0.45);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-emergency-badge span {
  font-size: 0.825rem;
  font-weight: 700;
  color: #fecdd3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-phone-highlight {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.18rem;
}

.footer-links-box h4,
.footer-contact-box h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links-box h4::after,
.footer-contact-box h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2.5px;
  background-color: var(--accent-gold);
}

.footer-links-box ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-box a {
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-links-box a:hover {
  color: var(--accent-gold);
  padding-left: 6px;
}

.footer-contact-box address {
  font-style: normal;
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.75;
}

.footer-contact-box address a {
  color: #ffffff;
  font-weight: 700;
}

.footer-contact-box address a:hover {
  color: var(--accent-gold);
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: #cbd5e1;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: #cbd5e1;
}

.footer-legal-links a:hover {
  color: #ffffff;
}
