/* ============================================================
   Colorado Springs Wallpaper Installations — Main Stylesheet
   Palette: lavender gray, pale mineral, deep cocoa, warm ivory, muted bronze
   Typography: Cormorant Garamond (headings), Outfit (body)
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4A3728;
  background: #F0EDE8;
}
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === COLOR VARIABLES === */
:root {
  --bg-lavender: #D5D0E0;
  --bg-mineral: #E8E4DC;
  --bg-cream: #F0EDE8;
  --dark-cocoa: #3B2A1E;
  --text-cocoa: #4A3728;
  --text-ivory: #FAF6F0;
  --accent-bronze: #B8956A;
  --accent-bronze-dark: #9A7B55;
  --border-light: rgba(74,55,40,0.1);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-cocoa);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin-bottom: 16px; }

.section-subtitle {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-bronze);
  margin-bottom: 10px;
}

.section-title-line {
  width: 50px;
  height: 2px;
  background: var(--accent-bronze);
  margin: 12px auto 0;
}

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

/* === HEADER — SINGLE ROW === */
.site-header {
  background: var(--dark-cocoa);
  color: var(--text-ivory);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(59,42,30,0.18);
}

.header-single { padding: 0; }

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

.logo { flex-shrink: 0; }

.logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-ivory);
  letter-spacing: 0.01em;
  line-height: 1.15;
  white-space: nowrap;
}

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

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

.header-contact-info a:hover { color: var(--accent-bronze); }

.header-contact-info svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-bronze);
  flex-shrink: 0;
}

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

/* === 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: #E8E4DC;
  padding: 8px 9px;
  display: block;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  transition: color 0.3s, background 0.3s;
  border-radius: 6px;
}

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

/* === DROPDOWN — WALLPAPER UNROLL ANIMATION === */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-cocoa);
  min-width: 240px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 36px rgba(59,42,30,0.25);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top center;
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.35s;
  z-index: 999;
}

.nav-list > li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

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

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

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

.dropdown-menu li a {
  display: block;
  padding: 9px 22px;
  color: #E8E4DC;
  font-size: 0.82rem;
  font-family: 'Outfit', sans-serif;
  transition: background 0.25s, color 0.25s, padding-left 0.25s;
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  background: rgba(184,149,106,0.12);
  color: var(--accent-bronze);
  padding-left: 28px;
  border-left-color: var(--accent-bronze);
}

/* === HAMBURGER MENU === */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-ivory);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-cocoa);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,42,30,0.85) 0%, rgba(59,42,30,0.5) 50%, rgba(59,42,30,0.3) 100%);
}

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

.hero-text h1 {
  color: var(--text-ivory);
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.hero-text p {
  color: rgba(250,246,240,0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(184,149,106,0.15);
  border: 1px solid rgba(184,149,106,0.3);
  padding: 8px 16px;
  border-radius: 30px;
  color: var(--text-ivory);
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-bronze);
}

/* === FORM STYLES === */
.feedback-form-container {
  background: rgba(250,246,240,0.96);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(59,42,30,0.2);
  backdrop-filter: blur(10px);
}

.feedback-form-container h3 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: var(--dark-cocoa);
}

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

.form-group { position: relative; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(74,55,40,0.15);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--text-cocoa);
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-bronze);
  box-shadow: 0 0 0 3px rgba(184,149,106,0.15);
}

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

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--accent-bronze);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.submit-btn:hover {
  background: var(--accent-bronze-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,149,106,0.35);
}

#form-success p {
  text-align: center;
  color: var(--accent-bronze);
  font-weight: 500;
  padding: 20px;
  font-size: 1.05rem;
}

/* === STATS BAR === */
.stats-bar {
  background: var(--bg-lavender);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.6rem;
  color: var(--accent-bronze);
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-cocoa);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* === CONTENT SECTIONS === */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-mineral); }
.section-dark { background: var(--dark-cocoa); color: var(--text-ivory); }
.section-dark h2, .section-dark h3 { color: var(--text-ivory); }
.section-lavender { background: var(--bg-lavender); }

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(74,55,40,0.08);
  transition: transform 0.35s, box-shadow 0.35s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(74,55,40,0.15);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.service-card-body p {
  font-size: 0.9rem;
  color: #6B5A4E;
  margin-bottom: 16px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-bronze);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap 0.3s, color 0.3s;
}

.btn-link:hover {
  gap: 10px;
  color: var(--accent-bronze-dark);
}

.btn-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s;
}

.btn-link:hover svg { transform: translateX(3px); }

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

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

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

/* === PROCESS STEPS === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

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

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-bronze);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(184,149,106,0.3);
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.process-step p {
  font-size: 0.88rem;
  color: #6B5A4E;
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(74,55,40,0.06);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--accent-bronze);
  opacity: 0.25;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.92rem;
  color: #5A4A3E;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-cocoa);
  font-size: 0.9rem;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--accent-bronze);
}

/* === SERVICE AREAS MAP SECTION === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.area-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.92rem;
  box-shadow: 0 2px 10px rgba(74,55,40,0.06);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.area-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(74,55,40,0.12);
  background: var(--bg-lavender);
}

.area-link svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-bronze);
  flex-shrink: 0;
}

/* === MAP === */
.map-container {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(74,55,40,0.1);
  margin-top: 32px;
}

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

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--dark-cocoa) 0%, #2A1C12 100%);
  padding: 72px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--text-ivory);
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(250,246,240,0.8);
  max-width: 600px;
  margin: 0 auto 32px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: var(--accent-bronze);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-primary:hover {
  background: var(--accent-bronze-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,149,106,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: transparent;
  color: var(--text-ivory);
  border: 2px solid rgba(250,246,240,0.3);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--accent-bronze);
  background: rgba(184,149,106,0.1);
  transform: translateY(-2px);
}

.btn-primary svg, .btn-outline svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* === FOOTER === */
.site-footer {
  background: var(--dark-cocoa);
  color: #E8E4DC;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo a {
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(232,228,220,0.7);
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--text-ivory);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

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

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

.footer-col ul li a {
  color: rgba(232,228,220,0.7);
  font-size: 0.88rem;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent-bronze);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(232,228,220,0.7);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-bronze);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: rgba(232,228,220,0.7);
}

.footer-contact-item a:hover { color: var(--accent-bronze); }

.footer-bottom {
  border-top: 1px solid rgba(232,228,220,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(232,228,220,0.5);
}

/* === PAGE HERO (INNER PAGES) === */
.page-hero {
  background: var(--dark-cocoa);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-cover-colorado-springs.webp') center/cover;
  opacity: 0.15;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
  color: var(--text-ivory);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(250,246,240,0.75);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

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

.breadcrumb a { color: var(--accent-bronze); }
.breadcrumb span { color: rgba(250,246,240,0.5); }

/* === CONTENT BLOCK WITH IMAGE === */
.content-image-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 40px 0;
}

.content-image-block.reverse { direction: rtl; }
.content-image-block.reverse > * { direction: ltr; }

.content-image img {
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(74,55,40,0.12);
}

/* === FAQ ACCORDION === */
.faq-list { max-width: 800px; margin: 40px auto 0; }

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(74,55,40,0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-cocoa);
  transition: background 0.3s;
}

.faq-question:hover { background: rgba(184,149,106,0.06); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-bronze);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .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.92rem;
  color: #6B5A4E;
  line-height: 1.7;
}

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

.contact-info-cards {
  display: grid;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(74,55,40,0.06);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-bronze);
}

.contact-info-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-card p, .contact-info-card a {
  font-size: 0.88rem;
  color: #6B5A4E;
}

.contact-info-card a:hover { color: var(--accent-bronze); }

/* === STICKY QUOTE BUTTON === */
.sticky-quote-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: var(--accent-bronze);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(184,149,106,0.4);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.sticky-quote-btn:hover {
  background: var(--accent-bronze-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(184,149,106,0.5);
}

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

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(59,42,30,0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background: var(--bg-cream);
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 24px 64px rgba(59,42,30,0.3);
  animation: modalSlideIn 0.4s ease;
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(74,55,40,0.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-cocoa);
  transition: background 0.3s;
}

.modal-close:hover { background: rgba(74,55,40,0.15); }

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

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

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

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-image-block { grid-template-columns: 1fr; }
  .content-image-block.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .header-single .container { flex-wrap: wrap; min-height: auto; padding: 10px 16px; }
  .header-contact-info { display: none; }
  .mobile-nav-toggle { display: block; }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-cocoa);
    flex-direction: column;
    padding: 70px 24px 24px;
    transition: right 0.35s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    overflow-y: auto;
    z-index: 9998;
  }

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

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

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

  .nav-list > li { width: 100%; }
  .nav-list > li > a {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    box-shadow: none;
    padding: 0 0 0 16px;
    display: none;
    min-width: auto;
  }

  .dropdown-menu.mobile-open { display: block; }
  .dropdown-menu li { opacity: 1; transform: none; }

  .hero { min-height: auto; padding: 40px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .areas-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
