/* ==========================================================================
   GUYSA INBOEDELS & OPRUIMINGEN — DESIGN SYSTEM & STYLESHEET
   Style: Serene Heritage & Tactile Warmth (No Glassmorphism, No Emojis)
   Optimized for mobile perfection, high readability, and zero layout overflow.
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* --- CSS Variables / Custom Tokens --- */
:root {
  /* Color Palette - Warm Serenity & Heritage Trust */
  --bg-page: #FAF8F5;
  --bg-surface: #FFFFFF;
  --bg-surface-alt: #F4EFEA;
  --bg-dark: #1F2421;
  --bg-dark-surface: #282E2B;
  
  /* Text Colors (High Contrast WCAG AAA) */
  --text-main: #1C1917;
  --text-muted: #57524D;
  --text-light: #807973;
  --text-inverse: #FAF8F5;
  --text-inverse-muted: #CBD5E1;

  /* Brand Accents */
  --accent-gold: #A86528;
  --accent-gold-dark: #864E1C;
  --accent-gold-light: #FDF6EE;
  --accent-sage: #2C4A3E;
  --accent-sage-light: #EBF2EE;
  --accent-sage-hover: #1E352C;
  
  /* Borders & Shadows */
  --border-subtle: #E8E2D9;
  --border-medium: #D5CEC3;
  --border-gold: #E6CFA9;
  --shadow-sm: 0 2px 4px rgba(28, 25, 23, 0.03);
  --shadow-md: 0 8px 24px -4px rgba(28, 25, 23, 0.06), 0 2px 6px -1px rgba(28, 25, 23, 0.03);
  --shadow-lg: 0 20px 40px -8px rgba(28, 25, 23, 0.09), 0 4px 12px -2px rgba(28, 25, 23, 0.04);
  
  /* Layout & Geometry */
  --max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  font-weight: 400;
}

/* --- TOP SCROLL PROGRESS INDICATOR BAR --- */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  z-index: 1000;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #864E1C 0%, #A86528 50%, #D59451 100%);
  box-shadow: 0 0 8px rgba(168, 101, 40, 0.6);
  transition: width 0.1s linear;
  will-change: width;
}

/* Accessible Focus States */
:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Lucide SVG icon sizing */
svg.lucide, i[data-lucide] {
  stroke-width: 2.2px;
  vertical-align: middle;
}

/* Typographic Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 700;
  text-wrap: balance;
  max-width: 100%;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}

p {
  color: var(--text-muted);
  text-wrap: pretty;
  max-width: 65ch;
}

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

a:hover {
  color: var(--accent-gold-dark);
}

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

/* --- Layout Utility --- */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
  box-sizing: border-box;
}

.section-padding {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3.2rem 0;
  }
}

/* --- Top Announcement Bar (Mobile Fixed Wrapping) --- */
.top-bar {
  background-color: var(--accent-sage);
  color: var(--text-inverse);
  font-size: 0.86rem;
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: 500;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.top-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  max-width: 100%;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: normal;
  text-align: center;
}

.top-bar-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: #FAF8F5;
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color var(--transition-fast);
  width: 100%;
  box-sizing: border-box;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 38px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}

.brand-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold-dark);
  font-weight: 600;
  margin-top: 3px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.4rem 0;
  position: relative;
  white-space: nowrap;
}

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

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

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

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.btn-phone-quick {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-sage-light);
  color: var(--accent-sage);
  border: 1px solid rgba(44, 74, 62, 0.2);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.btn-phone-quick:hover {
  background-color: var(--accent-sage);
  color: var(--text-inverse);
}

.btn-phone-quick svg {
  width: 17px;
  height: 17px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: var(--accent-gold);
  color: #FFFFFF;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  background-color: var(--accent-gold-dark);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: var(--bg-surface);
  color: var(--text-main);
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  border: 1px solid var(--border-medium);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold-dark);
  background-color: var(--accent-gold-light);
}

/* Mobile Nav Toggle Button */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-main);
}

/* --- MOBILE DRAWER OVERLAY (100% Fixed Viewport Positioning) --- */
.mobile-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(31, 36, 33, 0.6);
  backdrop-filter: blur(4px);
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background-color: var(--bg-page);
  z-index: 500;
  box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  overflow-y: auto;
}

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

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-main);
  padding: 0.4rem;
}

.drawer-close svg {
  width: 24px;
  height: 24px;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 1.2rem 0;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  white-space: nowrap;
  transition: background-color var(--transition-fast);
}

.drawer-link:hover, .drawer-link:focus {
  background-color: var(--accent-gold-light);
  color: var(--accent-gold-dark);
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

/* --- HERO SECTION --- */
.hero-section {
  padding: 3rem 0 4.5rem;
  background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-surface-alt) 100%);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  width: 100%;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-gold-light);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold-dark);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  max-width: 100%;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

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

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

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-guarantees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
}

.guarantee-icon {
  width: 24px;
  height: 24px;
  background-color: var(--accent-sage-light);
  color: var(--accent-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-icon svg {
  width: 14px;
  height: 14px;
}

/* --- HERO INTERACTIVE WIDGET (SITUATIE SELECTOR) --- */
.hero-widget-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.widget-image-box {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.widget-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-widget-card:hover .widget-image-box img {
  transform: scale(1.03);
}

.widget-image-badge {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  background-color: rgba(31, 36, 33, 0.85);
  color: #FFFFFF;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.widget-image-badge svg {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
}

.widget-header {
  margin-bottom: 1.5rem;
  text-align: left;
}

.widget-header h3 {
  font-size: 1.45rem;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.widget-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.situation-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.situation-btn {
  background-color: var(--bg-page);
  border: 1px solid var(--border-subtle);
  padding: 0.85rem 0.85rem;
  border-radius: var(--radius-md);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.situation-btn:hover {
  border-color: var(--accent-gold);
  background-color: var(--accent-gold-light);
}

.situation-btn.active {
  background-color: var(--accent-sage);
  color: #FFFFFF;
  border-color: var(--accent-sage);
  box-shadow: var(--shadow-sm);
}

.situation-btn .btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.situation-result-box {
  background-color: var(--bg-surface-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.result-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.result-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.result-steps li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.result-steps li::before {
  content: '✓';
  color: var(--accent-sage);
  font-weight: 800;
}

.widget-cta-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.widget-cta-box .btn-primary {
  width: 100%;
}

.widget-phone-link {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.widget-phone-link a {
  font-weight: 700;
  color: var(--accent-sage);
}

/* --- TRUST BADGES & REGIONAL COVERAGE BAR --- */
.region-bar {
  background-color: var(--bg-surface);
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border-subtle);
  width: 100%;
  box-sizing: border-box;
}

.region-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.region-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.95rem;
  white-space: nowrap;
}

.region-label svg {
  color: var(--accent-gold);
  width: 20px;
  height: 20px;
}

.region-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  max-width: 100%;
}

.region-tag {
  background-color: var(--bg-page);
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

/* --- SERVICES SECTION --- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  margin: 0 auto;
  font-size: 1.1rem;
}

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

.service-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  box-sizing: border-box;
}

.service-card-media {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

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

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

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

.service-icon-box {
  width: 52px;
  height: 52px;
  background-color: var(--accent-gold-light);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
}

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

.service-title {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features-list li {
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features-list li::before {
  content: '•';
  color: var(--accent-gold);
  font-size: 1.2rem;
}

/* --- INTERACTIVE ESTIMATOR SECTION --- */
.estimator-section {
  background: linear-gradient(180deg, var(--bg-surface-alt) 0%, var(--bg-page) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  width: 100%;
}

.estimator-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
  max-width: 100%;
}

.estimator-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.estimator-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-bottom: 2rem;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.estimator-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background-color: var(--bg-surface-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem;
}

.est-stat-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.est-stat-icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent-gold-light);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.est-stat-icon svg {
  width: 22px;
  height: 22px;
}

.est-stat-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.est-stat-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- STEP-BY-STEP PROCESS SECTION --- */
.process-section {
  background-color: var(--bg-surface-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  width: 100%;
}

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

.process-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.process-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.process-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* --- REVIEWS / TESTIMONIALS SECTION --- */
.reviews-section {
  background-color: var(--bg-page);
  width: 100%;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.review-stars {
  display: flex;
  gap: 0.3rem;
  color: #D97706;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.review-quote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.2rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background-color: var(--accent-sage-light);
  color: var(--accent-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 0.98rem;
  color: var(--text-main);
}

.author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- ABOUT & PHILOSOPHY SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.2rem;
}

.about-highlight-box {
  background-color: var(--accent-sage-light);
  border-left: 4px solid var(--accent-sage);
  padding: 1.4rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.8rem 0;
}

.about-highlight-box p {
  color: var(--accent-sage);
  font-weight: 600;
  font-size: 1.05rem;
  max-width: 100%;
}

.about-values-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  width: 40px;
  height: 40px;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

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

.value-text h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.value-text p {
  font-size: 0.9rem;
}

.about-card-visual {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  box-sizing: border-box;
}

.guy-profile-badge {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.profile-avatar-img {
  width: 56px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.profile-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.profile-info p {
  font-size: 0.88rem;
  color: var(--accent-gold-dark);
  font-weight: 600;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.5;
}

/* --- FAQ ACCORDION SECTION --- */
.faq-section {
  background-color: var(--bg-surface-alt);
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.4rem 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background-color: var(--bg-page);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  padding: 0 1.6rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.6rem 1.4rem;
}

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

/* --- CONTACT & QUOTE FORM SECTION --- */
.contact-section {
  padding: 5rem 0;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

.contact-info-card {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.contact-info-card h2 {
  color: var(--text-inverse);
  margin-bottom: 1rem;
}

.contact-info-card p {
  color: var(--text-inverse-muted);
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.method-icon {
  width: 48px;
  height: 48px;
  background-color: var(--bg-dark-surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.method-icon svg {
  width: 22px;
  height: 22px;
}

.method-details h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-inverse-muted);
  margin-bottom: 0.2rem;
}

.method-details a, .method-details p {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.contact-form-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
}

.photo-hint-box {
  background-color: var(--accent-gold-light);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.photo-hint-box a {
  color: var(--accent-gold-dark);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  background-color: var(--bg-page);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-sizing: border-box;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--text-inverse-muted);
  font-size: 0.92rem;
  margin-top: 1rem;
}

.footer-column h4 {
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

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

.footer-links a {
  color: var(--text-inverse-muted);
  font-size: 0.9rem;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-inverse-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- STICKY MOBILE CALL BAR & PULSE --- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--accent-sage);
  padding: 0.75rem 1rem;
  z-index: 300;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
  box-sizing: border-box;
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  width: 100%;
}

.mobile-sticky-btn svg.phone-pulse {
  width: 22px;
  height: 22px;
  animation: phonePulse 2s infinite ease-in-out;
}

@keyframes phonePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* --- RESPONSIVE BREAKPOINTS & MOBILE OVERFLOW LOCKS --- */
@media (max-width: 1280px) {
  .nav-links {
    gap: 1.2rem;
  }
  .nav-link {
    font-size: 0.9rem;
  }
  .btn-phone-quick {
    padding: 0.55rem 0.9rem;
    font-size: 0.88rem;
  }
}

/* Responsive breakpoint for switching to clean mobile drawer */
@media (max-width: 1024px) {
  .nav-links, .header-cta-group {
    display: none !important;
  }
  
  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background-color: var(--bg-surface);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

@media (max-width: 768px) {
  .situation-options {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }

  .estimator-result-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .estimator-card {
    padding: 1.8rem 1.2rem;
  }

  .contact-form-card, .contact-info-card {
    padding: 1.8rem 1.2rem;
  }

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

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

  .top-bar-content {
    flex-direction: column;
    gap: 0.3rem;
  }

  .mobile-sticky-bar {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 90%;
  }

  .brand-name {
    font-size: 1.4rem;
  }

  .brand-sub {
    font-size: 0.65rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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