/* ============================================================
   BuildMyDeck.ca — Stylesheet
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green-dark:   #1A3C1F;
  --green-mid:    #2E5E35;
  --green-light:  #4A8C52;
  --amber:        #D4822A;
  --amber-light:  #E8A547;
  --cream:        #F5F0E8;
  --cream-light:  #FAF8F4;
  --white:        #FFFFFF;
  --text:         #1C1C1C;
  --text-muted:   #5A5A5A;
  --border:       #DDD6C8;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.16);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --transition:   0.2s ease;
  --nav-h:        72px;
  --max-w:        1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-muted); line-height: 1.75; }

/* ---- Layout Utilities ---- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; color: var(--text); }
.section-sub { max-width: 600px; font-size: 1.05rem; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212,130,42,0.35);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,130,42,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-green {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,60,31,0.3);
}
.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  color: #C9A84C;
  line-height: 1;
}
.nav-logo span { color: var(--white); }
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 8px;
  display: grid;
  place-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover { color: var(--amber-light); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.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); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--green-dark);
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu a:hover { color: var(--amber-light); }
.mobile-menu .mobile-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================================
   HERO (HOME)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero.png');
  background-size: cover;
  background-position: 35% center;
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,35,18,0.72) 0%, rgba(15,35,18,0.38) 50%, rgba(15,35,18,0.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 16px;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--amber-light); }
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-trust-item strong {
  color: var(--amber-light);
  font-size: 1.4rem;
  font-weight: 800;
}
.hero-trust-item span {
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.scroll-arrow { width: 20px; height: 20px; }

/* ============================================================
   SERVICE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding-bottom: 64px;
  padding-top: calc(var(--nav-h) + 40px);
  background: var(--green-dark);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,60,31,0.95) 0%, rgba(26,60,31,0.4) 100%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero-sub { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 28px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--amber-light); }
.breadcrumb-sep { opacity: 0.5; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--amber);
  padding: 20px 0;
}
.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
  padding: 8px 12px;
  min-width: 0;
  text-align: center;
}
.stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 20px; height: 20px; stroke: var(--white); fill: none; }
.stat-text strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}
.stat-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--green-dark);
  cursor: pointer;
  group: true;
}
.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,60,31,0.92) 0%, rgba(26,60,31,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background var(--transition);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(26,60,31,0.97) 0%, rgba(26,60,31,0.3) 60%);
}
.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--amber);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.service-card-icon svg { width: 22px; height: 22px; stroke: var(--white); fill: none; stroke-width: 2; }
.service-card h3 { color: var(--white); margin-bottom: 8px; font-size: 1.3rem; }
.service-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.5; margin-bottom: 16px; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber-light);
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}
.service-card:hover .service-card-link { opacity: 1; transform: translateY(0); }
.service-card-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--cream-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 26px; height: 26px; stroke: var(--white); fill: none; stroke-width: 1.8; }
.why-card h3 { color: var(--text); margin-bottom: 10px; }
.why-card p { font-size: 0.92rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: var(--green-dark);
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity var(--transition);
  min-height: 220px;
}
.gallery-item:first-child .gallery-img { min-height: 460px; }
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,60,31,0.5);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 40px; height: 40px; stroke: var(--white); fill: none; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--amber), var(--green-light));
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--amber);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.process-step p { font-size: 0.88rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--green-dark); }
.testimonials-section .section-label { color: var(--amber-light); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-sub { color: rgba(255,255,255,0.65); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: background var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); }
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.star { color: var(--amber-light); font-size: 1.1rem; }
.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-info strong { display: block; color: var(--white); font-size: 0.9rem; }
.author-info span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--amber) 0%, #B86820 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-white {
  background: var(--white);
  color: var(--amber);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.cta-banner .btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.cta-phone {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
  margin-top: 28px;
}
.cta-phone:hover { color: rgba(255,255,255,0.85); }

/* ============================================================
   SERVICE DETAIL PAGE STYLES
   ============================================================ */
.service-intro { background: var(--cream-light); }
.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-intro-text .section-label { margin-bottom: 8px; }
.service-intro-text h2 { margin-bottom: 16px; }
.service-intro-text p { margin-bottom: 16px; }
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.check-icon {
  width: 20px;
  height: 20px;
  background: var(--green-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon svg { width: 11px; height: 11px; stroke: var(--white); fill: none; stroke-width: 3; }
.service-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.service-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.service-intro-img img[src="pergolas-intro.jpg"] { object-position: center 30%; }

.options-section { background: var(--cream); }
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.option-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.option-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.option-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--green-dark);
}
.option-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.option-card:hover .option-img img { transform: scale(1.06); }
.option-img img[src="attached-pergola.jpg"] { transform: scale(1.35); object-position: center 25%; }
.option-card:hover .option-img img[src="attached-pergola.jpg"] { transform: scale(1.41); }
.option-img img[src="louvered-pergola.jpg"] { object-position: center 10%; }
.option-img img[src="entertainment-pergola.jpg"] { object-position: center 40%; }
.option-img img[src="cedar-pergola.jpg"] { object-position: center 20%; }
.option-img:has(img[src="multilevel-deck.jpg"]) { aspect-ratio: 4/3; }
.option-img:has(img[src="ramp-covered.jpg"]) { aspect-ratio: 4/3; }

.option-body { padding: 20px; }
.option-body h3 { margin-bottom: 8px; font-size: 1.05rem; }
.option-body p { font-size: 0.88rem; }

/* ============================================================
   CONTACT / QUOTE FORM
   ============================================================ */
.contact-section { background: var(--cream-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--green-dark);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--white); fill: none; }
.contact-detail strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 2px; }
.contact-detail a { font-weight: 600; color: var(--text); font-size: 1rem; }
.contact-detail a:hover { color: var(--amber); }
.quote-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.quote-form h3 { margin-bottom: 24px; font-size: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46,94,53,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  color: var(--green-mid);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--cream-light); }
.faq-list { margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green-mid); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-icon svg { width: 12px; height: 12px; stroke: var(--text-muted); fill: none; stroke-width: 2.5; transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--amber); }
.faq-item.open .faq-icon svg { stroke: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease, padding 0.22s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0E2311;
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { max-width: 300px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: #C9A84C;
  line-height: 1;
}
.footer-logo span { color: var(--white); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  transition: background var(--transition);
  color: rgba(255,255,255,0.7);
}
.social-link:hover { background: var(--amber); color: var(--white); }
.social-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--amber-light); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--amber); fill: none; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--amber-light); }
.footer-bottom a:hover { color: var(--amber); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-phone, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .gallery-item:first-child .gallery-img { min-height: 220px; }
  .options-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .hero-trust { gap: 16px; }
  .hero-divider { display: none; }
  .stats-bar-inner { justify-content: center; }
  .stat-item { flex: 1; padding: 6px 4px; gap: 5px; }
  .stat-icon { width: 30px; height: 30px; border-radius: 8px; }
  .stat-icon svg { width: 15px; height: 15px; }
  .stat-text strong { font-size: 0.85rem; }
  .stat-text span { font-size: 0.65rem; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; }
  .cta-banner-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-24 { margin-bottom: 24px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
