/* ============================================================
   GOLDEN OAK CONSTRUCTION — styles.css
   Brand: Charcoal #1A1A1A | Gold #B8860B | White #FFFFFF
          Light grey #F5F4F1 | Mid grey #4A4A4A
============================================================ */

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  touch-action: pan-x pan-y;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #4A4A4A;
  background: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
section { overflow-x: hidden; }

:focus-visible {
  outline: 2px solid #B8860B;
  outline-offset: 3px;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  color: #1A1A1A;
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }
h4 { font-size: 1rem; }
p { color: #4A4A4A; }

/* ── Utility ────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden-field { display: none !important; }
.gold { color: #B8860B; }
.section-alt { background: #F5F4F1; }

section { padding: 80px 0; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.section-header h2 { position: relative; display: inline-block; }
.section-header h2::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: #B8860B;
  margin: 12px auto 0;
  transition: width 0.7s ease;
}
.section-header h2.underline-anim::after { width: 60%; }
.section-header p { margin-top: 12px; font-size: 1.05rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: normal;
  text-align: center;
  justify-content: center;
  max-width: 100%;
  word-break: break-word;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: #B8860B;
  color: #FFFFFF;
}
.btn-gold:hover { background: #9a6f09; box-shadow: 0 4px 16px rgba(184,134,11,0.4); }

.btn-outline {
  background: transparent;
  color: #B8860B;
  border: 2px solid #B8860B;
}
.btn-outline:hover { background: #B8860B; color: #FFFFFF; }

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.btn-outline-white:hover { background: #FFFFFF; color: #1A1A1A; }

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ── Scroll Progress Bar ────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: #B8860B;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Scroll To Top ──────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 44px; height: 44px;
  background: #1A1A1A;
  color: #FFFFFF;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 900;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
#scroll-top.visible { opacity: 1; pointer-events: auto; }
#scroll-top:hover { background: #B8860B; transform: translateY(-3px); }

/* ── Floating Call Button (mobile) ─────────────────────────── */
#float-call {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #B8860B;
  color: #FFFFFF;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(184,134,11,0.5);
  animation: pulse-gold 2.5s infinite;
}

@keyframes pulse-gold {
  0%,100% { box-shadow: 0 4px 20px rgba(184,134,11,0.5); }
  50% { box-shadow: 0 4px 30px rgba(184,134,11,0.85), 0 0 0 12px rgba(184,134,11,0.1); }
}

/* ── Fade-up Animations ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--stagger, 0) * 100ms);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HEADER ─────────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  background: #FFFFFF;
  z-index: 800;
  transition: box-shadow 0.3s;
  border-bottom: 1px solid #eee;
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 64px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  object-position: left center;
}
.logo-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
}
.logo-name { color: #1A1A1A; }
.logo-suffix { color: #B8860B; }

#main-nav { flex: 1; display: flex; justify-content: center; }
#main-nav ul { display: flex; gap: 28px; }
#main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1A1A1A;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
#main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: #B8860B;
  transition: width 0.25s;
}
#main-nav a:hover, #main-nav a.active { color: #B8860B; }
#main-nav a:hover::after, #main-nav a.active::after { width: 100%; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #1A1A1A;
  font-size: 0.9rem;
  white-space: nowrap;
}
.header-phone:hover { color: #B8860B; }

#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
#hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #1A1A1A;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Mobile Nav Overlay ──────────────────────────────────────── */
#mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #1A1A1A;
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  overflow-y: auto;
}
#mobile-nav-overlay.open { display: flex; }

#mobile-nav-close {
  align-self: flex-end;
  font-size: 2rem;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 32px;
}

#mobile-nav-overlay nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
#mobile-nav-overlay nav li a {
  display: block;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}
#mobile-nav-overlay nav li a:hover { color: #B8860B; }
#mobile-nav-overlay .btn { margin-bottom: 12px; }

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  background: #1A1A1A;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(184,134,11,0.05) 30px,
    rgba(184,134,11,0.05) 60px
  );
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero Form */
.hero-form {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.form-title {
  font-size: 1.3rem;
  color: #1A1A1A;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #B8860B;
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  color: #1A1A1A;
  background: #FFFFFF;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #B8860B;
  box-shadow: 0 0 0 3px rgba(184,134,11,0.15);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: #888;
  margin-top: 10px;
}

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

.form-success {
  text-align: center;
  padding: 32px 16px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success p, .form-success h3 { color: #1A1A1A; }
.form-success a { color: #B8860B; }

/* ── TRUST BADGES ───────────────────────────────────────────── */
#trust-badges {
  padding: 36px 0;
  background: #F5F4F1;
  border-top: 1px solid #e8e6e1;
  border-bottom: 1px solid #e8e6e1;
}

.badge-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.badge-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 16px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  min-width: 0;
  flex: 1 1 200px;
  max-width: 100%;
}
.badge-icon { flex-shrink: 0; }
.badge-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.badge-platform { font-weight: 700; font-size: 0.9rem; color: #1A1A1A; }
.badge-stars { display: flex; gap: 2px; align-items: center; }
.badge-status { font-size: 0.8rem; font-weight: 700; color: #B8860B; }
.badge-desc { font-size: 0.75rem; color: #777; }

/* ── TRUST STRIP ────────────────────────────────────────────── */
#trust-strip { padding: 64px 0; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  background: #FFFFFF;
  border: 1.5px solid #e8e6e1;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.trust-card:hover {
  box-shadow: 0 6px 24px rgba(184,134,11,0.15);
  border-color: #B8860B;
  transform: translateY(-4px);
}
.trust-icon { margin: 0 auto 16px; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; }
.trust-card h3 { font-size: 1rem; margin-bottom: 8px; }
.trust-card p { font-size: 0.875rem; line-height: 1.6; }

/* ── STATS BAR ──────────────────────────────────────────────── */
#stats-bar {
  background: #1A1A1A;
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item { padding: 16px; }
.stat-number {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #B8860B;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ── SERVICES ───────────────────────────────────────────────── */
#services { padding: 80px 0; }

.services-tabs {
  display: flex;
  gap: 0;
  border: 2px solid #B8860B;
  border-radius: 4px;
  width: fit-content;
  margin: 0 auto 48px;
  overflow: hidden;
}
.tab-btn {
  padding: 12px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #B8860B;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  border: none;
}
.tab-btn.active {
  background: #B8860B;
  color: #FFFFFF;
}
.tab-btn:hover:not(.active) { background: rgba(184,134,11,0.08); }

.tab-content { display: none; }
.tab-content.active { display: block; }

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

.service-card {
  background: #FFFFFF;
  border: 1.5px solid #e8e6e1;
  border-radius: 8px;
  padding: 28px 24px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(184,134,11,0.12);
  border-color: #B8860B;
  transform: translateY(-4px);
}
.service-icon { margin-bottom: 16px; }
.service-card h3 { font-size: 1rem; margin-bottom: 8px; color: #1A1A1A; }
.service-card p { font-size: 0.875rem; color: #4A4A4A; line-height: 1.6; }

/* ── PROBLEMS ───────────────────────────────────────────────── */
#problems { padding: 80px 0; }

.problems-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.problems-text h2 { margin-bottom: 16px; }
.problems-text > p { margin-bottom: 28px; }

.checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #4A4A4A;
}
.checklist li svg { flex-shrink: 0; margin-top: 2px; }

.problems-img-placeholder {
  background: #e8e6e1;
  border-radius: 8px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #999;
  font-size: 0.9rem;
}

/* ── WHY CHOOSE US ──────────────────────────────────────────── */
#why-us { padding: 80px 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.why-card {
  background: #FFFFFF;
  border: 1.5px solid #e8e6e1;
  border-radius: 8px;
  padding: 32px 24px;
  position: relative;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.why-card:hover {
  box-shadow: 0 6px 24px rgba(184,134,11,0.12);
  border-color: #B8860B;
  transform: translateY(-4px);
}
.why-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(184,134,11,0.12);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.why-icon { margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; margin-bottom: 8px; }
.why-card p { font-size: 0.875rem; line-height: 1.6; }

/* ── PROCESS ────────────────────────────────────────────────── */
#process { padding: 80px 0; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.process-connector {
  width: 80px;
  height: 2px;
  background: #B8860B;
  flex-shrink: 0;
  align-self: center;
  margin-top: -40px;
  opacity: 0.4;
}

.step-num {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #B8860B;
  line-height: 1;
  margin-bottom: 12px;
}
.step-icon { margin: 0 auto 14px; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.875rem; line-height: 1.65; }

/* ── GALLERY ────────────────────────────────────────────────── */
#gallery { padding: 80px 0; background: #F5F4F1; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.gallery-item { position: relative; }
.gallery-placeholder {
  aspect-ratio: 4/3;
  background: #d0cdc8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #888;
  font-size: 0.75rem;
}
.gallery-placeholder.after-ph { background: #c8c4b8; }
.gallery-placeholder span { font-weight: 700; font-size: 0.95rem; color: #555; }
.gallery-placeholder small { font-size: 0.7rem; color: #777; }
.gallery-label {
  position: absolute;
  bottom: 8px; left: 8px;
  background: rgba(0,0,0,0.6);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.08em;
}

/* ── SERVICE AREAS ──────────────────────────────────────────── */
#service-areas { padding: 80px 0; }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-pill {
  display: inline-block;
  padding: 9px 20px;
  border: 2px solid #B8860B;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A1A1A;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}
.area-pill:hover { background: #B8860B; color: #FFFFFF; }

/* ── REVIEWS ────────────────────────────────────────────────── */
#reviews { padding: 80px 0; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #FFFFFF;
  border: 1.5px solid #e8e6e1;
  border-radius: 8px;
  padding: 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.review-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-card blockquote {
  font-size: 0.9rem;
  color: #4A4A4A;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #e8e6e1;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: 0.875rem;
  color: #1A1A1A;
}
.review-author span {
  font-size: 0.75rem;
  color: #888;
}

/* ── FAQ ────────────────────────────────────────────────────── */
#faq { padding: 80px 0; }

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

.faq-item { border-bottom: 1px solid #e8e6e1; }
.faq-item:first-child { border-top: 1px solid #e8e6e1; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: #B8860B; }
.faq-question[aria-expanded="true"] { color: #B8860B; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-chevron { flex-shrink: 0; transition: transform 0.35s ease; color: #B8860B; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-answer a { color: #B8860B; text-decoration: underline; }

/* ── CONTACT ────────────────────────────────────────────────── */
#contact { padding: 80px 0; background: #F5F4F1; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { font-size: 1rem; margin-bottom: 28px; line-height: 1.7; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #1A1A1A;
}
.contact-list a { color: #1A1A1A; font-weight: 600; }
.contact-list a:hover { color: #B8860B; }

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #4A4A4A;
  font-weight: 500;
}

.contact-form-wrap {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ── CTA BAND ───────────────────────────────────────────────── */
#cta-band {
  background: #1A1A1A;
  padding: 72px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 { color: #FFFFFF; margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,0.75); max-width: 540px; }

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
#site-footer {
  background: #1A1A1A;
  padding: 64px 0 32px;
  border-top: 3px solid #B8860B;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-logo { height: 56px; width: auto; max-width: 220px; filter: none; background: #FFFFFF; padding: 6px 10px; border-radius: 6px; margin-bottom: 12px; object-fit: contain; }
.footer-logo-text-fallback { margin-bottom: 12px; }
.footer-logo-text-fallback .logo-name { color: #FFFFFF; }
.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin-bottom: 16px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact a {
  color: #B8860B;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #FFFFFF; }

.footer-nav-group h4 {
  color: #FFFFFF;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-nav-group ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-group li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-nav-group li a:hover { color: #B8860B; }

.footer-bottom { text-align: center; }
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
============================================================ */

/* ── 1024px ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 360px; gap: 36px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-connector { width: 40px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { gap: 40px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 768px ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 48px 0; }

  /* Header */
  #main-nav, .header-cta { display: none; }
  #hamburger { display: flex; }
  .header-inner { height: 64px; }
  .logo-img { height: 48px; max-width: 190px; }

  /* Hero — single column, centred */
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { text-align: center; }
  .hero-badges { justify-content: center; flex-wrap: wrap; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero-sub { margin: 0 auto 20px; }

  /* Trust badges */
  .badge-strip { flex-direction: column; align-items: stretch; }
  .badge-card { width: 100%; max-width: 100%; }

  /* Trust strip */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services tabs */
  .services-tabs { width: 100%; border-radius: 4px; }
  .tab-btn { flex: 1; padding: 11px 12px; font-size: 0.85rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process-steps { flex-direction: column; align-items: center; gap: 20px; }
  .process-connector { width: 2px; height: 28px; align-self: center; margin-top: 0; }
  .process-step { width: 100%; max-width: 340px; text-align: center; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }

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

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

  /* Problems */
  .problems-inner { grid-template-columns: 1fr; }
  .problems-image { display: none; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-buttons { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .cta-text p { margin: 0 auto; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Float call button */
  #float-call { display: flex; }

  /* Scroll buttons — smaller on mobile */
  #scroll-top { width: 38px; height: 38px; bottom: 20px; left: 16px; }
  #float-call { width: 50px; height: 50px; bottom: 20px; right: 16px; }
}

/* ── 480px ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  section { padding: 40px 0; }

  /* Grids — single column */
  .trust-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .gallery-pair { grid-template-columns: 1fr; }

  /* Gallery — stack before/after vertically */
  .gallery-pair { display: flex; flex-direction: column; }
  .gallery-placeholder { aspect-ratio: 16/9; }

  /* Forms */
  .hero-form { padding: 20px 16px; }
  .contact-form-wrap { padding: 20px 16px; }
  .form-row { grid-template-columns: 1fr; }

  /* Hero buttons — full width stack */
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  /* CTA buttons — full width stack */
  .cta-buttons { flex-direction: column; width: 100%; align-items: stretch; }
  .cta-buttons .btn { width: 100%; justify-content: center; }

  /* Process */
  .process-steps { gap: 14px; }
  .process-step { padding: 0; max-width: 100%; }
  .process-connector { height: 20px; }

  /* Cards */
  .why-card { padding: 20px 16px; }
  .trust-card { padding: 20px 16px; }
  .service-card { padding: 20px 16px; }
  .review-card { padding: 20px 16px; }
  .hero-form .btn, .contact-form-wrap .btn { font-size: 0.9rem; padding: 13px 20px; }

  /* Typography */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .stat-number { font-size: 2rem; }
  .section-header { margin-bottom: 36px; }

  /* Areas */
  .area-pill { font-size: 0.8rem; padding: 7px 14px; }

  /* Header */
  .logo-img { height: 44px; max-width: 170px; }
}

/* ── 360px (small Android phones) ──────────────────────────── */
@media (max-width: 360px) {
  .container { padding: 0 12px; }

  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.25rem; }

  .logo-img { height: 38px; max-width: 150px; }
  .header-inner { height: 58px; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 2.4rem; }
  .stat-item { padding: 10px; }

  .hero-form { padding: 16px 12px; }
  .contact-form-wrap { padding: 16px 12px; }

  .badge-card { padding: 12px 14px; gap: 10px; }
  .trust-card, .why-card, .service-card { padding: 16px 12px; }

  .faq-question { font-size: 0.9rem; }
  .area-pill { font-size: 0.75rem; padding: 6px 12px; }

  #scroll-top, #float-call { bottom: 14px; }
  #scroll-top { left: 12px; }
  #float-call { right: 12px; }
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  #site-header, #cta-band, #float-call, #scroll-top, #scroll-progress { display: none !important; }
}
