/* ==========================================================================
   KAGU 1 PERCENT BAIL BONDS - MAIN STYLESHEET
   Design Theme: Geometric Balance
   Crisp Structure, Modern Grid System, Precise 1px Dividers, Bold Accents
   ========================================================================== */

/* --- CSS Variables & Geometric Balance Design System --- */
:root {
  /* Geometric Balance Color Palette */
  --primary: #1e293b;
  --primary-dark: #0f172a;
  --accent: #b91c1c;
  --accent-hover: #991b1b;
  --accent-light: #fee2e2;
  --bg: #f8fafc;
  --text: #334155;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;

  /* Mapped Brand Variables */
  --color-primary-dark: #0f172a;
  --color-primary-navy: #1e293b;
  --color-primary-blue: #334155;
  --color-accent-gold: #b91c1c;
  --color-accent-gold-hover: #991b1b;
  --color-accent-gold-light: #fee2e2;
  --color-success: #15803d;
  --color-success-light: #f0fdf4;
  --color-danger: #b91c1c;
  --color-danger-light: #fef2f2;
  
  /* Neutrals & Geometric Borders */
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-subtle: #f1f5f9;
  --text-main: #334155;
  --text-title: #1e293b;
  --border-subtle: #e2e8f0;
  --border-strong: #cbd5e1;

  /* Typography */
  --font-sans: 'Helvetica Neue', Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Helvetica Neue', Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Geometric Radii & Shadows (Clean, precise, structural) */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);

  /* Safe Layout Width */
  --container-width: min(1200px, calc(100% - 32px));
}

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: var(--bg-page);
  color: var(--text);
  font-family: var(--font-sans);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

ul, ol {
  list-style: none;
}

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

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

/* --- Global Layout Container --- */
.container {
  width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.section-wrapper {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-subtle {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-dark {
  background-color: var(--primary);
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background-color: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(185, 28, 28, 0.25);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.badge-tag.badge-dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fee2e2;
  border-color: rgba(254, 226, 226, 0.3);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-dark .section-title {
  color: #ffffff;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-dark .section-desc {
  color: #cbd5e1;
}

/* --- Buttons (Geometric Balance) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  min-height: 44px;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.35);
}

.btn-navy {
  background-color: var(--primary);
  color: var(--white);
}
.btn-navy:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

.btn-emergency {
  background-color: var(--accent);
  color: var(--white);
  animation: pulse-border 2s infinite;
}
.btn-emergency:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 4px 14px rgba(185, 28, 28, 0.4);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-strong);
  color: var(--text-dark);
}
.btn-outline:hover {
  background-color: var(--bg-surface-subtle);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-white {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-block {
  width: 100%;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(185, 28, 28, 0); }
  100% { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0); }
}

/* --- 1. Top Information Bar --- */
.top-bar {
  background-color: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 50;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-green 1.8s 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 6px 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-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fee2e2;
  font-weight: 700;
}
.top-bar-link:hover {
  color: var(--white);
}

.top-bar-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
}

/* --- 2. Main Header & Navigation --- */
.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 900;
  font-size: 1.125rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid #334155;
}

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

.logo-title {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.logo-title span {
  color: var(--accent);
}

.logo-subtitle {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 6px 4px;
  position: relative;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}
.nav-link:hover::after, .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-surface-subtle);
  border: 1px solid var(--border-subtle);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--primary);
  white-space: nowrap;
}
.header-phone-btn:hover {
  background-color: #e2e8f0;
}

/* Hamburger Button */
.menu-toggle-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-dark);
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.menu-toggle-btn:hover {
  background-color: var(--bg-surface-subtle);
}

/* Mobile Navigation Overlay */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-drawer.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 85%);
  height: 100%;
  background-color: var(--white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 24px;
}

.mobile-nav-drawer.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  display: block;
}
.mobile-nav-link:hover {
  background-color: var(--bg-surface-subtle);
  color: var(--accent);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

/* --- 3. Hero Section (Geometric Balance Theme) --- */
.hero-section {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: var(--white);
  padding: 56px 0 72px 0;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-badge-group .badge-tag {
  background: rgba(185, 28, 28, 0.2);
  color: #fee2e2;
  border: 1px solid rgba(254, 226, 226, 0.3);
}

.hero-h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.03em;
}

.hero-h1 span.highlight {
  color: #fee2e2;
  background: linear-gradient(to right, #fee2e2, #fca5a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-p {
  font-size: 1.0625rem;
  color: #e2e8f0;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-item-title {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--white);
}

.trust-item-sub {
  font-size: 0.75rem;
  color: #94a3b8;
}

.hero-media-wrapper {
  position: relative;
}

.hero-image-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.hero-image-card img {
  border-radius: var(--radius-sm);
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 3px solid var(--accent);
}

.floating-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.floating-card-text {
  font-size: 0.8125rem;
  line-height: 1.3;
}

.floating-card-text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--white);
}

/* --- 4. Services Section (Geometric Grid) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  border-top: 3px solid transparent;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-sm);
}

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

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-surface-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
}

.service-card:hover .service-icon-box {
  background-color: var(--accent-light);
  color: var(--accent);
  border-color: rgba(185, 28, 28, 0.3);
}

.service-title {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-link {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* --- 5. Why Choose Us Section --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-feature-item {
  display: flex;
  gap: 16px;
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.feature-check-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background-color: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.feature-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Bail Calculator Card (Geometric Structure) */
.calculator-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.calc-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.calc-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}

.calc-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.calc-group {
  margin-bottom: 20px;
}

.calc-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.calc-input-wrapper {
  position: relative;
}

.calc-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--text-muted);
}

.calc-input {
  width: 100%;
  padding: 12px 14px 12px 32px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  background-color: #ffffff;
}
.calc-input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12);
}

.calc-results-box {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 20px;
  border: 1px solid #334155;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

.calc-result-row:last-child {
  border-bottom: none;
  padding-top: 12px;
}

.calc-highlight-val {
  font-size: 1.375rem;
  font-weight: 800;
  color: #fee2e2;
}

.calc-disclaimer {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 12px;
  line-height: 1.4;
}

/* --- 6. Service Areas Section --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.area-card {
  background-color: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.area-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.area-pin-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.area-card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.area-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.areas-footer-banner {
  margin-top: 36px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-left: 4px solid var(--accent);
}

.areas-banner-text h4 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.areas-banner-text p {
  font-size: 0.875rem;
  color: #cbd5e1;
}

/* --- 7. Our Process Section --- */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-step-card {
  background-color: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--primary);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--primary);
  color: var(--white);
  font-weight: 900;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--accent);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.process-step-card h3 {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.process-step-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- 8. FAQ Section (Accordion) --- */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.active {
  border-color: var(--border-strong);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-surface-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background-color: var(--accent-light);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.3s ease-in-out;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- 9. Contact / Quote Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background-color: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}

.info-item-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-row-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-row-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.info-row-text p, .info-row-text a {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.info-row-text a:hover {
  color: var(--accent);
}

/* Form Styles (Geometric Balance) */
.quote-form-card {
  background-color: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}

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

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

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  font-size: 0.875rem;
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12);
  outline: none;
}

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

.form-notice-box {
  background-color: var(--bg-surface-subtle);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-success-message {
  display: none;
  background-color: var(--color-success-light);
  border: 1px solid rgba(21, 128, 61, 0.3);
  color: #14532d;
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 0.9375rem;
}

/* --- 10. Final Call to Action --- */
.final-cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta-title {
  font-size: clamp(2rem, 4vw, 2.625rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.final-cta-text {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin-bottom: 32px;
}

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

/* --- 11. Footer & Social Links --- */
.site-footer {
  background-color: var(--primary-dark);
  color: #94a3b8;
  padding-top: 64px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  border-left: 2px solid var(--accent);
  padding-left: 8px;
}

.footer-about-text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 12px;
  color: #94a3b8;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.875rem;
  color: #94a3b8;
}
.footer-link:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Designated Social Links Section */
.social-links-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.social-btn:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
}

.footer-disclaimer {
  max-width: 600px;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.4;
  margin-top: 8px;
}

/* --- Floating Mobile Emergency Call Bar --- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  border-top: 2px solid var(--accent);
  padding: 10px 16px;
  z-index: 45;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-call-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-call-text {
  font-size: 0.8125rem;
  color: var(--white);
}
.mobile-call-text strong {
  display: block;
  font-size: 0.875rem;
  color: #fee2e2;
}

/* Floating Asura Hosting ZIP Downloader Widget */
.asura-download-widget {
  position: fixed;
  bottom: 74px;
  right: 16px;
  z-index: 60;
}

.asura-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  border: 1px solid #475569;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.asura-download-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Mandatory Testing for 1920px -> 375px)
   ========================================================================== */

/* 1200px - 1440px - 1920px */
@media (min-width: 1200px) {
  .hero-h1 {
    font-size: 2.75rem;
  }
}

/* 1024px to 1199px (Small Laptops / Desktop) */
@media (max-width: 1199px) {
  .nav-desktop {
    gap: 16px;
  }
  .nav-list {
    gap: 14px;
  }
  .footer-top-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 28px;
  }
}

/* 768px to 1023px (Tablets) */
@media (max-width: 1023px) {
  .nav-desktop {
    display: none;
  }
  .menu-toggle-btn {
    display: flex;
  }
  .mobile-nav-drawer {
    display: block;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .hero-media-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* 480px to 767px (Large Phones / Phablets) */
@media (max-width: 767px) {
  .section-wrapper {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  
  .top-bar-content {
    justify-content: center;
    text-align: center;
    gap: 6px;
  }
  
  .top-bar-info {
    display: none;
  }
  
  .header-actions .header-phone-btn {
    display: none;
  }
  
  .hero-h1 {
    font-size: 1.875rem;
  }
  
  .hero-floating-card {
    position: static;
    margin-top: 12px;
  }
  
  .hero-trust-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
  }
  
  .areas-footer-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .mobile-call-bar {
    display: block;
  }
  
  body {
    padding-bottom: 64px; /* Space for fixed bottom call bar */
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* 375px to 479px (Standard to Small Mobile) */
@media (max-width: 479px) {
  :root {
    --container-width: calc(100% - 24px);
  }
  
  .header-container {
    height: 68px;
  }
  
  .logo-title {
    font-size: 0.9375rem;
  }
  
  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9375rem;
  }
  
  .hero-h1 {
    font-size: 1.625rem;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
  
  .quote-form-card, .calculator-card {
    padding: 20px 16px;
  }
  
  .final-cta-buttons .btn {
    width: 100%;
  }
}
