/* ========================================
   Southside Wallpaper Hanger — Main Stylesheet
   Color Palette:
   - Primary BG: #E8EDDF (pale pistachio green)
   - Secondary BG: #B8BDB0 (cool stone gray)
   - Light sections: #F7F5F0 (soft warm white)
   - Text dark: #3A4A3C (deep gray-green)
   - Text light: #2D2D2D (charcoal)
   - Accent: #C4856A (muted terracotta)
   - Accent alt: #5A5A5A (graphite)
   ======================================== */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: #2D2D2D;
  background-color: #F7F5F0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #C4856A; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #A66B52; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', 'Inter', sans-serif;
  color: #3A4A3C;
  font-weight: 600;
  line-height: 1.25;
}

h1 { font-size: 2.8rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }

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

/* === HEADER (SINGLE ROW) === */
.site-header {
  background: #3A4A3C;
  color: #F7F5F0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  padding: 0;
}

.header-single {
  padding: 0;
}

.header-single .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  flex-wrap: nowrap;
}

.logo {
  flex-shrink: 0;
}

.logo a {
  font-family: 'Playfair Display', 'DM Sans', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #F7F5F0;
  letter-spacing: 0.01em;
  line-height: 1.15;
  white-space: nowrap;
}

.logo a span {
  display: none;
}

.header-contact-info {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}

.header-contact-info a {
  color: #E8EDDF;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  transition: color 0.3s;
  white-space: nowrap;
}

.header-contact-info .email-text {
  display: inline;
}

@media (max-width: 1280px) {
  .header-contact-info .email-text { display: none; }
}

.header-contact-info a:hover { color: #C4856A; }

.header-contact-info svg {
  width: 14px;
  height: 14px;
  fill: #C4856A;
  flex-shrink: 0;
}

/* === NAVIGATION === */
.main-nav { display: flex; align-items: center; }

.mobile-nav-close { display: none; }

.nav-list {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-list > li { position: relative; }

.nav-list > li > a {
  color: #E8EDDF;
  padding: 8px 9px;
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.3s, background 0.3s;
  border-radius: 6px;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: #C4856A;
  background: rgba(255,255,255,0.06);
}

/* === DROPDOWN — Wallpaper Unroll Animation === */
.nav-list > li > .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #F7F5F0;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  pointer-events: none;
  transform-origin: top center;
}

.nav-list > li:hover > .dropdown {
  max-height: 800px;
  opacity: 1;
  pointer-events: auto;
}

.dropdown li {
  list-style: none;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.nav-list > li:hover > .dropdown li {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered appearance for each dropdown item */
.nav-list > li:hover > .dropdown li:nth-child(1) { transition-delay: 0.05s; }
.nav-list > li:hover > .dropdown li:nth-child(2) { transition-delay: 0.1s; }
.nav-list > li:hover > .dropdown li:nth-child(3) { transition-delay: 0.15s; }
.nav-list > li:hover > .dropdown li:nth-child(4) { transition-delay: 0.2s; }
.nav-list > li:hover > .dropdown li:nth-child(5) { transition-delay: 0.25s; }
.nav-list > li:hover > .dropdown li:nth-child(6) { transition-delay: 0.3s; }
.nav-list > li:hover > .dropdown li:nth-child(7) { transition-delay: 0.35s; }
.nav-list > li:hover > .dropdown li:nth-child(8) { transition-delay: 0.4s; }
.nav-list > li:hover > .dropdown li:nth-child(9) { transition-delay: 0.45s; }
.nav-list > li:hover > .dropdown li:nth-child(10) { transition-delay: 0.5s; }
.nav-list > li:hover > .dropdown li:nth-child(11) { transition-delay: 0.55s; }

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: #3A4A3C;
  font-size: 0.9rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.25s, padding-left 0.25s, color 0.25s;
}

.dropdown li a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C4856A;
  opacity: 0;
  transition: opacity 0.25s;
  flex-shrink: 0;
}

.dropdown li a:hover {
  background: #E8EDDF;
  padding-left: 28px;
  color: #C4856A;
}

.dropdown li a:hover::before { opacity: 1; }

.dropdown li:last-child a { border-bottom: none; }

/* === MOBILE MENU === */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #F7F5F0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,74,60,0.88) 0%, rgba(58,74,60,0.55) 60%, rgba(196,133,106,0.25) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-text { color: #F7F5F0; }

.hero-text h1 {
  color: #F7F5F0;
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
  font-family: 'Playfair Display', 'DM Sans', serif;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(247,245,240,0.9);
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.82rem;
  color: #F7F5F0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge svg { width: 16px; height: 16px; fill: #C4856A; }

/* === FORM STYLES === */
.feedback-form-container {
  background: rgba(247,245,240,0.97);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.feedback-form-container h3 {
  color: #3A4A3C;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-form .form-group { margin-bottom: 0; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #D5D0C8;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: #FFFFFF;
  color: #2D2D2D;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #C4856A;
  box-shadow: 0 0 0 3px rgba(196,133,106,0.15);
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 14px;
}

.contact-form .form-submit { text-align: center; }

.submit-btn {
  background: #C4856A;
  color: #FFFFFF;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.submit-btn:hover {
  background: #A66B52;
  box-shadow: 0 8px 25px rgba(196,133,106,0.35);
  transform: translateY(-2px);
}

#form-success {
  text-align: center;
  padding: 30px;
}

#form-success p {
  color: #3A4A3C;
  font-size: 1.05rem;
  font-weight: 500;
}

/* === SECTIONS === */
.section {
  padding: 90px 0;
}

.section--pistachio { background: #E8EDDF; }
.section--white { background: #F7F5F0; }
.section--stone { background: #D5D0C8; }
.section--dark { background: #3A4A3C; color: #F7F5F0; }
.section--dark h2, .section--dark h3 { color: #F7F5F0; }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 { margin-bottom: 16px; }

.section-header .section-line {
  width: 60px;
  height: 3px;
  background: #C4856A;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-header p {
  max-width: 650px;
  margin: 0 auto;
  color: #5A5A5A;
  font-size: 1.05rem;
}

/* === GRID LAYOUTS === */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* === CARDS === */
.card {
  background: #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-body { padding: 24px; }

.card-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card-body p { font-size: 0.92rem; color: #5A5A5A; margin-bottom: 14px; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: #C4856A;
  color: #FFFFFF;
  border: 2px solid #C4856A;
}

.btn-primary:hover {
  background: #A66B52;
  border-color: #A66B52;
  box-shadow: 0 8px 25px rgba(196,133,106,0.3);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #3A4A3C;
  border: 2px solid #3A4A3C;
}

.btn-outline:hover {
  background: #3A4A3C;
  color: #F7F5F0;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #F7F5F0;
  border: 2px solid #F7F5F0;
}

.btn-outline-light:hover {
  background: #F7F5F0;
  color: #3A4A3C;
  transform: translateY(-2px);
}

/* === IMAGE GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(1) img { height: 456px; }

/* === STATS BAR === */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.8rem;
  color: #C4856A;
  font-family: 'Playfair Display', serif;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5A5A5A;
}

/* === TESTIMONIALS === */
.testimonial-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: #C4856A;
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  color: #5A5A5A;
  margin-bottom: 16px;
  padding-top: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: #3A4A3C;
  font-size: 0.92rem;
}

.testimonial-location {
  color: #C4856A;
  font-size: 0.82rem;
}

/* === PROCESS STEPS === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  color: #C4856A;
  opacity: 0.4;
  margin-bottom: 12px;
  font-weight: 700;
}

.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: #5A5A5A; }

/* === SERVICE AREA CARDS === */
.area-card {
  background: #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.area-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.area-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.area-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.area-card-body p { font-size: 0.88rem; color: #5A5A5A; flex: 1; }
.area-card-body .btn { margin-top: 14px; align-self: flex-start; font-size: 0.82rem; padding: 10px 22px; }

/* === MAP SECTION === */
.map-container {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-top: 30px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* === FOOTER === */
.site-footer {
  background: #2E3B30;
  color: #B8BDB0;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-col h4 {
  color: #F7F5F0;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #C4856A;
  border-radius: 1px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: #B8BDB0;
  font-size: 0.88rem;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col ul li a:hover {
  color: #C4856A;
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: #C4856A;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a { color: #B8BDB0; }
.footer-contact-item a:hover { color: #C4856A; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: #7A8A7C;
}

/* === STICKY QUOTE BUTTON === */
.sticky-quote-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: #C4856A;
  color: #FFFFFF;
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 30px rgba(196,133,106,0.4);
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulse-glow 2s infinite;
}

.sticky-quote-btn:hover {
  background: #A66B52;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(196,133,106,0.5);
}

.sticky-quote-btn svg { width: 18px; height: 18px; fill: #FFFFFF; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 30px rgba(196,133,106,0.4); }
  50% { box-shadow: 0 8px 40px rgba(196,133,106,0.6); }
}

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #F7F5F0;
  border-radius: 20px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E8EDDF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #3A4A3C;
  transition: background 0.3s, transform 0.3s;
}

.modal-close:hover {
  background: #C4856A;
  color: #FFFFFF;
  transform: rotate(90deg);
}

/* === PAGE HERO (Inner Pages) === */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  background: #3A4A3C;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero-content h1 {
  color: #F7F5F0;
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
}

.page-hero-content p {
  color: rgba(247,245,240,0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.breadcrumb a { color: #C4856A; }
.breadcrumb span { color: rgba(247,245,240,0.5); }

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #E8EDDF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: #C4856A;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: #3A4A3C;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: #5A5A5A;
  margin-bottom: 0;
}

.contact-info-item a { color: #C4856A; }

/* === FAQ === */
.faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
}

.faq-question {
  padding: 22px 28px;
  font-weight: 600;
  color: #3A4A3C;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
  font-size: 1rem;
}

.faq-question:hover { background: #E8EDDF; }

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #C4856A;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 28px 22px;
}

.faq-answer p {
  color: #5A5A5A;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === ABOUT PAGE === */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.35s;
}

.value-card:hover { transform: translateY(-6px); }

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #E8EDDF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 30px;
  height: 30px;
  fill: #C4856A;
}

/* === SERVICE PAGE === */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }

.service-detail img {
  border-radius: 14px;
  width: 100%;
  height: 380px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.service-features {
  list-style: none;
  margin: 20px 0;
}

.service-features li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  color: #5A5A5A;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C4856A;
  opacity: 0.6;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4, .stats-bar, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  h1 { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(1) img { height: 220px; }
}

@media (max-width: 768px) {
  .header-contact-info { display: none; }

  .mobile-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #3A4A3C;
    flex-direction: column;
    padding: 80px 24px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    overflow-y: auto;
    z-index: 10001;
  }

  .main-nav.open { right: 0; }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-list > li > a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
  }

  .nav-list > li > .dropdown {
    position: static;
    background: rgba(255,255,255,0.04);
    border-radius: 0;
    box-shadow: none;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }

  .nav-list > li.dropdown-open > .dropdown {
    max-height: 600px;
    opacity: 1;
    pointer-events: auto;
  }

  .dropdown li a {
    color: #E8EDDF;
    border-bottom-color: rgba(255,255,255,0.04);
    padding: 10px 20px;
  }

  .dropdown li a:hover {
    background: rgba(255,255,255,0.06);
    color: #C4856A;
  }

  .mobile-nav-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #F7F5F0;
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .grid-2, .grid-3, .contact-grid, .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }

  .hero { min-height: 70vh; }
  .hero-text h1 { font-size: 2.2rem; }

  .section { padding: 60px 0; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .about-values { grid-template-columns: 1fr; }

  .contact-form .form-row { grid-template-columns: 1fr; }

  .sticky-quote-btn {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    font-size: 0.85rem;
    padding: 14px 24px;
  }

  .sticky-quote-btn:hover { transform: translateX(50%) translateY(-3px); }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .feedback-form-container { padding: 24px 18px; }
  .hero-badges { flex-direction: column; }
}

/* === UTILITY === */
.text-center { text-align: center; }
.text-accent { color: #C4856A; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, #3A4A3C 0%, #4A5E4C 100%);
  padding: 70px 0;
  text-align: center;
  color: #F7F5F0;
}

.cta-banner h2 {
  color: #F7F5F0;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
}

.cta-banner p {
  color: rgba(247,245,240,0.85);
  max-width: 550px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === SERVICE AREA PAGE SPECIFIC === */
.area-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.area-content h2 { text-transform: none; letter-spacing: normal; font-size: 1.6rem; }

.area-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.highlight-item svg {
  width: 24px;
  height: 24px;
  fill: #C4856A;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.highlight-item p { font-size: 0.85rem; color: #5A5A5A; margin-bottom: 0; }

/* Image hover overlay */
.img-overlay-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.img-overlay-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-overlay-wrap:hover img { transform: scale(1.05); }
