/* ==========================================================================
   Sapsucker Gump Toilet Rentals - Main Stylesheet
   Theme: Elegant Dark (Obsidian & Amber Gold Luxury Palette)
   Designed for Production Static Hosting (Asura Hosting, cPanel, Apache, Nginx)
   100% Pure CSS3 - Responsive, Fast, Accessible
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Reset & Base Variables - Elegant Dark Theme
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette - Elegant Dark & Warm Amber */
  --primary-navy: #ffffff;
  --primary-blue: #f59e0b;
  --primary-blue-hover: #d97706;
  --accent-cyan: #f59e0b;
  --accent-cyan-light: rgba(245, 158, 11, 0.15);
  --accent-amber: #f59e0b;
  --accent-amber-light: rgba(245, 158, 11, 0.12);
  --success-green: #22c55e;
  --success-green-light: rgba(34, 197, 94, 0.15);
  
  /* Dark Neutrals & Surfaces */
  --surface-bg: #0f1115;
  --surface-white: #1a1d23;
  --surface-muted: #14171e;
  --surface-card: #1a1d23;
  --surface-card-hover: #22262f;
  --surface-input: #12151b;
  --surface-dark: #0f1115;
  --surface-dark-card: #1a1d23;
  --surface-footer: #0a0c10;
  
  /* Text Colors */
  --text-main: #ffffff;
  --text-body: #e5e7eb;
  --text-muted: #9ca3af;
  --text-light: #6b7280;
  --text-inverse: #0f1115;
  --text-inverse-muted: #9ca3af;
  
  /* Borders & Shadows */
  --border-light: #2d333f;
  --border-subtle: #232731;
  --border-hover: #3e4657;
  --border-focus: #f59e0b;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px -1px rgba(0, 0, 0, 0.4), 0 2px 6px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.5), 0 4px 8px -4px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 30px -5px rgba(0, 0, 0, 0.6), 0 8px 12px -6px rgba(0, 0, 0, 0.4);
  --glow-amber: 0 0 20px rgba(245, 158, 11, 0.25);
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  
  /* Layout Sizing */
  --container-width: min(1200px, calc(100% - 32px));
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --header-height: 76px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  margin: 0;
  padding: 0;
  background-color: var(--surface-bg);
  color: var(--text-body);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --------------------------------------------------------------------------
   2. Utility Classes & Layout
   -------------------------------------------------------------------------- */
.site-container {
  width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.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;
}

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

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

/* --------------------------------------------------------------------------
   3. Buttons & Interactive Controls
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 46px;
}

.btn-primary {
  background-color: #f59e0b;
  color: #0f1115;
  border-color: #f59e0b;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background-color: #d97706;
  border-color: #d97706;
  color: #0f1115;
  transform: translateY(-1px);
  box-shadow: var(--glow-amber);
}

.btn-secondary {
  background-color: #1a1d23;
  color: #ffffff;
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover, .btn-secondary:focus-visible {
  background-color: #252a34;
  border-color: #3e4657;
  color: #ffffff;
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: var(--border-light);
}

.btn-outline:hover, .btn-outline:focus-visible {
  background-color: #1a1d23;
  border-color: #3e4657;
  color: #f59e0b;
}

.btn-call {
  background-color: #f59e0b;
  color: #0f1115;
  border-color: #f59e0b;
  font-weight: 800;
}

.btn-call:hover, .btn-call:focus-visible {
  background-color: #d97706;
  border-color: #d97706;
  color: #0f1115;
  transform: translateY(-1px);
  box-shadow: var(--glow-amber);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  min-height: 38px;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* --------------------------------------------------------------------------
   4. Top Information Bar
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: #1a1d23;
  color: var(--text-muted);
  font-size: 0.825rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.top-bar-item a {
  color: #cbd5e1;
}

.top-bar-item a:hover {
  color: #f59e0b;
  text-decoration: underline;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-phone-link {
  font-weight: 700;
  color: #f59e0b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-phone-link:hover {
  color: #fbbf24;
}

.badge-24-7 {
  background-color: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.25);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   5. Site Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  background-color: #0f1115;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 10px 0;
  gap: 16px;
}

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

.logo-badge {
  width: 44px;
  height: 44px;
  background: #f59e0b;
  color: #0f1115;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

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

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.brand-sub {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 4px;
  position: relative;
}

.nav-link:hover, .nav-link:focus-visible {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #f59e0b;
  transition: width 0.2s ease;
}

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

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

.header-phone-cta {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.header-phone-label {
  font-size: 0.725rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.header-phone-number {
  font-size: 0.95rem;
  font-weight: 800;
  color: #f59e0b;
}

/* Hamburger Button */
.menu-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.menu-toggle-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 85vw);
  height: 100vh;
  background-color: #1a1d23;
  border-left: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 80px 24px 32px;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-drawer.is-open {
  right: 0;
}

.mobile-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-body);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link:hover {
  color: #f59e0b;
}

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

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.06) 0%, transparent 60%), #0f1115;
  padding: 48px 0 64px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.hero-title .text-highlight {
  color: #f59e0b;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 580px;
}

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

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background-color: #252a34;
  color: #f59e0b;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-text-strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.trust-text-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--border-light);
  background-color: #1a1d23;
}

.hero-image-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background-color: #1a1d23;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
}

.float-card-dot {
  width: 12px;
  height: 12px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  flex-shrink: 0;
}

.float-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.float-card-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. Section Headers & Typography
   -------------------------------------------------------------------------- */
.section {
  padding: 72px 0;
  position: relative;
}

.section-muted {
  background-color: #14171e;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-dark {
  background-color: #0f1115;
  color: #ffffff;
}

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

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f59e0b;
  margin-bottom: 8px;
}

.section-dark .section-label {
  color: #f59e0b;
}

.section-title {
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

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

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

.section-dark .section-subtitle {
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   8. Services Section
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background-color: #1a1d23;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.service-card-media {
  height: 200px;
  position: relative;
  overflow: hidden;
  background-color: #12151b;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.03);
}

.service-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(15, 17, 21, 0.9);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.service-feature-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-feature-item {
  font-size: 0.875rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-feature-item::before {
  content: '✓';
  color: #f59e0b;
  font-weight: 800;
  font-size: 0.9rem;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

/* --------------------------------------------------------------------------
   9. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background-color: #1a1d23;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #3e4657;
}

.why-icon-box {
  width: 52px;
  height: 52px;
  background-color: #252a34;
  color: #f59e0b;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.why-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. Service Areas Section (Interactive Chicago Coverage)
   -------------------------------------------------------------------------- */
.areas-container {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 36px;
  align-items: start;
}

.area-info-card {
  background-color: #1a1d23;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.area-hq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.area-hq-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.area-hq-address {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.area-search-box {
  margin-top: 24px;
  padding: 20px;
  background-color: #12151b;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.area-search-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.area-search-input-group {
  display: flex;
  gap: 8px;
}

.area-search-input {
  flex-grow: 1;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  background-color: #1a1d23;
  color: #ffffff;
}

.area-search-input:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.area-search-result {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: none;
}

.area-search-result.match {
  display: block;
  background-color: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.area-search-result.all-cook {
  display: block;
  background-color: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.area-groups-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.area-group-card {
  background-color: #1a1d23;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.area-group-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.area-tag {
  background-color: #12151b;
  color: var(--text-body);
  font-size: 0.825rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  transition: all 0.15s ease;
}

.area-tag:hover {
  background-color: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.3);
}

/* --------------------------------------------------------------------------
   11. Our Process Section
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-card {
  background-color: #1a1d23;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.process-card:hover {
  transform: translateY(-2px);
  border-color: #3e4657;
}

.process-step-num {
  width: 42px;
  height: 42px;
  background-color: #f59e0b;
  color: #0f1115;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.process-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.process-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   12. FAQ Accordion Section
   -------------------------------------------------------------------------- */
.faq-wrapper {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: #1a1d23;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: #3e4657;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  gap: 16px;
  line-height: 1.4;
}

.faq-trigger:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: -2px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #252a34;
  color: #f59e0b;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background-color: #f59e0b;
  color: #0f1115;
  border-color: #f59e0b;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  background-color: #1a1d23;
}

.faq-panel.is-open {
  max-height: 800px;
  transition: max-height 0.35s ease-in-out;
}

.faq-content {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

/* --------------------------------------------------------------------------
   13. Contact & Quote Section
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 36px;
  align-items: start;
}

.quote-form-card {
  background-color: #1a1d23;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.quote-form-header {
  margin-bottom: 24px;
}

.quote-form-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.quote-form-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}

.form-label .required {
  color: #f87171;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.925rem;
  color: #ffffff;
  background-color: #12151b;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

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

.form-notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.4;
}

/* Contact Details Side Card */
.contact-info-card {
  background-color: #1a1d23;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-info-icon {
  width: 40px;
  height: 40px;
  background-color: #252a34;
  color: #f59e0b;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}

.contact-info-value a {
  color: #f59e0b;
}

.contact-info-value a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

.dispatch-banner {
  background: linear-gradient(135deg, #1f242d 0%, #161920 100%);
  border: 1px solid var(--border-light);
  color: #ffffff;
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dispatch-banner-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #f59e0b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dispatch-banner-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   14. Final Call-to-Action Banner
   -------------------------------------------------------------------------- */
.cta-banner-section {
  background: linear-gradient(135deg, #14171e 0%, #1a1d23 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  color: #ffffff;
  padding: 64px 0;
  text-align: center;
}

.cta-banner-inner {
  max-width: 760px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   15. Social Links Section
   -------------------------------------------------------------------------- */
.social-links-block {
  padding: 24px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin: 32px 0;
}

.social-links-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 16px;
}

.social-icons-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

.social-link-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #1a1d23;
  color: var(--text-muted);
  border-radius: 50%;
  border: 1px solid var(--border-light);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.social-link-item a:hover {
  background-color: #f59e0b;
  color: #0f1115;
  border-color: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.social-link-item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   16. Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #0a0c10;
  color: var(--text-muted);
  padding: 64px 0 28px;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 12px;
  color: var(--text-muted);
}

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

.footer-link {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-link:hover {
  color: #f59e0b;
  text-decoration: underline;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-item a {
  color: #f59e0b;
}

.footer-contact-item a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.825rem;
  color: var(--text-light);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: #f59e0b;
}

/* --------------------------------------------------------------------------
   17. Asura Hosting Quick Utility & Modal
   -------------------------------------------------------------------------- */
.asura-download-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.asura-download-pill:hover {
  background-color: #f59e0b;
  color: #0f1115;
}

/* --------------------------------------------------------------------------
   18. Form Response & Toast Modal
   -------------------------------------------------------------------------- */
.form-status-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.form-status-modal.is-active {
  display: flex;
}

.form-status-card {
  background-color: #1a1d23;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 32px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   19. Precise Responsive Breakpoints
   -------------------------------------------------------------------------- */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  :root {
    --container-width: 1160px;
  }
}

/* Medium Desktop & Tablet Landscape (992px to 1199px) */
@media (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Portrait & Smaller Screens (Under 992px) */
@media (max-width: 991px) {
  .nav-desktop {
    display: none;
  }
  .menu-toggle-btn {
    display: flex;
  }
  .header-actions .btn-primary {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-image-wrapper img {
    height: 320px;
  }
  .areas-container {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Devices (Under 768px) */
@media (max-width: 767px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .top-bar-right {
    width: 100%;
    justify-content: space-between;
  }
  .hero-trust-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .section {
    padding: 52px 0;
  }
  .quote-form-card {
    padding: 24px 18px;
  }
  .hero-float-card {
    position: static;
    margin-top: 12px;
    max-width: 100%;
  }
}

/* Smallest Mobile Viewports (375px - 480px) */
@media (max-width: 480px) {
  .btn {
    width: 100%;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner-actions .btn {
    width: 100%;
  }
  .brand-name {
    font-size: 1rem;
  }
  .brand-sub {
    font-size: 0.7rem;
  }
  .logo-badge {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .area-search-input-group {
    flex-direction: column;
  }
}
