/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B2A;
  --navy-mid: #1B2E42;
  --gold: #D4A853;
  --gold-light: #E8C47A;
  --white: #FFFFFF;
  --off-white: #F8F6F2;
  --light-gray: #F1EEE9;
  --mid-gray: #9A9A9A;
  --dark-gray: #4A4A4A;
  --text: #1A1A2E;
  --text-light: #5A5A7A;
  --success: #2ECC71;
  --error: #E74C3C;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.16);
  --transition: 0.3s ease;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { line-height: 1.2; }
h1 { font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-light { background: var(--off-white); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header.light h2 { color: var(--white); }
.section-sub { color: var(--text-light); margin-top: 0.8rem; font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,168,83,0.4); }
.btn-outline { border-color: currentColor; color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-nav { padding: 0.5rem 1.2rem; font-size: 0.88rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: var(--shadow);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.logo em { color: var(--gold); font-style: normal; }
.logo-icon { color: var(--gold); font-size: 1rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 8rem 10vw 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--gold);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; animation: float 10s ease-in-out infinite reverse; }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 45%; animation: float 6s ease-in-out infinite 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content { position: relative; z-index: 1; }
.hero-eyebrow { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
#hero h1 { color: var(--white); margin-bottom: 1.2rem; }
#hero h1 span { color: var(--gold); }
.hero-sub { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 480px; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-ctas .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.hero-ctas .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.stat { }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--gold); font-family: var(--font-serif); }
.stat span { font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.stat p { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.1rem; }

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; z-index: 1; }
.door-animation { display: flex; gap: 2rem; align-items: flex-end; }

.door-frame {
  width: 140px;
  height: 240px;
  border: 4px solid var(--gold);
  border-radius: 4px 4px 0 0;
  position: relative;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  overflow: hidden;
}
.door-panel {
  position: absolute;
  inset: 4px;
  background: linear-gradient(135deg, rgba(212,168,83,0.15) 0%, rgba(255,255,255,0.05) 100%);
  border-radius: 2px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  transform-origin: left center;
  border: 1px solid rgba(212,168,83,0.2);
}
.door-panel:hover, .door-panel.open { transform: perspective(400px) rotateY(-50deg); }
.door-glass {
  position: absolute;
  top: 20px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 40%;
  border: 2px solid rgba(212,168,83,0.4);
  background: linear-gradient(135deg, rgba(135,206,235,0.2), rgba(255,255,255,0.05));
  border-radius: 2px;
}
.door-handle {
  position: absolute;
  right: 14px; top: 50%;
  width: 8px; height: 24px;
  background: var(--gold);
  border-radius: 4px;
  transform: translateY(-50%);
}

.window-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.win-pane {
  width: 80px; height: 80px;
  border: 3px solid rgba(212,168,83,0.6);
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(135,206,235,0.15), rgba(255,255,255,0.03));
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.win-pane:hover { border-color: var(--gold); transform: scale(1.05); }
.win-shine {
  position: absolute;
  top: -20%; left: -20%;
  width: 50%; height: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  border-radius: 50%;
  transition: all 0.5s ease;
}
.win-pane:hover .win-shine { top: 10%; left: 10%; }

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--gold);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker {
  display: inline-flex;
  gap: 2rem;
  animation: ticker 30s linear infinite;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.ticker span { flex-shrink: 0; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PRODUCTS ===== */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  border: 2px solid var(--light-gray);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-light);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border: 1px solid #E8E4DE;
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.product-card.hidden { display: none; }

.product-icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--clr) 12%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr);
}
.product-icon { width: 32px; height: 32px; }

.product-card h3 { font-size: 1.15rem; }
.product-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.55; }

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.product-features li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
}
.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== WHY US ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}
.benefit-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.benefit-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-serif);
  opacity: 0.6;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.benefit-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.benefit-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* ===== QUOTE SECTION ===== */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

/* Form */
.quote-form-wrap {
  background: var(--white);
  border: 1px solid #E8E4DE;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-step { display: none; }
.form-step.active { display: block; }

.step-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
  font-size: 1.15rem;
}
.step-badge {
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; margin-bottom: 1rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark-gray); }
.req { color: var(--gold); }

input, select, textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #DDD8D0;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.15);
}
input.error, select.error, textarea.error { border-color: var(--error); }
textarea { resize: vertical; min-height: 100px; }

/* Colour picker */
.colour-picker {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}
.colour-swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.colour-swatch:hover, .colour-swatch.active {
  border-color: var(--gold);
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.custom-colour { background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #FFE66D); }
.colour-label { font-size: 0.8rem; color: var(--text-light); margin-top: 0.4rem; }

/* Add-ons */
.addons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.addon-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.addon-check:hover { background: var(--off-white); }
.addon-check input { width: auto; }

/* Radio */
.radio-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  cursor: pointer;
}
.radio-label input { width: auto; }

.form-btns { display: flex; gap: 1rem; justify-content: flex-end; }
.btn-next { margin-top: 0.5rem; }

/* Success state */
.quote-success {
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon {
  width: 64px; height: 64px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
}
.quote-success h3 { margin-bottom: 0.5rem; }
.quote-success p { color: var(--text-light); margin-bottom: 1.5rem; }

/* Estimate Panel */
.quote-estimate {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.estimate-header { margin-bottom: 1.5rem; }
.estimate-header h3 { color: var(--gold); margin-bottom: 0.2rem; }
.estimate-header p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.estimate-breakdown { display: flex; flex-direction: column; gap: 0.6rem; }
.estimate-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.88rem;
  gap: 0.5rem;
}
.estimate-row span:first-child { color: rgba(255,255,255,0.6); flex-shrink: 0; }
.estimate-row span:last-child { text-align: right; font-weight: 500; }
.estimate-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0.5rem 0;
}
.total-row { font-size: 1rem; font-weight: 700; }
.est-total-price { color: var(--gold); font-size: 1.4rem; font-family: var(--font-serif); }
.estimate-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 1rem; }
.estimate-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(212,168,83,0.4);
  border-radius: 50px;
  color: var(--gold);
  font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  min-width: 100%;
  padding: 2.5rem 3rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stars { color: var(--gold); font-size: 1.2rem; }
.testimonial-card p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.tctl-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid #DDD8D0;
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tctl-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.tctl-dots { display: flex; gap: 0.4rem; }
.tctl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #DDD8D0;
  cursor: pointer;
  transition: all var(--transition);
}
.tctl-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin: 0.5rem 0 1rem; }
.contact-info > p { color: var(--text-light); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  font-size: 1.3rem;
  width: 44px; height: 44px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark-gray); margin-bottom: 0.2rem; }
.contact-item a, .contact-item span { font-size: 0.92rem; color: var(--text-light); }
.contact-item a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid #E8E4DE;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap .form-row { margin-bottom: 1rem; }
.contact-success {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== FOOTER ===== */
#footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-top: 1rem;
  max-width: 260px;
}
.footer-col h4 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.social-links { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all var(--transition);
  color: rgba(255,255,255,0.7);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; padding: 8rem 5vw 4rem; text-align: center; }
  .hero-content { max-width: 560px; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .quote-layout { grid-template-columns: 1fr; }
  .quote-estimate { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 280px;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; }
  .section { padding: 3.5rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .quote-form-wrap, .contact-form-wrap { padding: 1.5rem; }
  .testimonial-card { padding: 1.5rem; }
  .addons-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.8rem; }
  .btn { padding: 0.7rem 1.4rem; }
}
