/* ==========================================================================
   Seedeater Ranc Properties LLC - Official Production Stylesheet
   Category: Digital Marketing / SEO Agency
   Location: 10 W Grant St, Orlando, FL 32806
   Strictly Pure CSS3 - Vanilla, Lightweight, Zero Dependencies
   ========================================================================== */

:root {
  /* Elegant Dark Design Theme Tokens */
  --bg: #0A0A0A;
  --card: #141414;
  --accent: #38BDF8;
  --accent-hover: #0284c7;
  --text: #F1F5F9;
  --muted: #94A3B8;
  --border: #262626;
  --border-hover: #38BDF8;

  /* Brand Palette Mappings */
  --color-primary: #F1F5F9;       /* High Contrast Display Headings */
  --color-primary-light: #E2E8F0;
  --color-brand-blue: #38BDF8;    /* Vibrant Sky Blue Accent */
  --color-brand-blue-hover: #0284c7;
  --color-brand-accent: #38BDF8;
  --color-brand-teal: #14b8a6;
  --color-text-dark: #F1F5F9;     /* Primary Text */
  --color-text-muted: #94A3B8;    /* Secondary / Paragraph Text */
  --color-text-light: #64748B;
  --color-bg-white: #0A0A0A;      /* Body Base Background */
  --color-bg-subtle: #111111;     /* Alternate Section Background */
  --color-bg-card: #141414;       /* Card Surface Background */
  --color-border: #262626;
  --color-border-hover: #38BDF8;
  --color-success: #34d399;
  --color-warning: #fbbf24;

  /* Typography */
  --font-system: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  /* Layout & Spacing */
  --container-max-width: 1200px;
  --container-padding: 16px;
  --header-height: 76px;
  --topbar-height: 40px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
  
  /* Elevation Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.6), 0 4px 8px -4px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.45);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  font-family: var(--font-system);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-width: 320px;
  background-color: var(--bg);
  color: var(--color-text-dark);
}

/* Standard Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.15;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 800;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

p:last-child {
  margin-bottom: 0;
}

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

a:hover, a:focus {
  color: #7dd3fc;
}

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

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

/* Accessible Utility Container */
.container {
  width: min(var(--container-max-width), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

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

/* ==========================================================================
   Buttons & UI Elements
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
  text-align: center;
  text-decoration: none;
  min-height: 44px;
  letter-spacing: 0.02em;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #1a1a1a;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-phone {
  background-color: #0f766e;
  color: #ffffff;
  border-color: #14b8a6;
}

.btn-phone:hover, .btn-phone:focus {
  background-color: #115e59;
  border-color: #2dd4bf;
  color: #ffffff;
}

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

.btn-outline-white:hover, .btn-outline-white:focus {
  background-color: rgba(56, 189, 248, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.85rem;
  min-height: 36px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
  min-height: 48px;
}

/* ==========================================================================
   Section Headers & Badges
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background-color: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
}

/* Section Spacing */
section {
  padding: 5rem 0;
  position: relative;
}

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

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

.bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--text);
}

.bg-dark p {
  color: var(--muted);
}

/* ==========================================================================
   1. Top Information Bar
   ========================================================================== */
.top-bar {
  background-color: var(--card);
  color: var(--muted);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  min-height: var(--topbar-height);
  padding: 6px 0;
}

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

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

.top-bar-item a {
  color: var(--muted);
  text-decoration: none;
}

.top-bar-item a:hover {
  color: var(--accent);
}

.badge-24h {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(52, 211, 153, 0.12);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.25);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.75rem;
}

/* ==========================================================================
   2. Main Header & Navigation
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition-normal);
}

.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(56, 189, 248, 0.2);
}

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

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

.logo-symbol {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #1E1E1E 0%, #0A0A0A 100%);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.05em;
  flex-shrink: 0;
}

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

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

.brand-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Desktop Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text);
  opacity: 0.8;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 2px;
  position: relative;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.nav-link:hover, .nav-link:focus {
  color: var(--accent);
  opacity: 1;
}

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

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

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

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  color: var(--text);
  min-height: 42px;
  min-width: 42px;
  align-items: center;
  justify-content: center;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: calc(var(--header-height) + var(--topbar-height));
  left: 0;
  width: 100%;
  max-height: calc(100vh - var(--header-height) - var(--topbar-height));
  overflow-y: auto;
  background-color: var(--card);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  padding: 24px 20px;
  z-index: 999;
}

.mobile-nav-drawer.is-open {
  display: block;
}

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

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

.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   3. Hero Section
   ========================================================================== */
.hero-section {
  padding: 4rem 0 5rem 0;
  background: linear-gradient(135deg, #1E1E1E 0%, #0A0A0A 100%);
  border-bottom: 1px solid var(--border);
}

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

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

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.hero-location-badge svg {
  color: var(--accent);
}

.hero-title {
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.hero-highlight-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 480px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65);
  position: relative;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.hero-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin: 0;
}

.hero-metric-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.metric-cell {
  background-color: #0A0A0A;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.metric-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
}

.metric-value.growth {
  color: var(--accent);
}

.hero-location-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 0.85rem;
  color: var(--text);
}

.hero-location-preview svg {
  color: var(--accent);
  flex-shrink: 0;
}

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

.service-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  box-shadow: none;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.12);
  border-color: var(--accent);
}

.service-icon-wrapper {
  width: 52px;
  height: 52px;
  background-color: rgba(56, 189, 248, 0.1);
  color: var(--accent);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.service-deliverables {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  list-style: none;
}

.service-deliverables li {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.service-deliverables li:last-child {
  margin-bottom: 0;
}

.service-deliverables li svg {
  color: var(--accent);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

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

.why-us-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.why-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(56, 189, 248, 0.1);
  color: var(--accent);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-us-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
}

.why-us-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ==========================================================================
   6. Service Areas Section
   ========================================================================== */
.areas-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.areas-info h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--text);
}

.areas-info p {
  font-size: 0.98rem;
  margin-bottom: 20px;
  color: var(--muted);
}

.areas-office-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: none;
  margin-top: 24px;
}

.areas-office-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.areas-office-card p {
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--muted);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.area-pill {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-fast);
}

.area-pill:hover {
  border-color: var(--accent);
  background-color: rgba(56, 189, 248, 0.08);
}

.area-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.area-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  display: block;
}

.area-desc {
  font-size: 0.78rem;
  color: var(--muted);
  display: block;
}

/* ==========================================================================
   7. Our Process Section
   ========================================================================== */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  align-items: start;
  gap: 20px;
  box-shadow: none;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text);
}

.step-content p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--card);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(56, 189, 248, 0.3);
}

.faq-item.is-active {
  border-color: var(--accent);
}

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

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

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

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

.faq-answer {
  display: none;
  padding: 0 22px 20px 22px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  border-top: 1px solid var(--border);
}

.faq-item.is-active .faq-answer {
  display: block;
}

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

.contact-info-card {
  background-color: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: none;
}

.contact-info-card h3 {
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 12px;
}

.contact-info-card p {
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(56, 189, 248, 0.1);
  color: var(--accent);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-text strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-method-text a, .contact-method-text span {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.contact-method-text a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.contact-form-container {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: none;
}

.contact-form-container h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-form-container p {
  font-size: 0.92rem;
  margin-bottom: 24px;
  color: var(--muted);
}

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

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

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

.form-control {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: #0A0A0A;
  color: var(--text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

select.form-control option {
  background-color: #141414;
  color: #F1F5F9;
}

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

.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

.form-status {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 14px;
}

.form-status.status-info {
  display: block;
  background-color: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--accent);
}

/* ==========================================================================
   10. Final Call to Action
   ========================================================================== */
.final-cta {
  background: linear-gradient(135deg, #1E1E1E 0%, #0A0A0A 100%);
  color: var(--text);
  padding: 4.5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.final-cta h2 {
  color: var(--text);
  margin-bottom: 1rem;
}

.final-cta p {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 2rem auto;
}

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

/* ==========================================================================
   11. Footer & Social Links
   ========================================================================== */
.site-footer {
  background-color: #0A0A0A;
  color: var(--muted);
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid var(--border);
}

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

.footer-col h4 {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

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

.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

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

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: var(--text);
}

.footer-contact-item a:hover {
  color: var(--accent);
}

/* Social Links Section */
.social-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.social-link svg {
  width: 14px;
  height: 14px;
}

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

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

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

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

/* ==========================================================================
   Direct ZIP Download Floating Banner (For easy user download in preview)
   ========================================================================== */
.zip-download-banner {
  background: var(--card);
  color: var(--text);
  padding: 10px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}

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

.zip-badge {
  background-color: var(--accent);
  color: var(--bg);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
}

/* ==========================================================================
   Responsive Breakpoints
   Covering: 1920px, 1440px, 1366px, 1280px, 1200px, 1024px, 768px, 480px, 390px, 375px
   ========================================================================== */

/* Large Tablets & Desktop Transition (<= 1024px) */
@media (max-width: 1024px) {
  .nav-menu {
    display: none; /* Hide standard nav to prevent any squeezing */
  }

  .menu-toggle {
    display: flex;
  }

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

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

  .areas-wrapper {
    grid-template-columns: 1fr;
  }

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

/* Tablets (<= 880px) */
@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card {
    max-width: 100%;
  }

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

/* Mobile Devices (<= 640px) */
@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  section {
    padding: 3.5rem 0;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 8px 0;
  }

  .top-bar-right {
    width: 100%;
    justify-content: space-between;
  }

  .services-grid, .why-us-grid {
    grid-template-columns: 1fr;
  }

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

  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-num {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-info-card, .contact-form-container {
    padding: 24px 18px;
  }

  .btn {
    width: 100%;
  }

  .header-actions .btn-primary {
    display: none; /* Hide button in header to prevent crowding; accessible via mobile menu */
  }

  .header-actions .btn-phone {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}

/* Narrow Mobile Screens (<= 400px - 390px, 375px) */
@media (max-width: 400px) {
  .brand-name {
    font-size: 1rem;
  }

  .logo-symbol {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .container {
    width: calc(100% - 24px);
  }

  .hero-highlights {
    flex-direction: column;
    gap: 10px;
  }
}
