/* ===========================
   MYHOMEFIX – Premium Stylesheet
   =========================== */

:root {
  --primary: #1a6b4a;
  --primary-dark: #124d36;
  --primary-light: #e8f5ef;
  --accent: #f0a500;
  --accent-light: #fef9ee;
  --dark: #0d1c14;
  --text: #2a3d32;
  --text-muted: #6b7f74;
  --bg: #fafbf9;
  --bg-alt: #f2f6f3;
  --border: #dce8e2;
  --white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 4px 24px rgba(26,107,74,0.08);
  --shadow-med: 0 8px 48px rgba(26,107,74,0.12);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.2; }
em { font-style: italic; color: var(--primary); }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

/* ── UTILITIES ── */
.section-padding { padding: 100px 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0;
}

.section-header { margin-bottom: 60px; }

.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,107,74,0.25);
}

.btn-primary-custom:active {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,107,74,0.25);
}
.btn-primary-custom.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0;
  background: rgba(250,251,249,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-soft);
}
.site-header .navbar { padding: 18px 0; }
/* 
.navbar-brand { display: flex; align-items: center; gap: 10px; } */

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-brand img {
  width: 190px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  transition: 0.3s ease;
}

/* Tablet */
@media (max-width: 992px) {
  .navbar-brand img {
    width: 150px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .navbar-brand img {
    width: 120px;
  }
}

.brand-icon { font-size: 1.6rem; color: var(--primary); line-height: 1; }
.brand-text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--dark); }
.brand-accent { color: var(--primary); }

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 8px 14px !important;
}
.navbar-nav .nav-link:hover { color: var(--primary); }

/* ── NAV DROPDOWN ─────────────────────────────── */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle { display: flex; align-items: center; gap: 5px; cursor: pointer; }

.nav-chevron {
  font-size: 11px;
  transition: transform 0.25s ease;
  opacity: 0.6;
}
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }

/* Desktop dropdown panel */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 380px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.13), 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.07);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 9999;
  pointer-events: none;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px; height: 12px;
  background: #fff;
  border-left: 1px solid rgba(0,0,0,0.07);
  border-top: 1px solid rgba(0,0,0,0.07);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.nav-dropdown-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

/* Card style for each category */
.nav-dropdown-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  color: var(--text);
}
.nav-dropdown-card:hover {
  background: var(--bg-light);
  color: var(--primary);
}
.nav-dropdown-card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.15s;
}
.nav-dropdown-card:hover .nav-dropdown-card-icon {
  background: rgba(var(--primary-rgb, 34,139,87), 0.12);
}
.nav-dropdown-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 2px;
  transition: color 0.15s;
}
.nav-dropdown-card:hover .nav-dropdown-card-title { color: var(--primary); }
.nav-dropdown-card-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}
.nav-dropdown-card-arrow {
  margin-left: auto;
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s;
}
.nav-dropdown-card:hover .nav-dropdown-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile: show as accordion-style below the toggle */
@media (max-width: 991px) {
  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    border: 1px solid var(--border);
    border-radius: 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    display: none;
    margin-top: 8px;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-toggle { justify-content: space-between; width: 100%; }
  .nav-dropdown.open .nav-chevron { transform: rotate(180deg); opacity: 1; }
}

.navbar-toggler { border: none; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826%2C107%2C74%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('img/hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,28,20,0.82) 0%, rgba(13,28,20,0.55) 60%, rgba(13,28,20,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--accent); }

.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-headline em { color: #7ecba4; font-style: italic; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Hero Form */
.hero-form-inner {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  max-width: 680px;
}

.hero-form-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  flex: 1;
  min-width: 0;
}
.hero-form-field i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-form-field select,
.hero-form-field input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  width: 100%;
  height: 62px;
  padding: 0;
}
.hero-form-field select option { color: var(--text); }
.hero-form-field select:required:invalid { color: var(--text-muted); }

.hero-form-divider {
  width: 1px;
  background: var(--border);
  margin: 14px 0;
  flex-shrink: 0;
}

.hero-form-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 60px;
  padding: 16px 28px;
  margin: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.hero-form-btn:hover { background: var(--primary-dark); transform: translateX(2px); }

.hero-form-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
}
.hero-stat { text-align: center; padding: 0 24px; }
.hero-stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 4px; display: block; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SERVICES SECTION ── */
.services-section { background: var(--white); }

.services-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
}

.services-group-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary-light);
}
.services-group-title i { color: var(--primary); }

.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  font-weight: 500;
}
.services-list li i { color: var(--primary); font-size: 0.9rem; flex-shrink: 0; }
.services-list li:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* ── HOW IT WORKS ── */
.how-section { background: var(--bg-alt); }

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.how-step {
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  position: relative;
  padding: 20px 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.how-step.visible { opacity: 1; transform: translateY(0); }

.how-step::before {
  content: attr(data-step);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--primary);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.how-step:hover .step-icon-wrap {
  transform: translateY(-4px);
  box-shadow: var(--shadow-med);
}

.how-step h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.how-step p {
  font-size: 0.84rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.how-connector {
  padding: 0 8px;
  padding-top: 36px;
  color: var(--border);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ── WHY US ── */
.why-section { background: var(--white); }

.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.why-row:first-of-type { border-top: none; }
.why-row-reverse { direction: rtl; }
.why-row-reverse > * { direction: ltr; }

.why-img-wrap {
  width: 100%;
  height: 360px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.why-img-wrap i { position: relative; z-index: 2; }
.why-img-shape {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  opacity: 0.15;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.why-img-green { background: linear-gradient(135deg, #d1f0e0 0%, #a8dfc0 100%); color: var(--primary); }
.why-img-green .why-img-shape { background: var(--primary); }
.why-img-amber { background: linear-gradient(135deg, #fef3d6 0%, #fde6a0 100%); color: #c97d00; }
.why-img-amber .why-img-shape { background: #f0a500; }
.why-img-blue { background: linear-gradient(135deg, #dceeff 0%, #b8daff 100%); color: #1a5fa6; }
.why-img-blue .why-img-shape { background: #1a5fa6; }
.why-img-rose { background: linear-gradient(135deg, #fde8e8 0%, #f8c4c4 100%); color: #c0392b; }
.why-img-rose .why-img-shape { background: #e74c3c; }

.why-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-light);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.why-text-col h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.why-text-col p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.why-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.why-bullets li i { color: var(--primary); font-size: 1rem; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--bg-alt); }

.testimonials-slider { overflow: hidden; position: relative; }

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-item {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 56px 60px;
  background: var(--white);
  border-radius: 28px;
  position: relative;
}
.testimonial-item::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 40px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--primary-light);
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-item blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.55;
  border: none;
  padding: 0;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.t-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.t-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.t-dot.active { background: var(--primary); transform: scale(1.3); }

/* ── CTA SECTION ── */
  .cta-section::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.cta-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.cta-headline em { color:  var(--accent); }

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  line-height: 1.7;
  position: relative;
}

.btn-cta-white {
  background: var(--white);
  color: var(--primary-dark);
  border: none;
  border-radius: 50px;
  padding: 18px 44px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  position: relative;
}
.btn-cta-white:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}
.btn-cta-white:active {
  background: var(--accent) !important;
  color: var(--dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cta-trust span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.cta-trust span i { font-size: 0.9rem; }

/* ── FOOTER ── */
.site-footer {
  background: #0a1710;
  padding: 80px 0 0;
}

.footer-brand .brand-text { color: var(--white); }

.footer-tagline {
  font-size: 0.88rem;
  color: #8a9bb0;
  margin: 16px 0 24px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid #2a3f4f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a9bb0;
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.footer-top h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b0c4d8;
  margin-bottom: 20px;
}
.footer-top ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-top ul a {
  font-size: 0.88rem;
  color: #8a9bb0;
  transition: color var(--transition);
}
.footer-top ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid #1e3028;
  margin-top: 60px;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: #8a9bb0; margin: 0; }
.footer-badges { display: flex; gap: 16px; }
.footer-badges span {
  font-size: 0.75rem;
  color: #8a9bb0;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── QUOTE PAGE ── */
.quote-page { background: var(--bg); }

.quote-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
  text-align: center;
}

.quote-page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.quote-page-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.quote-form-section { padding: 60px 0 100px; }

/* Step Progress */
.step-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.step-item.active .step-circle { background: var(--primary); color: var(--white); border-color: var(--primary); }
.step-item.done .step-circle { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }
.step-item span { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; }
.step-item.active span { color: var(--primary); }
.step-line { flex: 1; height: 2px; background: var(--border); margin: 0 8px; margin-bottom: 22px; min-width: 40px; }

/* Quote Steps */
.quote-step { display: none; animation: fadeIn 0.4s ease; }
.quote-step.active { display: block; }
@keyframes fadeIn { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform: translateY(0); } }

.step-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-sub { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 36px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}
.service-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.service-option i { font-size: 1.4rem; color: var(--primary); }
.service-option:hover,
.service-option.selected {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.quote-fields { margin-bottom: 36px; }
.quote-field-group { margin-bottom: 24px; }
.quote-field-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.quote-field-group input,
.quote-field-group select,
.quote-field-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.quote-field-group input:focus,
.quote-field-group select:focus,
.quote-field-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,107,74,0.1);
}
.quote-field-group textarea { resize: vertical; min-height: 100px; }

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  user-select: none;
}
.radio-option input[type="radio"] { display: none; }
.radio-option:has(input:checked),
.radio-option.checked {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
}
.radio-option i { font-size: 0.95rem; }

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 24px;
  line-height: 1.5;
}
.form-consent input { flex-shrink: 0; margin-top: 2px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 28px 0;
  padding: 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-item i { color: var(--primary); font-size: 1rem; }

.step-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 4px;
}
.btn-outline-secondary {
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  border-radius: 50px;
  padding: 13px 24px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-secondary:hover { border-color: var(--primary); color: var(--primary); }

.btn-submit { min-width: 220px; justify-content: center; }

/* Success State */
.success-state { padding: 60px 20px; }
.success-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 24px;
  display: block;
}
.success-state h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.success-state p { color: var(--text-muted); font-size: 1rem; margin-bottom: 36px; }
.success-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 32px;
  background: var(--bg-alt);
  border-radius: 20px;
}
.success-stats div { text-align: center; }
.success-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}
.success-stats span { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; display: block; }

.required { color: #c0392b; }

/* Header trust badges */
.header-trust { gap: 16px; }
.trust-badge {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.trust-badge i { color: var(--primary); }

/* ── LEGAL PAGE ── */
.legal-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
}
.legal-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.legal-date { font-size: 0.85rem; color: var(--text-muted); }

.legal-body { padding: 60px 0 100px; }

.legal-toc {
  background: var(--bg-alt);
  border-left: 3px solid var(--primary);
  padding: 24px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 48px;
}
.legal-toc p { font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.legal-toc ol { padding-left: 20px; margin: 0; }
.legal-toc ol li { margin-bottom: 6px; }
.legal-toc ol li a { font-size: 0.85rem; color: var(--primary); }

.legal-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.legal-content section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.legal-content section:last-child { border-bottom: none; }

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 10px;
}
.legal-content p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 0 0 14px 0;
  padding-left: 0;
  list-style: none;
}
.legal-content ul li {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.legal-content ul li:last-child { border-bottom: none; }
.legal-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.contact-block {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  margin: 16px 0;
}
.contact-block p { margin-bottom: 8px; font-size: 0.9rem; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .services-grid-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .why-row { grid-template-columns: 1fr; gap: 36px; }
  .why-row-reverse { direction: ltr; }
  .why-img-wrap { height: 240px; }
  .how-steps { flex-direction: column; align-items: center; }
  .how-connector { transform: rotate(90deg); padding: 0; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 16px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 70px 0; }
  .hero-form-inner { flex-direction: column; border-radius: 20px; }
  .hero-form-field { height: 54px; }
  .hero-form-divider { width: 100%; height: 1px; margin: 0 14px; }
  .hero-form-btn { border-radius: 0 0 20px 20px; margin: 0; padding: 16px; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .hero-stat-divider { display: none; }
  .testimonial-item { padding: 36px 24px; }
  .services-list { grid-template-columns: 1fr; }
  .step-progress { gap: 4px; }
  .step-line { min-width: 20px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .success-stats { gap: 24px; padding: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-stats { justify-content: center; }
  .why-img-wrap { height: 180px; font-size: 3rem; }
  .radio-group { flex-direction: column; }
}