/* ==========================================================================
   INDIGOBIRD EZ ACCESS EQUIPMENT - MAIN STYLESHEET
   Pure CSS3 - Lightweight, High-Performance, Production-Ready
   Tested for: 375px, 390px, 480px, 768px, 1024px, 1200px, 1280px, 1366px, 1440px, 1920px
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & THEME SETUP
   -------------------------------------------------------------------------- */
:root {
  --color-brand-primary: #0f2744;
  --color-brand-primary-light: #1e3a8a;
  --color-brand-accent: #f59e0b;
  --color-brand-accent-hover: #d97706;
  --color-brand-accent-light: #fef3c7;
  --color-brand-dark: #0a1424;
  
  --color-bg: #ffffff;
  --color-bg-subtle: #f8fafc;
  --color-bg-muted: #f1f5f9;
  --color-card-bg: #ffffff;
  
  --color-text-main: #0f172a;
  --color-text-muted: #475569;
  --color-text-light: #64748b;
  --color-text-white: #ffffff;
  
  --color-border: #e2e8f0;
  --color-border-subtle: #cbd5e1;
  --color-border-focus: #f59e0b;
  
  --color-success: #10b981;
  --color-success-bg: #ecfdf5;
  --color-warning: #f59e0b;
  
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --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.1), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container-max-width: min(1200px, calc(100% - 32px));
  --transition-fast: 0.18s ease-in-out;
  --transition-normal: 0.28s ease-in-out;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-main);
  background-color: var(--color-bg);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

.container {
  width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   3. TOP BAR & NOTIFICATION STRIP
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--color-brand-dark);
  color: #cbd5e1;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
  position: relative;
  z-index: 50;
}

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

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

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

.top-item svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--color-brand-accent);
  stroke-width: 2;
  flex-shrink: 0;
}

.top-item strong {
  color: #ffffff;
  font-weight: 600;
}

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

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 6px #34d399;
}

/* --------------------------------------------------------------------------
   4. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  background-color: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

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

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-brand-primary), var(--color-brand-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-accent);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.logo-icon svg {
  width: 26px;
  height: 26px;
}

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

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

.brand-name span {
  color: var(--color-brand-accent);
}

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

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-main);
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-brand-accent);
  color: var(--color-brand-dark);
  box-shadow: 0 2px 4px rgba(245, 158, 11, 0.25);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--color-brand-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(217, 119, 6, 0.3);
}

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

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--color-brand-primary-light);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-brand-primary);
}

.btn-outline:hover {
  background-color: var(--color-bg-muted);
  border-color: var(--color-brand-primary);
}

.btn-call {
  background-color: #f8fafc;
  border: 1.5px solid #e2e8f0;
  color: var(--color-brand-primary);
  padding: 8px 14px;
  font-size: 0.875rem;
}

.btn-call:hover {
  background-color: var(--color-brand-accent-light);
  border-color: var(--color-brand-accent);
  color: #92400e;
}

.btn-call svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

/* Mobile Hamburger Button */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  color: var(--color-brand-primary);
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

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

/* Mobile Navigation Drawer */
.mobile-drawer {
  display: none;
  background-color: var(--color-bg);
  border-bottom: 2px solid var(--color-brand-accent);
  padding: 20px 0 24px;
  box-shadow: var(--shadow-lg);
}

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

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

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-main);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  display: block;
}

.mobile-nav-link:hover, .mobile-nav-link:active {
  background-color: var(--color-bg-muted);
  color: var(--color-brand-accent-hover);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 48px 0 56px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

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

.hero-badge-container {
  margin-bottom: 14px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-brand-accent-light);
  color: #92400e;
  border: 1px solid #fcd34d;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-pill svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-brand-primary);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.hero-title .highlight {
  color: #b45309;
  position: relative;
}

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

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

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

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

.trust-icon {
  width: 36px;
  height: 36px;
  background-color: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-primary);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
}

.trust-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-brand-primary);
  line-height: 1.2;
}

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

.hero-media {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-muted);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 11;
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 39, 68, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.floating-badge-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-icon {
  width: 32px;
  height: 32px;
  background-color: var(--color-brand-accent);
  color: var(--color-brand-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
}

.floating-badge-text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
}

.floating-badge-text span {
  font-size: 0.775rem;
  color: #cbd5e1;
}

/* --------------------------------------------------------------------------
   6. SECTION HEADINGS & COMMON PATTERNS
   -------------------------------------------------------------------------- */
.section {
  padding: 72px 0;
  position: relative;
}

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

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

.section-kicker {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b45309;
  background-color: var(--color-brand-accent-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 800;
  color: var(--color-brand-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

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

/* --------------------------------------------------------------------------
   7. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

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

.service-image-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  background-color: var(--color-bg-muted);
  overflow: hidden;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-category-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 39, 68, 0.9);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.service-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-brand-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

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

.service-spec-list {
  background-color: var(--color-bg-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 20px;
  border: 1px solid #edf2f7;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.845rem;
  color: var(--color-text-main);
}

.service-spec-item svg {
  width: 16px;
  height: 16px;
  stroke: #16a34a;
  stroke-width: 2.2;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.service-footer .btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   8. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.why-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.why-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
}

.why-icon-box {
  width: 48px;
  height: 48px;
  background-color: #eff6ff;
  border: 1px solid #dbeafe;
  color: var(--color-brand-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
}

.why-card-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-brand-primary);
  margin-bottom: 8px;
}

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

/* --------------------------------------------------------------------------
   9. SERVICE AREAS
   -------------------------------------------------------------------------- */
.areas-wrapper {
  background-color: var(--color-brand-dark);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow-xl);
}

.areas-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.areas-header h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.areas-header p {
  color: #cbd5e1;
  font-size: 1.0625rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.area-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition-fast);
}

.area-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-brand-accent);
}

.area-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-brand-accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-card-title svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.875rem;
  color: #e2e8f0;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.area-item::before {
  content: "•";
  color: var(--color-brand-accent);
  font-size: 1.2rem;
  line-height: 0;
}

.areas-footer-bar {
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.areas-footer-text {
  font-size: 0.9375rem;
  color: #cbd5e1;
}

.areas-footer-text strong {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   10. OUR PROCESS
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  position: relative;
}

.process-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.process-step-badge {
  width: 42px;
  height: 42px;
  background-color: var(--color-brand-primary);
  color: var(--color-brand-accent);
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.process-card-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-brand-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

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

/* --------------------------------------------------------------------------
   11. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

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

.faq-item[open] {
  border-color: #93c5fd;
}

.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-brand-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-brand-accent-hover);
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item[open] .faq-answer {
  border-top-color: #f1f5f9;
}

/* --------------------------------------------------------------------------
   12. CONTACT / QUOTE SECTION
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: start;
}

.contact-info-panel {
  background: linear-gradient(135deg, var(--color-brand-primary), var(--color-brand-dark));
  color: #ffffff;
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-info-panel h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.contact-info-panel p {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.info-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

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

.info-icon-wrapper {
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.18);
  color: var(--color-brand-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon-wrapper svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.2;
}

.info-item-content strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 2px;
}

.info-item-content a, .info-item-content span {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.info-item-content a:hover {
  color: var(--color-brand-accent);
}

.emergency-callout {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.emergency-callout svg {
  width: 24px;
  height: 24px;
  color: var(--color-brand-accent);
  flex-shrink: 0;
}

.emergency-callout-text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--color-brand-accent);
}

.emergency-callout-text span {
  font-size: 0.8125rem;
  color: #cbd5e1;
}

/* Contact Form */
.quote-form-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.quote-form-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-brand-primary);
  margin-bottom: 8px;
}

.quote-form-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.9375rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  color: var(--color-text-main);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-brand-accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

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

.form-notice {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 12px;
  text-align: center;
}

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

.form-feedback.is-success {
  display: block;
  background-color: var(--color-success-bg);
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.form-feedback.is-error {
  display: block;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* --------------------------------------------------------------------------
   13. FINAL CTA
   -------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--color-brand-primary), #0c1e36);
  color: #ffffff;
  padding: 64px 0;
  text-align: center;
  position: relative;
}

.cta-box {
  max-width: 780px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.2);
  color: var(--color-brand-accent);
  border: 1px solid var(--color-brand-accent);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.cta-title {
  font-size: clamp(1.875rem, 3.2vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 32px;
}

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

/* --------------------------------------------------------------------------
   14. FOOTER & SOCIAL LINKS (CLEANLY ORGANIZED)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-brand-dark);
  color: #94a3b8;
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-about p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9375rem;
}

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

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9375rem;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cbd5e1;
}

.footer-contact-row svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-brand-accent);
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}

/* SOCIAL MEDIA LINKS SECTION (ONE CONSOLIDATED CONTAINER) */
.social-icons-section {
  padding-top: 12px;
}

.social-icons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.social-link-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: all var(--transition-fast);
}

.social-link-btn:hover {
  background: var(--color-brand-accent);
  color: var(--color-brand-dark);
  border-color: var(--color-brand-accent);
  transform: translateY(-2px);
}

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

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

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

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

/* --------------------------------------------------------------------------
   15. 404 PAGE STYLES
   -------------------------------------------------------------------------- */
.error-page-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  text-align: center;
}

.error-card {
  max-width: 580px;
  background: #ffffff;
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.error-code {
  font-size: 5rem;
  font-weight: 900;
  color: var(--color-brand-primary);
  line-height: 1;
  margin-bottom: 12px;
}

.error-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--color-brand-primary);
}

.error-desc {
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE BREAKPOINTS (NO HORIZONTAL OVERFLOW, ZERO OVERLAPPING)
   -------------------------------------------------------------------------- */

/* Large Tablets & Small Laptops (under 1024px) */
@media (max-width: 1024px) {
  .nav-desktop, .header-actions .btn-call {
    display: none;
  }
  
  .menu-toggle {
    display: inline-flex;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .hero-media {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Tablets (under 768px) */
@media (max-width: 768px) {
  .top-bar {
    font-size: 0.8125rem;
  }
  
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
  
  .top-bar-right {
    display: none;
  }
  
  .header-container {
    height: 70px;
  }
  
  .section {
    padding: 52px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .areas-wrapper {
    padding: 32px 20px;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-trust-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

/* Mobile Devices (under 480px) */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }
  
  .brand-name {
    font-size: 1rem;
  }
  
  .brand-tagline {
    font-size: 0.65rem;
  }
  
  .logo-icon {
    width: 38px;
    height: 38px;
  }
  
  .hero-title {
    font-size: 1.85rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
  
  .hero-floating-badge {
    position: static;
    margin-top: 12px;
  }
  
  .quote-form-card {
    padding: 24px 18px;
  }
  
  .contact-info-panel {
    padding: 24px 18px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}
