/* ==========================================================================
   PUFFIN SELL MY BOAT FOR ME - CORE STYLESHEET
   Production-ready, ultra-lightweight, 100% Vanilla CSS
   ========================================================================== */

:root {
  /* Maritime Alaskan Color Palette */
  --primary-dark: #0a1c30;
  --primary: #0f2b48;
  --primary-light: #1e3a5f;
  --accent-cyan: #0284c7;
  --accent-cyan-light: #e0f2fe;
  --accent-gold: #d97706;
  --accent-gold-hover: #b45309;
  --accent-gold-light: #fef3c7;
  
  /* Neutrals & Surfaces */
  --bg-page: #f8fafc;
  --surface-white: #ffffff;
  --surface-alt: #f1f5f9;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --border-color: #e2e8f0;
  --border-dark: #cbd5e1;
  
  /* Shadows & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 9999px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  
  /* Layout */
  --container-max: 1200px;
  --transition-fast: 0.18s ease;
  --transition-normal: 0.25s ease;
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-page);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Safe image rules */
img, picture, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

.heading-xl {
  font-size: clamp(2rem, 4vw + 1rem, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.heading-lg {
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.35rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.heading-md {
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem);
  font-weight: 600;
}

.heading-sm {
  font-size: 1.125rem;
  font-weight: 600;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

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

/* Section Spacing */
.section-pad {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-pad-sm {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

/* Buttons & Links */
a {
  color: inherit;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  min-height: 44px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--surface-white);
  color: var(--primary-dark);
  border-color: var(--border-dark);
}

.btn-secondary:hover {
  background-color: var(--surface-alt);
  border-color: var(--text-light);
}

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

.btn-dark:hover {
  background-color: var(--primary-dark);
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

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

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

/* ==========================================================================
   1. TOP INFORMATION BAR
   ========================================================================== */
.top-info-bar {
  background-color: var(--primary-dark);
  color: #e2e8f0;
  font-size: 0.8125rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  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: 18px;
  flex-wrap: wrap;
}

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

.top-bar-item .icon {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.top-phone-link {
  color: #ffffff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.top-phone-link:hover {
  color: var(--accent-gold);
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--surface-white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

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

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

.brand-symbol {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

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

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

.brand-sub {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 4px;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

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

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

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background-color: var(--surface-alt);
  border: 1px solid var(--border-color);
  white-space: nowrap;
}

.header-phone-btn:hover {
  background-color: var(--accent-cyan-light);
  border-color: var(--accent-cyan);
}

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

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

/* Mobile Drawer Menu */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background-color: var(--surface-white);
  z-index: 1100;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

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

.mobile-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
  z-index: 1050;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

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

.mobile-drawer-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text-muted);
}

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

.mobile-nav-list .nav-link {
  display: block;
  padding: 12px 8px;
  font-size: 1.0625rem;
  border-bottom: 1px solid var(--surface-alt);
}

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

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-alt) 100%);
  border-bottom: 1px solid var(--border-color);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: var(--accent-cyan-light);
  color: var(--accent-cyan);
  border: 1px solid #bae6fd;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  width: fit-content;
}

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

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-main);
  font-weight: 600;
}

.trust-item .icon {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  background-color: var(--primary-dark);
}

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

.hero-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 28, 48, 0.9) 100%);
  color: #ffffff;
  padding: 24px 16px 14px;
  font-size: 0.8125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   4. SERVICES SECTION
   ========================================================================== */
.services-section {
  background-color: var(--surface-white);
}

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

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

.service-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--accent-cyan-light);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}

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

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-main);
  padding-top: 14px;
  border-top: 1px solid var(--surface-alt);
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list .check-icon {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* ==========================================================================
   5. WHY CHOOSE US
   ========================================================================== */
.why-section {
  background-color: var(--surface-alt);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.why-card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-item {
  background-color: var(--surface-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

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

.why-item-icon svg {
  width: 20px;
  height: 20px;
}

.why-item-content h3 {
  font-size: 1.0625rem;
  margin-bottom: 4px;
}

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

.why-media-card {
  background-color: var(--surface-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.why-media-body {
  padding: 24px;
}

.why-stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.stat-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.stat-item-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   6. SERVICE AREAS (ALASKA STATEWIDE)
   ========================================================================== */
.areas-section {
  background-color: var(--surface-white);
}

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

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

.area-card:hover {
  border-color: var(--accent-cyan);
  background-color: var(--accent-cyan-light);
  transform: translateX(2px);
}

.area-pin {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  background-color: var(--surface-white);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.area-pin svg {
  width: 16px;
  height: 16px;
}

.area-name {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.9375rem;
  display: block;
}

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

.areas-note-banner {
  margin-top: 32px;
  background-color: var(--surface-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   7. OUR PROCESS
   ========================================================================== */
.process-section {
  background-color: var(--surface-alt);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
}

.process-step-card {
  background-color: var(--surface-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.process-step-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

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

/* ==========================================================================
   8. FAQ SECTION (8-10 Useful FAQs)
   ========================================================================== */
.faq-section {
  background-color: var(--surface-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item:focus-within, .faq-item:hover {
  border-color: var(--accent-cyan);
}

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

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

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

.faq-content {
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  display: none;
}

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

/* ==========================================================================
   9. CONTACT / QUOTE SECTION
   ========================================================================== */
.contact-section {
  background-color: var(--surface-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
}

.contact-info-card {
  background-color: var(--primary-dark);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.contact-info-block h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.contact-info-block p {
  color: #cbd5e1;
  font-size: 0.9375rem;
}

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

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

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
}

.contact-detail-text span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

.contact-detail-text a, .contact-detail-text strong {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 700;
}

.form-wrapper {
  background-color: var(--surface-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-sm);
}

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

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

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

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9375rem;
  color: var(--text-main);
  background-color: var(--surface-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  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(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

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

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

.form-status-alert.is-success {
  display: block;
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.form-status-alert.is-notice {
  display: block;
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

/* ==========================================================================
   10. FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.final-cta-content h2 {
  color: #ffffff;
  margin-bottom: 14px;
}

.final-cta-content p {
  color: #cbd5e1;
  font-size: 1.125rem;
  margin-bottom: 24px;
}

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

/* ==========================================================================
   11. FOOTER & SOCIAL ICONS
   ========================================================================== */
.site-footer {
  background-color: var(--primary-dark);
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(3rem, 5vw, 4rem) 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 36px);
  margin-bottom: 36px;
}

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

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

.footer-links a {
  color: #94a3b8;
  transition: color var(--transition-fast);
}

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

/* Social Media Section in Code */
.social-links-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

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

.social-btn:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

.footer-legal-links {
  display: flex;
  gap: 18px;
}

/* Utilities */
.icon {
  display: inline-block;
  vertical-align: middle;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Precision scaling)
   ========================================================================== */

/* 1200px - 1024px: Desktop adjustments */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .mobile-drawer {
    display: block;
  }
  .mobile-drawer-backdrop {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* 768px - Tablet & Mobile */
@media (max-width: 768px) {
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }
  .top-bar-left {
    display: none; /* Keep clean on small mobile, show phone on right */
  }
  .header-inner {
    height: 68px;
  }
  .header-ctas .header-phone-btn {
    display: none; /* Saved space, available in drawer and top bar */
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* 480px, 390px, 375px - Small Mobile Screens */
@media (max-width: 480px) {
  .site-container {
    width: calc(100% - 24px);
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .final-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .final-cta-buttons .btn {
    width: 100%;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
}
