/* ==========================================================================
   RAPID SERVICE — MASTER DESIGN SYSTEM & FRAMEWORK (V4)
   Colors: Deep Navy (#0f1d2d), Brand Amber (#f59e0b), Clean Slate & White
   Typography: Inter / System Sans, H1: 2.5rem (1.8rem mobile), H2: 2.0rem (weight: 600)
   ========================================================================== */

:root {
  /* Brand Palette */
  --color-primary: #1b2a4a;
  --color-primary-light: #243d6a;
  --color-primary-rgb: 27, 42, 74;
  
  --color-accent: #f5a623;
  --color-accent-hover: #e09210;
  --color-accent-soft: rgba(245, 158, 11, 0.12);
  
  --color-success: #16a34a;
  --color-danger: #dc2626;
  
  /* Neutrals & Surfaces */
  --bg-body: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-dark: #1b2a4a;
  --bg-dark-card: #243d6a;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #f8fafc;
  --text-light-muted: #94a3b8;
  
  --border-color: #e2e8f0;
  --border-dark: #334155;
  
  /* Geometry & Elevation */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.07);
  --shadow-hover: 0 20px 40px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  
  /* Transitions */
  --transition-fast: all 0.2s ease-in-out;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-blur: blur(12px);
  --glass-border: rgba(255, 255, 255, 0.4);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
}

p.lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-main);
}

a {
  color: var(--color-accent-hover);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

ul, ol {
  margin-bottom: 1.2rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

li {
  margin-bottom: 0.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.max-width-md {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.max-width-lg {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.padding-y-lg {
  padding: 80px 0;
}

.padding-y-md {
  padding: 50px 0;
}

.padding-y-sm {
  padding: 30px 0;
}

.bg-secondary {
  background-color: var(--bg-secondary);
}

.bg-tertiary {
  background-color: var(--bg-tertiary);
}

.bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--text-light);
}

.bg-dark p {
  color: var(--text-light-muted);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--color-primary) !important; }
.text-accent { color: var(--color-accent) !important; }
.text-green { color: var(--color-success) !important; }
.text-red { color: var(--color-danger) !important; }

/* Buttons & CTAs */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color-accent);
  color: #0f172a;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
}

.btn-premium:hover {
  background-color: var(--color-accent-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-primary);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-phone-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 4px 12px;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.btn-phone-top:hover {
  background: var(--color-accent);
  color: #0f172a;
}

/* ==========================================================================
   DOUBLE-DECKER SMART STICKY HEADER
   ========================================================================== */

.top-bar {
  background-color: #09121d;
  color: var(--text-light-muted);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 1100;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-weight: 500;
}

.dot-pulse {
  width: 9px;
  height: 9px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-address {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light-muted);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text-light);
}

.lang-switch a {
  color: var(--text-light-muted);
  padding: 2px 6px;
  border-radius: 4px;
}

.lang-switch a.active, .lang-switch a:hover {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.08);
}

/* Main Navigation Deck */
.main-header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 37px; /* sits below sticky top-bar; JS overrides with exact measured height */
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo img {
  height: 64px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-title span {
  color: var(--color-accent-hover);
}

.brand-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Navigation Links & Megamenu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 18px;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 10px 2px;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  max-width: 110px;
  line-height: 1.25;
  transition: var(--transition-fast);
}

.nav-link i.fa-chevron-down {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
}

.nav-item:hover > .nav-link {
  color: var(--color-accent-hover);
}

.nav-item:hover > .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
}

/* CTA button inside the sticky nav — correctly targeted via .main-header */
.main-header .btn-premium {
  font-size: 0.8rem;
  padding: 8px 14px;
  gap: 6px;
  white-space: nowrap;
  margin-left: 20px;
  box-shadow: 0 2px 8px rgba(245, 163, 35, 0.28);
}

/* Megamenu Dropdowns */
.megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  padding: 24px;
  min-width: 440px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  transition-delay: 0.18s; /* 180ms hover protection */
  z-index: 1000;
}

/* ::before Bridge to bridge 14px gap */
.megamenu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
  background: transparent;
}

.nav-item:hover .megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

.megamenu-wide {
  min-width: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.megamenu-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-color);
}

.megamenu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.megamenu-item {
  margin-bottom: 4px;
}

.megamenu-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition-fast);
}

.megamenu-link:hover {
  background-color: var(--bg-secondary);
  color: var(--color-accent-hover);
}

.megamenu-icon {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.megamenu-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}

.megamenu-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Mobile Hamburger & Drawer */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   HERO SECTIONS (SPLIT & COMPACT)
   ========================================================================== */

.hero-section {
  position: relative;
  background-color: var(--bg-secondary);
  padding: 60px 0 70px;
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  min-height: clamp(520px, 75vh, 680px);
}

.hero-compact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  min-height: clamp(340px, 45vh, 480px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-accent-soft);
  color: var(--color-accent-hover);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content p.lead {
  margin-bottom: 24px;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  margin: 0;
}

.hero-bullets li i {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Inner wrapper injected by fix script */
.hero-bullets li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-bullets li strong {
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
  display: block;
}

.hero-bullets li span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.hero-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-stars {
  color: #f59e0b;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  aspect-ratio: 16/9;
}

.hero-image-floating-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

.hero-image-floating-tag i {
  color: var(--color-accent);
  font-size: 1.2rem;
}

/* ==========================================================================
   HERO VARIATION A — Cinematic Full-Width Background
   ========================================================================== */

.hero-v-a {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 82vh, 720px);
  display: flex;
  align-items: center;
}

.hero-v-a__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-v-a__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Localized overlay: solid navy on left, fading to fully transparent by 55% */
.hero-v-a__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(var(--color-primary-rgb), 0.92) 0%,
    rgba(var(--color-primary-rgb), 0.85) 30%,
    rgba(var(--color-primary-rgb), 0.45) 45%,
    rgba(var(--color-primary-rgb), 0) 55%
  );
  z-index: 1;
}

.hero-v-a__inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-v-a__text {
  max-width: 560px;
}

.hero-v-a .hero-badge {
  background-color: rgba(245, 166, 35, 0.2);
  color: var(--color-accent);
  border-color: rgba(245, 166, 35, 0.4);
}

.hero-v-a__stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}

.hero-v-a__stat {
  text-align: center;
}

.hero-v-a__stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1.2;
}

.hero-v-a__stat span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   HERO VARIATION B — Trust Split with Dual Images
   ========================================================================== */

.hero-v-b {
  position: relative;
  background-color: var(--bg-body);
  padding: 60px 0 70px;
  overflow: hidden;
}

.hero-v-b__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  min-height: clamp(520px, 75vh, 680px);
}

.hero-v-b__images {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto;
  gap: 16px;
}

.hero-v-b__img-main {
  grid-row: 1 / 3;
}

.hero-v-b__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 4;
}

.hero-v-b__img-secondary {
  position: relative;
}

.hero-v-b__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.hero-v-b__review-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.hero-v-b__review-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.8rem;
}

/* --- Responsive: Both Variations --- */
@media (max-width: 768px) {
  .hero-v-a {
    min-height: clamp(480px, 75vh, 620px);
  }

  .hero-v-a__bg img {
    object-position: 70% center;
  }

  .hero-v-a__bg::after {
    background: linear-gradient(
      to right,
      rgba(var(--color-primary-rgb), 0.95) 0%,
      rgba(var(--color-primary-rgb), 0.88) 50%,
      rgba(var(--color-primary-rgb), 0.5) 80%,
      rgba(var(--color-primary-rgb), 0.3) 100%
    );
  }

  .hero-v-a__inner {
    padding: 50px 0;
  }

  .hero-v-a__text h2 {
    font-size: 1.8rem !important;
  }

  .hero-v-a__stats {
    gap: 20px;
  }

  .hero-v-a__stat strong {
    font-size: 1.4rem;
  }

  .hero-v-b__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-v-b__images {
    grid-template-columns: 1fr 1fr;
  }

  .hero-v-b__img-main {
    grid-row: auto;
  }

  .hero-v-b__img-main img {
    aspect-ratio: 4 / 3;
  }

  .hero-v-b__content h2 {
    font-size: 1.8rem !important;
  }
}

/* ==========================================================================
   TRUST BAR (GLASSMORPHIC & SOLID)
   ========================================================================== */


.trust-bar {
  background-color: var(--color-primary);
  color: var(--text-light);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-item i {
  color: var(--color-accent);
  font-size: 1.1rem;
}

/* ==========================================================================
   SECTION HEADINGS (used on every section)
   ========================================================================== */

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-heading h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 14px;
  line-height: 1.25;
}

.section-heading p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   SERVICES GRID (homepage + category pages)
   ========================================================================== */

.services-grid,
.services-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 12px;
}

@media (max-width: 992px) {
  .services-grid,
  .services-grid-3col {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .services-grid-3col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(245, 163, 35, 0.35);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent-hover);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-card:hover .service-link {
  gap: 10px;
  color: var(--color-accent);
}

/* ==========================================================================
   COMPARISON TABLE (Why Us section)
   ========================================================================== */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.comparison-table thead {
  background: var(--color-primary);
  color: #ffffff;
}

.comparison-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.comparison-table thead th.col-rapid {
  background: var(--color-accent);
  color: var(--color-primary);
}

.comparison-table thead th.col-other {
  background: #475569;
  color: #ffffff;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background 0.15s ease;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--bg-secondary);
}

.comparison-table tbody tr:hover {
  background: rgba(245, 163, 35, 0.06);
}

.comparison-table td {
  padding: 14px 20px;
  vertical-align: middle;
  line-height: 1.5;
}

.comparison-table td.col-rapid {
  background: rgba(245, 163, 35, 0.08);
  font-weight: 500;
}

.comparison-table .text-success { color: var(--color-success); margin-right: 6px; }
.comparison-table .text-danger  { color: var(--color-danger);  margin-right: 6px; }

/* ==========================================================================
   SERVICES CARDS GRID (legacy alias — keep both)
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 36px;
}


.service-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(245, 158, 11, 0.4);
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-image {
  transform: scale(1.03);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-card-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-accent-hover);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.service-card:hover .service-card-link {
  color: var(--color-accent);
  gap: 10px;
}

/* ==========================================================================
   WHY US COMPARISON SECTION
   ========================================================================== */

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.comparison-card {
  border-radius: var(--radius-md);
  padding: 36px 30px;
}

.comparison-competitor {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
}

.comparison-competitor h3 {
  color: #64748b;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.comparison-our {
  background: #ffffff;
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.comparison-our-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--color-accent);
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.comparison-our h3 {
  color: var(--color-primary);
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  margin-bottom: 14px;
  line-height: 1.45;
}

.comparison-list li i.fa-xmark {
  color: var(--color-danger);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.comparison-list li i.fa-check {
  color: var(--color-success);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ==========================================================================
   3-STEP WORKFLOW ("HOW IT WORKS")
   ========================================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  position: relative;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.step-number {
  width: 54px;
  height: 54px;
  background: var(--color-primary);
  color: var(--color-accent);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--color-accent-soft);
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   INTERACTIVE FAQ ACCORDION
   ========================================================================== */

.faq-container {
  max-width: 860px;
  margin: 40px auto 0;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(245, 158, 11, 0.4);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-item[open] {
  border-color: var(--color-accent);
}

.faq-content {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--bg-tertiary);
  padding-top: 16px;
}

/* ==========================================================================
   CONTACT FORM & SPAM PROTECTION
   ========================================================================== */

.contact-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  padding: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-full {
  grid-column: 1 / -1;
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-secondary);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
  opacity: 0.85;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--color-accent);
  width: 16px;
  height: 16px;
}

/* 3-Layer Spam Protection Honeypot field (hidden from users) */
.hidden-honeypot {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

/* ==========================================================================
   PRE-FOOTER INFORMATIONAL / SEO BLOCK (OTTO STYLE)
   ========================================================================== */

.seo-prefooter {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.seo-prefooter h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: var(--color-primary);
}

.seo-prefooter h3 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.seo-prefooter p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.seo-prefooter a {
  color: var(--color-accent-hover);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-prefooter a:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   GLOBAL FOOTER
   ========================================================================== */

footer.site-footer {
  background-color: #09121d;
  color: var(--text-light-muted);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer-col p {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--color-accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-links a {
  color: var(--text-light-muted);
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE DRAWER
   ========================================================================== */

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }

  .main-header .btn-premium {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Top bar hidden on mobile — nav sticks directly to top */
  .top-bar {
    display: none;
  }

  .main-header {
    top: 0;
  }

  /* Bottom padding so content clears the fixed mobile CTA bar */
  body {
    padding-bottom: 72px;
  }

  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.55rem;
  }
  
  .hero-split,
  .hero-compact-grid,
  .comparison-grid,
  .steps-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .top-bar-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .top-bar-right {
    width: 100%;
    justify-content: space-between;
  }
  
  .padding-y-lg {
    padding: 50px 0;
  }
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  padding: 30px 24px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  transition: right 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  float: right;
  cursor: pointer;
  margin-bottom: 20px;
}

.mobile-drawer-links {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.mobile-drawer-links li {
  margin-bottom: 14px;
}

.mobile-drawer-links a {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

/* ===== ACTUAL LOGO IMAGE IN HEADER ===== */
.brand-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .brand-logo-img {
    height: 42px;
  }
}

/* ==========================================================================
   MOBILE BOTTOM CTA BAR - Square with rounded corners (Mobile only)
   ========================================================================== */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 8000;
    gap: 14px;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    padding: 0;
    margin: 0;
    width: auto;
  }

  .mobile-cta-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 12px; /* Square with rounded corners, strictly NOT pill */
    font-size: 1.35rem;
    text-decoration: none;
    flex-shrink: 0;
    pointer-events: auto;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28), 0 2px 6px rgba(0, 0, 0, 0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-cta-bar a:hover,
  .mobile-cta-bar a:active {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }

  .mobile-cta-bar .cta-call {
    background-color: #1B2A4A; /* Rapid Service Navy */
    color: #ffffff;
  }

  .mobile-cta-bar .cta-whatsapp {
    background-color: #25D366; /* WhatsApp Green */
    color: #ffffff;
  }

  .mobile-cta-bar .cta-email {
    background-color: #F5A623; /* Rapid Service Amber */
    color: #1B2A4A;
  }
}

/* ==========================================================================
   SERVICE & LOCATION PAGE HERO - Dark dramatic variant
   ========================================================================== */
.hero-section-service {
  background: linear-gradient(145deg, #070f1c 0%, #0f2640 55%, #0c1c34 100%);
}

.hero-section-service::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -8%;
  width: 58%;
  height: 140%;
  background: radial-gradient(ellipse at top right, rgba(245, 158, 11, 0.13) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-section-service .hero-split,
.hero-section-service .hero-compact-grid {
  position: relative;
  z-index: 1;
}

.hero-section-service .hero-content h1 {
  color: #f1f5f9;
}

.hero-section-service .hero-content p.lead {
  color: rgba(241, 245, 249, 0.82);
}

.hero-section-service .hero-badge {
  background-color: rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.4);
  color: #fbbf24;
}

.hero-section-service .hero-bullets li {
  color: rgba(241, 245, 249, 0.82) !important;
}

.hero-section-service .hero-bullets li strong {
  color: #f1f5f9 !important;
}

.hero-section-service .hero-bullets li span {
  color: rgba(241, 245, 249, 0.62) !important;
}

.hero-section-service .hero-bullets li i {
  color: #fbbf24 !important;
}

.hero-section-service .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero-section-service .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.hero-section-service .hero-media img {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 158, 11, 0.18) !important;
}


/* ==========================================================================
   3-Step Process Section (Light background with dark typography)
   ========================================================================== */
.section-dark-process,
.section-process {
  background-color: var(--bg-secondary, #f8fafc) !important;
  color: var(--text-main, #1e293b) !important;
  padding: 80px 0 !important;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color, #e2e8f0);
  border-bottom: 1px solid var(--border-color, #e2e8f0);
}

.section-dark-process::before,
.section-dark-process::after,
.section-process::before,
.section-process::after {
  display: none !important;
}

.section-dark-process .section-heading h2,
.section-process .section-heading h2 {
  color: var(--color-primary, #1B2A4A) !important;
  font-size: 2rem !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
}

.section-dark-process .section-heading p,
.section-process .section-heading p {
  color: var(--text-muted, #64748b) !important;
  font-size: 1.05rem !important;
  max-width: 640px;
  margin: 0 auto;
}

.section-dark-process .steps-grid,
.section-process .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .section-dark-process .steps-grid,
  .section-process .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.section-dark-process .step-card,
.section-process .step-card {
  background: #ffffff !important;
  border: 1px solid var(--border-color, #e2e8f0) !important;
  border-radius: var(--border-radius-lg, 12px) !important;
  padding: 32px 26px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
  backdrop-filter: none !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
  position: relative;
}

.section-dark-process .step-card:hover,
.section-process .step-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(245, 166, 35, 0.5) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 0 12px rgba(245, 166, 35, 0.1) !important;
}

.section-dark-process .step-number,
.section-process .step-number {
  width: 50px !important;
  height: 50px !important;
  background: linear-gradient(135deg, #F5A623 0%, #d98207 100%) !important;
  color: #1B2A4A !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3) !important;
}

.section-dark-process .step-card h3,
.section-process .step-card h3 {
  color: var(--color-primary, #1B2A4A) !important;
  font-size: 1.25rem !important;
  margin-bottom: 12px !important;
  font-weight: 600 !important;
}

.section-dark-process .step-card p,
.section-process .step-card p {
  color: var(--text-muted, #64748b) !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* ==========================================================================
   Dark Contact / Final CTA Section & Fixed Form Card
   ========================================================================== */
.section-dark-cta {
  background: linear-gradient(135deg, #0b1329 0%, #152238 50%, #1B2A4A 100%) !important;
  color: #ffffff !important;
  padding: 85px 0 !important;
  position: relative;
  overflow: hidden;
}

.section-dark-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-dark-cta::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.section-dark-cta .section-heading h2 {
  color: #ffffff !important;
  font-size: 2rem !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
}

.section-dark-cta .section-heading p {
  color: rgba(241, 245, 249, 0.85) !important;
  font-size: 1.1rem !important;
  max-width: 620px;
  margin: 0 auto 36px auto !important;
}

.contact-card-container {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  padding: 42px 38px;
  border-radius: var(--border-radius-lg, 16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 2;
  text-align: left;
}

@media (max-width: 768px) {
  .contact-card-container {
    padding: 24px 18px;
  }
}

.contact-card-container .form-control {
  background-color: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
  color: #1e293b !important;
}

.contact-card-container .form-control:focus {
  background-color: #ffffff !important;
  border-color: #F5A623 !important;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2) !important;
}

/* Hard fix for checkbox and privacy label alignment */
.form-group input[type="checkbox"],
.form-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0 !important;
  margin: 3px 0 0 0 !important;
  padding: 0 !important;
  cursor: pointer !important;
  display: inline-block !important;
}

.checkbox-group {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin: 16px 0 24px 0 !important;
  text-align: left !important;
  width: 100% !important;
}

.checkbox-group input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
  margin-top: 3px !important;
  cursor: pointer !important;
}

.checkbox-group label,
.checkbox-group span {
  font-size: 0.88rem !important;
  color: #64748b !important;
  line-height: 1.5 !important;
  cursor: pointer !important;
  margin: 0 !important;
  flex: 1 !important;
  display: inline-block !important;
}

.checkbox-group a {
  color: #1B2A4A !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
}

.checkbox-group a:hover {
  color: #F5A623 !important;
}

/* ==========================================================================
   Pre-Footer SEO Ratgeber Block (.seo-block)
   ========================================================================== */
.seo-block {
  width: 100% !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
}

.seo-block .container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.seo-block h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary, #1B2A4A);
  margin-top: 0;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.seo-block h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-primary, #1B2A4A);
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1.35;
  border-bottom: 1px solid var(--color-border, #e2e8f0);
  padding-bottom: 0.5rem;
}

.seo-block p {
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 1.25rem;
}

.seo-block ul,
.seo-block ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.seo-block li {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 0.6rem;
}

.seo-block strong {
  color: var(--color-primary, #1B2A4A);
  font-weight: 600;
}

.seo-block a {
  color: var(--color-primary, #1B2A4A) !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
  text-decoration-color: var(--color-accent, #F5A623) !important;
  text-underline-offset: 3px !important;
  transition: color 0.2s ease, text-decoration-color 0.2s ease !important;
}

.seo-block a:hover {
  color: var(--color-accent, #F5A623) !important;
  text-decoration-color: var(--color-primary, #1B2A4A) !important;
}
