/* ============================================
   Washington Painting Services — Main Stylesheet
   Designer-Led Editorial + Illustrated Style
   ============================================ */

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

/* --- CSS Variables --- */
:root {
  --color-ivory: #FAF8F5;
  --color-warm-white: #FFFDF9;
  --color-cream: #F5F0E8;
  --color-beige: #EDE6DA;
  --color-charcoal: #2C2C2C;
  --color-dark: #1A1A1A;
  --color-gold: #B8956A;
  --color-gold-light: #D4B896;
  --color-olive: #5C6B4F;
  --color-olive-light: #7A8B6A;
  --color-terracotta: #C4956A;
  --color-gray: #8A8A8A;
  --color-light-gray: #E8E4DE;
  --color-white: #FFFFFF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --max-width: 1280px;
  --header-height: 70px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-charcoal);
  background: var(--color-warm-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--color-olive); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--color-dark); }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 0.8rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 0.6rem; }
p { margin-bottom: 1.2rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- HEADER (CRITICAL: SINGLE LINE) --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-warm-white);
  border-bottom: 1px solid var(--color-light-gray);
  height: var(--header-height);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  gap: 12px;
}
.header-logo a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.header-logo a span { color: var(--color-gold); }

/* Desktop Nav */
.header-nav { display: flex; align-items: center; }
.header-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.header-nav > ul > li { position: relative; }
.header-nav > ul > li > a {
  display: block;
  padding: 8px 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-charcoal);
  white-space: nowrap;
  transition: color 0.3s ease;
}
.header-nav > ul > li > a:hover { color: var(--color-gold); }

/* CSS-only Dropdown */
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 100;
  padding: 8px 0;
}
.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 0.82rem;
  color: var(--color-charcoal);
  transition: background 0.2s ease, color 0.2s ease;
}
.dropdown-menu li a:hover {
  background: var(--color-cream);
  color: var(--color-gold);
}

/* Header Contact */
.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-contact a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-contact a:hover { color: var(--color-gold); }
.header-contact svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Burger Menu */
.burger-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1100; }
.burger-toggle span { display: block; width: 22px; height: 2px; background: var(--color-dark); margin: 5px 0; transition: all 0.3s ease; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -105%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-warm-white);
  z-index: 1050;
  transition: right 0.35s ease;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  padding: 80px 24px 40px;
  box-sizing: border-box;
}
.mobile-menu.active { right: 0; }
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1040;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.active { opacity: 1; }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-close svg { width: 24px; height: 24px; stroke: var(--color-dark); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu > ul > li { border-bottom: 1px solid var(--color-light-gray); }
.mobile-menu > ul > li > a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark);
}
.mobile-menu .mobile-dropdown-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.mobile-menu .mobile-dropdown-label svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.mobile-menu .mobile-sub { display: none; padding-left: 16px; padding-bottom: 8px; }
.mobile-menu .mobile-sub.open { display: block; }
.mobile-menu .mobile-sub li a {
  display: block;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--color-gray);
}
.mobile-menu .mobile-sub li a:hover { color: var(--color-gold); }
.mobile-menu .mobile-contact {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-light-gray);
  overflow: hidden;
}
.mobile-menu .mobile-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--color-charcoal);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  min-width: 0;
}
.mobile-menu .mobile-contact svg { width: 16px; height: 16px; flex-shrink: 0; }

/* --- HERO SECTION --- */
.hero {
  position: relative;
  padding: 80px 0 60px;
  background: var(--color-ivory);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 10%;
  width: 45%;
  height: 80%;
  background: var(--color-beige);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.5;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { max-width: 560px; }
.hero-text h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.08; margin-bottom: 1.2rem; }
.hero-text h1 em { font-style: italic; color: var(--color-gold); }
.hero-text p { font-size: 1.05rem; color: var(--color-gray); margin-bottom: 2rem; max-width: 440px; }
.hero-image {
  position: relative;
  z-index: 1;
}
.hero-image img {
  width: 110%;
  max-width: none;
  border-radius: 8px 0 0 8px;
  box-shadow: -12px 12px 40px rgba(0,0,0,0.1);
}

/* --- FORM STYLES --- */
.feedback-form-container {
  background: var(--color-white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  max-width: 560px;
}
.feedback-form-container h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--color-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { margin-bottom: 12px; }
.form-row .form-group { margin-bottom: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-light-gray);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  background: var(--color-warm-white);
  transition: border-color 0.3s ease;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--color-gold); }
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--color-gray); }
.form-submit { margin-top: 8px; }
.submit-btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}
.submit-btn:hover { background: var(--color-olive); }
#form-success p {
  text-align: center;
  padding: 20px;
  color: var(--color-olive);
  font-weight: 500;
}
.error-message { color: #ff6b6b; margin-top: 5px; font-size: 14px; }

/* --- SECTIONS --- */
.section { padding: 80px 0; }
.section-alt { background: var(--color-ivory); }
.section-cream { background: var(--color-cream); }
.section-dark { background: var(--color-dark); color: var(--color-warm-white); }
.section-dark h2, .section-dark h3 { color: var(--color-warm-white); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header p { color: var(--color-gray); font-size: 1.05rem; }

/* --- SERVICES OVERVIEW (Home) --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.services-grid .service-large {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.services-grid .service-large img { width: 100%; height: 400px; object-fit: cover; }
.services-grid .service-large .service-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--color-white);
}
.services-grid .service-large .service-overlay h3 { color: var(--color-white); margin-bottom: 4px; }
.services-grid .service-small-group { display: flex; flex-direction: column; gap: 20px; }
.service-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  align-items: center;
}
.service-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.service-card img { width: 100px; height: 80px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.service-card-content h3 { font-size: 1.1rem; margin-bottom: 4px; }
.service-card-content h3 a { color: var(--color-dark); }
.service-card-content h3 a:hover { color: var(--color-gold); }
.service-card-content p { font-size: 0.88rem; color: var(--color-gray); margin-bottom: 0; }

/* --- WHY CHOOSE US --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.benefit-item { text-align: center; padding: 32px 20px; }
.benefit-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg { width: 24px; height: 24px; stroke: var(--color-gold); fill: none; stroke-width: 2; }
.benefit-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.benefit-item p { font-size: 0.9rem; color: var(--color-gray); margin-bottom: 0; }

/* --- PROCESS SECTION --- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.process-steps { counter-reset: step; }
.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}
.process-step-content h3 { font-size: 1.1rem; margin-bottom: 4px; }
.process-step-content p { font-size: 0.9rem; color: var(--color-gray); margin-bottom: 0; }
.process-image img { border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

/* --- SERVICE AREAS PREVIEW --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.area-card {
  text-align: center;
  padding: 24px 12px;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-light-gray);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.area-card:hover { border-color: var(--color-gold); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.area-card a { color: var(--color-dark); font-weight: 500; font-size: 0.95rem; }
.area-card a:hover { color: var(--color-gold); }

/* --- TESTIMONIALS --- */
.testimonials { padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial {
  padding: 28px;
  background: var(--color-white);
  border-radius: 8px;
  border-left: 3px solid var(--color-gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.testimonial p { font-size: 0.92rem; line-height: 1.7; color: var(--color-charcoal); margin-bottom: 12px; font-style: italic; }
.testimonial .testimonial-author { font-style: normal; font-weight: 600; font-size: 0.85rem; color: var(--color-gold); }

/* --- FAQ SECTION --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-light-gray); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark);
}
.faq-question svg { width: 20px; height: 20px; transition: transform 0.3s ease; flex-shrink: 0; margin-left: 12px; }
.faq-question.active svg { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 20px; font-size: 0.95rem; color: var(--color-gray); line-height: 1.7; }
.faq-answer.open { display: block; }

/* --- CTA SECTION --- */
.cta-section {
  padding: 80px 0;
  background: var(--color-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: rgba(184,149,106,0.06);
  border-radius: 50%;
}
.cta-section h2 { color: var(--color-warm-white); margin-bottom: 16px; }
.cta-section p { color: var(--color-gray); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--color-olive); color: var(--color-white); }
.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--color-gold); color: var(--color-white); }
.btn-text {
  display: inline-block;
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.btn-text:hover { border-bottom-color: var(--color-gold); }

/* --- FOOTER --- */
.site-footer {
  background: var(--color-dark);
  color: var(--color-light-gray);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--color-warm-white);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.footer-col p { font-size: 0.88rem; line-height: 1.7; color: var(--color-gray); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--color-gray); font-size: 0.88rem; transition: color 0.3s ease; }
.footer-col ul li a:hover { color: var(--color-gold); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-gray);
}

/* --- STICKY QUOTE BUTTON --- */
.sticky-quote-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 28px;
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: background 0.3s ease, transform 0.3s ease;
}
.sticky-quote-btn:hover { background: var(--color-olive); transform: translateY(-2px); }

/* --- MODAL --- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-content {
  position: relative;
  max-width: 560px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  width: 28px;
  height: 28px;
}
.modal-close svg { width: 20px; height: 20px; stroke: var(--color-charcoal); }

/* --- BREADCRUMBS --- */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.82rem;
  color: var(--color-gray);
}
.breadcrumbs a { color: var(--color-gray); }
.breadcrumbs a:hover { color: var(--color-gold); }
.breadcrumbs span { margin: 0 6px; }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  padding: 60px 0;
  background: var(--color-ivory);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 35%;
  height: 100%;
  background: var(--color-beige);
  opacity: 0.4;
  border-radius: 50% 0 0 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--color-gray); font-size: 1.05rem; max-width: 600px; }

/* --- CONTENT SECTIONS --- */
.content-section { padding: 60px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h2 { margin-bottom: 16px; }
.content-text p { color: var(--color-charcoal); }
.content-text ul { margin: 16px 0; padding-left: 0; }
.content-text ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--color-charcoal);
}
.content-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}
.content-image img { border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

/* --- ABOUT PAGE --- */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.value-card {
  padding: 28px;
  background: var(--color-white);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--color-gray); margin-bottom: 0; }

/* --- CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-item svg { width: 20px; height: 20px; stroke: var(--color-gold); flex-shrink: 0; margin-top: 4px; }
.contact-info-item h3 { font-size: 1rem; margin-bottom: 2px; }
.contact-info-item p { font-size: 0.9rem; color: var(--color-gray); margin-bottom: 0; }
.contact-info-item a { color: var(--color-charcoal); }

/* --- SERVICE PAGE --- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
.service-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}
.sidebar-card {
  padding: 24px;
  background: var(--color-ivory);
  border-radius: 8px;
  margin-bottom: 20px;
}
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.sidebar-card ul li { margin-bottom: 8px; }
.sidebar-card ul li a { color: var(--color-charcoal); font-size: 0.9rem; }
.sidebar-card ul li a:hover { color: var(--color-gold); }

/* --- SERVICE AREAS INDEX --- */
.areas-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.area-index-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-light-gray);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.area-index-card:hover { border-color: var(--color-gold); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.area-index-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.area-index-card h3 a { color: var(--color-dark); }
.area-index-card h3 a:hover { color: var(--color-gold); }
.area-index-card p { font-size: 0.88rem; color: var(--color-gray); margin-bottom: 0; }

/* --- SERVICES INDEX --- */
.services-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-index-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.service-index-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }
.service-index-card img { width: 100%; height: 220px; object-fit: cover; }
.service-index-card-content { padding: 24px; }
.service-index-card-content h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-index-card-content h3 a { color: var(--color-dark); }
.service-index-card-content h3 a:hover { color: var(--color-gold); }
.service-index-card-content p { font-size: 0.9rem; color: var(--color-gray); margin-bottom: 12px; }

/* --- ANIMATIONS --- */
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.6s ease forwards; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .header-nav > ul > li > a { font-size: 0.78rem; padding: 8px 6px; }
  .header-contact a { font-size: 0.74rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-text { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-image { order: -1; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-contact { display: none; }
  .burger-toggle { display: block; }
  .mobile-menu { display: block; }
  .mobile-overlay { display: block; pointer-events: none; }
  .mobile-overlay.active { pointer-events: auto; }
  .hero { padding: 48px 0 40px; }
  .hero-text h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .section { padding: 48px 0; }
  .form-row { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-index-grid { grid-template-columns: 1fr; }
  .services-index-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-quote-btn { bottom: 16px; right: 50%; transform: translateX(50%); }
  .sticky-quote-btn:hover { transform: translateX(50%) translateY(-2px); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .feedback-form-container { padding: 20px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
}
