/* ============================================================
   Wallpaper Guru with Ellington — Master Stylesheet
   Design: Refined Artisan
   ============================================================ */

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

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-accent: 'Playfair Display SC', serif;
  --bg-dark: #0E0E0B;
  --accent: #C8A96E;
  --accent-hover: #B8955A;
  --bg-light: #F5F0E8;
  --text-light: #F0EBE0;
  --text-dark: #1A1A16;
  --border: 1px solid rgba(200, 169, 110, 0.2);
  --radius-card: 12px;
  --radius-input: 10px;
  --radius-form: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.15);
  --transition: 0.3s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-light);
  background: var(--bg-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 0.5em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: 0.4em; }
p { margin-bottom: 1em; }

.accent-text { color: var(--accent); }
.section-subtitle {
  font-size: 1.1rem;
  color: rgba(240, 235, 224, 0.7);
  max-width: 680px;
  margin: 0 auto 2rem;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Top Bar ───────────────────────────────────────────────── */
.top-bar {
  background: rgba(14, 14, 11, 0.95);
  border-bottom: var(--border);
  padding: 8px 0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(240, 235, 224, 0.7);
}
.top-bar-left svg { width: 16px; height: 16px; fill: var(--accent); }
.top-bar-right a {
  color: var(--accent);
  font-weight: 500;
}
.top-bar-right a:hover { color: var(--accent-hover); }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14, 14, 11, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: var(--border);
  padding: 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
}
.logo span { color: var(--accent); font-weight: 400; }

/* ── Navigation ────────────────────────────────────────────── */
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--accent); }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

/* ── CTA Button ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-card);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 169, 110, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--text-dark);
  transform: translateY(-2px);
}
.btn-block { width: 100%; }
.btn-nav {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* Keep CTA button in header independent from link underline styles */
.main-nav .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  padding: 10px 22px;
}
.main-nav .btn::after { display: none; }
.main-nav .btn:hover,
.main-nav .btn.active { color: var(--text-dark); }

/* ── Hamburger ─────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-light);
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Sections ──────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-dark { background: var(--bg-dark); color: var(--text-light); }
.section-light { background: var(--bg-light); color: var(--text-dark); }
.section-light h1,
.section-light h2,
.section-light h3 { color: var(--text-dark); }
.section-light p { color: var(--text-dark); }
.section-light .section-subtitle { color: rgba(26, 26, 22, 0.7); }

.section-alt {
  background: #141410;
  color: var(--text-light);
}

.text-center { text-align: center; }

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(14, 14, 11, 0.62), rgba(14, 14, 11, 0.72)),
    url('/assets/images/hero-wallpaper-installation.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 .highlight { color: var(--accent); }
.hero-text h2 {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(240, 235, 224, 0.8);
  margin-bottom: 2rem;
  font-family: var(--font-body);
}
.trust-badges {
  display: flex;
  gap: 24px;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(240, 235, 224, 0.8);
}
.trust-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* ── Quote Form ────────────────────────────────────────────── */
.quote-form-wrapper,
.feedback-form-container {
  background: var(--bg-dark);
  border: var(--border);
  border-radius: var(--radius-form);
  padding: 36px;
}
.quote-form-wrapper h3,
.feedback-form-container h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  margin-top: 8px;
}
.submit-btn {
  width: 100%;
  border: none;
  border-radius: var(--radius-card);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--accent);
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition);
}
.submit-btn:hover {
  background: var(--accent-hover);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 169, 110, 0.3);
}
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
#form-success {
  text-align: center;
  color: #4ecdc4;
  font-weight: 600;
  padding: 16px;
  margin-top: 12px;
}
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: var(--border);
  border-radius: var(--radius-input);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 235, 224, 0.4);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8A96E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-group select option {
  background: var(--bg-dark);
  color: var(--text-light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-error {
  display: none;
  color: #ff6b6b;
  font-size: 0.82rem;
  margin-top: 4px;
}
.form-success {
  text-align: center;
  color: #4ecdc4;
  font-weight: 600;
  padding: 16px;
  margin-top: 12px;
}
.form-error-global {
  text-align: center;
  color: #ff6b6b;
  font-weight: 500;
  padding: 12px;
  margin-top: 12px;
}

/* Light section form */
.section-light .quote-form-wrapper,
.section-light .feedback-form-container {
  background: #fff;
  border: 1px solid rgba(26, 26, 22, 0.1);
}
.section-light .form-group input,
.section-light .form-group select,
.section-light .form-group textarea {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-dark);
  border-color: rgba(26, 26, 22, 0.15);
}
.section-light .form-group input::placeholder,
.section-light .form-group textarea::placeholder {
  color: rgba(26, 26, 22, 0.4);
}
.section-light .form-group select option {
  background: #fff;
  color: var(--text-dark);
}

/* ── Commercial Block ──────────────────────────────────────── */
.commercial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.commercial-features {
  margin: 1.5rem 0;
}
.commercial-features li {
  padding: 8px 0;
  font-size: 1rem;
  color: rgba(240, 235, 224, 0.85);
}
.commercial-features li::before {
  content: '✦ ';
  color: var(--accent);
  margin-right: 8px;
}
.commercial-image {
  border-radius: var(--radius-card);
  overflow: hidden;
}
.commercial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
}

/* ── Services Grid ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--bg-dark);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.section-light .service-card {
  background: #fff;
  border-color: rgba(26, 26, 22, 0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(200, 169, 110, 0.15);
}
.service-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 169, 110, 0.1);
  border-radius: 50%;
}
.service-card .icon svg {
  width: 28px;
  height: 28px;
  fill: var(--accent);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.service-card p {
  font-size: 0.9rem;
  color: rgba(240, 235, 224, 0.7);
  line-height: 1.6;
}
.section-light .service-card p { color: rgba(26, 26, 22, 0.7); }

/* ── Gallery / Portfolio ───────────────────────────────────── */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 8px 24px;
  border-radius: 30px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  color: var(--text-light);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  font-family: var(--font-body);
}
.gallery-tab:hover,
.gallery-tab.active {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: opacity 0.3s ease;
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── Before/After Slider ───────────────────────────────────── */
.ba-slider-wrapper {
  display: flex;
  gap: 24px;
  margin-top: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ba-slider-container {
  flex: 1;
  min-width: 300px;
  max-width: 580px;
}
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba-before {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 50% 0 0);
}
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--accent);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 5;
}
.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231A1A16' stroke-width='2'%3E%3Cpath d='M8 4l-6 8 6 8M16 4l6 8-6 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}
.ba-labels {
  display: flex;
  justify-content: space-between;
  padding: 10px 4px 0;
  font-size: 0.85rem;
  color: rgba(240, 235, 224, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── How We Work ───────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.process-step {
  text-align: center;
  padding: 28px 20px;
}
.process-step .step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.12);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.section-light .process-step p { color: rgba(26, 26, 22, 0.7); }

/* ── Stats Row ─────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 2rem;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border: var(--border);
  border-radius: var(--radius-card);
}
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(240, 235, 224, 0.7);
}
.section-light .stat-item { border-color: rgba(26, 26, 22, 0.1); }
.section-light .stat-item .stat-label { color: rgba(26, 26, 22, 0.7); }

/* ── Reviews ───────────────────────────────────────────────── */
.reviews-section { padding: 60px 0; }

/* ── SEO Content Block ─────────────────────────────────────── */
.seo-content { max-width: 900px; margin: 0 auto; }
.seo-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2em;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #0A0A08;
  border-top: var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--accent);
}
.footer-col p {
  font-size: 0.9rem;
  color: rgba(240, 235, 224, 0.65);
  line-height: 1.7;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(240, 235, 224, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(240, 235, 224, 0.65);
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a { color: rgba(240, 235, 224, 0.65); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: var(--border);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(240, 235, 224, 0.4);
}

/* ── Sticky Quote Button ───────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}
.sticky-cta .btn {
  box-shadow: 0 4px 20px rgba(200, 169, 110, 0.4);
  padding: 14px 28px;
  font-size: 0.95rem;
}

/* ── Modal ─────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--bg-dark);
  border: var(--border);
  border-radius: var(--radius-form);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-content .quote-form-wrapper {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.1); }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: var(--border);
}
.page-hero h1 { margin-bottom: 0.3em; }
.breadcrumbs {
  font-size: 0.85rem;
  color: rgba(240, 235, 224, 0.5);
  margin-top: 12px;
}
.breadcrumbs a { color: var(--accent); }
.breadcrumbs span { margin: 0 8px; }

/* ── Two-Column Layout ─────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.two-col-center { align-items: center; }

/* ── Values Grid ───────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.value-card {
  padding: 32px 24px;
  border: var(--border);
  border-radius: var(--radius-card);
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.value-card p {
  font-size: 0.9rem;
  color: rgba(240, 235, 224, 0.7);
  line-height: 1.6;
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-info h3 { margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.contact-detail svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
  flex-shrink: 0;
}
.contact-detail a { color: var(--text-dark); }
.contact-detail a:hover { color: var(--accent); }
.hours-table { margin-top: 1.5rem; }
.hours-table table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid rgba(26, 26, 22, 0.08);
  font-size: 0.95rem;
}
.hours-table td:first-child { font-weight: 600; }

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: var(--border);
  border-radius: var(--radius-card);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: rgba(200, 169, 110, 0.05);
  border: none;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(200, 169, 110, 0.1); }
.faq-question .faq-icon {
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(240, 235, 224, 0.8);
}

/* ── Service Page Content ──────────────────────────────────── */
.service-detail-layout {
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.service-detail-layout .service-image-wrap { order: 1; }
.service-detail-layout .service-content { order: 2; }
.service-detail-layout .service-image-wrap img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius-card);
}
.service-content img {
  border-radius: var(--radius-card);
  margin-bottom: 1.5rem;
}
.benefits-list { margin: 1.5rem 0; }
.benefits-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
}
.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.related-services {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: var(--border);
}
.related-services h3 { margin-bottom: 1rem; }
.related-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.related-links a {
  padding: 10px 20px;
  border: var(--border);
  border-radius: var(--radius-card);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.related-links a:hover {
  border-color: var(--accent);
  background: rgba(200, 169, 110, 0.1);
}

/* ── Service Areas Grid ────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.area-card {
  display: block;
  padding: 28px 24px;
  border: var(--border);
  border-radius: var(--radius-card);
  text-align: center;
  transition: all var(--transition);
}
.area-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(200, 169, 110, 0.15);
}
.area-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}
.area-card p {
  font-size: 0.85rem;
  color: rgba(240, 235, 224, 0.5);
}

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.08), rgba(200, 169, 110, 0.02));
  border-top: var(--border);
  border-bottom: var(--border);
}
.cta-section h2 { margin-bottom: 0.5em; }
.cta-section p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: rgba(240, 235, 224, 0.7);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 992px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(14, 14, 11, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    border-bottom: var(--border);
  }
  .main-nav.active { display: flex; }
  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
    width: 100%;
  }
  .main-nav .btn-nav {
    margin-top: 12px;
    text-align: center;
  }
  .hero-grid,
  .commercial-grid,
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { padding: 60px 0 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .ba-slider-wrapper { flex-direction: column; }
  .ba-before { height: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .areas-grid { grid-template-columns: 1fr; }
  .sticky-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
  .sticky-cta .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
  .hero { padding: 40px 0 30px; }
  .logo { font-size: 1.2rem; }
  .quote-form-wrapper,
  .feedback-form-container { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .modal-content { padding: 28px 20px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-item .stat-number { font-size: 1.8rem; }
  .ba-before { height: 220px; }
}

/* ── Utility ───────────────────────────────────────────────── */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
