/* ============================================================
   Elegant Italian Installation of Wallpaper — Master Stylesheet
   Design: Tuscan Atelier
   ============================================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1C1917;
  background: #FAF7F2;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  line-height: 1.3;
}
h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
p { margin-bottom: 1rem; }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.text-accent { color: #D4622A; }
.bg-dark { background: #1C1917; color: #EDE8E0; }
.bg-light { background: #FAF7F2; color: #1C1917; }
.bg-white { background: #fff; color: #1C1917; }

/* --- Top Bar --- */
.top-bar {
  background: #151210;
  color: #EDE8E0;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212,98,42,0.15);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: #D4622A; }
.top-bar a:hover { color: #FAF7F2; }
.top-bar-left { display: flex; align-items: center; gap: 6px; }
.top-bar-left svg { width: 16px; height: 16px; fill: #D4622A; flex-shrink: 0; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar-right a { display: flex; align-items: center; gap: 6px; }
.top-bar-right svg { width: 16px; height: 16px; fill: #D4622A; flex-shrink: 0; }

/* --- Sticky Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1C1917;
  border-bottom: 1px solid rgba(212,98,42,0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
}
.logo a {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
  color: #EDE8E0;
  font-weight: 700;
  line-height: 1.2;
}
.logo .logo-accent { color: #D4622A; font-weight: 400; display: block; font-size: 0.85rem; }

/* --- Desktop Nav --- */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 24px 14px;
  color: #EDE8E0;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color .3s;
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: #D4622A; }

/* --- Dropdown --- */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #1C1917;
  border: 1px solid rgba(212,98,42,0.2);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  padding: 8px 0;
  z-index: 1001;
}
.main-nav > li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  opacity: 0;
  transform: translateX(-10px);
  transition: all .3s ease;
}
.main-nav > li:hover .dropdown-menu li {
  opacity: 1;
  transform: translateX(0);
}
.main-nav > li:hover .dropdown-menu li:nth-child(1) { transition-delay: .05s; }
.main-nav > li:hover .dropdown-menu li:nth-child(2) { transition-delay: .1s; }
.main-nav > li:hover .dropdown-menu li:nth-child(3) { transition-delay: .15s; }
.main-nav > li:hover .dropdown-menu li:nth-child(4) { transition-delay: .2s; }
.main-nav > li:hover .dropdown-menu li:nth-child(5) { transition-delay: .25s; }
.main-nav > li:hover .dropdown-menu li:nth-child(6) { transition-delay: .3s; }
.main-nav > li:hover .dropdown-menu li:nth-child(7) { transition-delay: .35s; }
.main-nav > li:hover .dropdown-menu li:nth-child(8) { transition-delay: .4s; }
.main-nav > li:hover .dropdown-menu li:nth-child(9) { transition-delay: .45s; }
.main-nav > li:hover .dropdown-menu li:nth-child(10) { transition-delay: .5s; }
.main-nav > li:hover .dropdown-menu li:nth-child(11) { transition-delay: .55s; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #EDE8E0;
  font-size: 0.88rem;
  transition: all .25s;
  border-left: 3px solid transparent;
}
.dropdown-menu a:hover {
  color: #D4622A;
  background: rgba(212,98,42,0.08);
  border-left-color: #D4622A;
}
.nav-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform .3s;
}
.main-nav > li:hover .nav-arrow { transform: rotate(180deg); }

/* --- CTA Button (nav) --- */
.nav-cta a {
  background: #D4622A !important;
  color: #FAF7F2 !important;
  padding: 10px 22px !important;
  border-radius: 12px;
  font-weight: 600;
  transition: all .3s;
}
.nav-cta a:hover {
  background: #B8501F !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212,98,42,0.4);
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #EDE8E0;
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* --- Mobile Nav --- */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background: #1C1917;
  z-index: 1050;
  flex-direction: column;
  padding: 80px 30px 30px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid rgba(212,98,42,0.2);
  box-shadow: -5px 0 30px rgba(0,0,0,0.5);
}
.mobile-nav-overlay.open {
  display: flex;
  transform: translateX(0);
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-nav-close svg {
  width: 28px;
  height: 28px;
  stroke: #EDE8E0;
  stroke-width: 2;
  fill: none;
}
.mobile-nav-close:hover svg { stroke: #D4622A; }
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
}
.mobile-nav-backdrop.open { display: block; }
.mobile-nav-overlay ul { width: 100%; }
.mobile-nav-overlay > ul > li {
  border-bottom: 1px solid rgba(212,98,42,0.12);
}
.mobile-nav-overlay > ul > li > a {
  display: block;
  padding: 14px 0;
  color: #EDE8E0;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
}
.mobile-nav-overlay > ul > li > a:hover { color: #D4622A; }
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}
.mobile-dropdown-toggle .mob-arrow {
  transition: transform .3s;
  fill: #D4622A;
}
.mobile-dropdown-toggle.open .mob-arrow { transform: rotate(180deg); }
.mobile-submenu {
  display: none;
  padding-left: 16px;
  padding-bottom: 8px;
}
.mobile-submenu.open { display: block; }
.mobile-submenu a {
  display: block;
  padding: 8px 0;
  color: #b0a89e;
  font-size: 0.92rem;
  text-align: left;
}
.mobile-submenu a:hover { color: #D4622A; }
.mobile-nav-overlay .mobile-cta {
  display: block;
  margin-top: 20px;
  background: #D4622A;
  color: #FAF7F2;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
}
.mobile-nav-overlay .mobile-cta:hover { background: #B8501F; }
.mobile-nav-contact {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(212,98,42,0.15);
}
.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: #D4622A;
  font-size: 0.9rem;
  text-align: left;
}
.mobile-nav-contact svg { width: 18px; height: 18px; fill: #D4622A; flex-shrink: 0; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all .3s;
  text-align: center;
}
.btn-primary {
  background: #D4622A;
  color: #FAF7F2;
}
.btn-primary:hover {
  background: #B8501F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,98,42,0.35);
}
.btn-outline {
  background: transparent;
  color: #D4622A;
  border: 2px solid #D4622A;
}
.btn-outline:hover {
  background: #D4622A;
  color: #FAF7F2;
}
.btn-block { display: block; width: 100%; }

/* --- Hero Section --- */
.hero {
  color: #EDE8E0;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(28,25,23,0.88) 0%, rgba(28,25,23,0.65) 50%, rgba(28,25,23,0.45) 100%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 16px; line-height: 1.2; }
.hero h1 .highlight { color: #D4622A; }
.hero h2 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #b0a89e;
  margin-bottom: 30px;
  line-height: 1.6;
}
.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #D4622A;
  font-weight: 500;
}
.trust-badge svg { width: 20px; height: 20px; fill: #D4622A; flex-shrink: 0; }

/* --- Hero Cover Image --- */
.hero-cover {
  position: relative;
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.hero-cover::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(28,25,23,0.85), rgba(28,25,23,0.6));
}
.hero-cover .container { position: relative; z-index: 1; }
.hero-cover h1 { color: #FAF7F2; font-size: 2.2rem; margin-bottom: 12px; }
.hero-cover p { color: #EDE8E0; font-size: 1.1rem; max-width: 600px; }

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 12px 0;
  font-size: 0.85rem;
  color: #8a8078;
}
.breadcrumbs a { color: #D4622A; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 6px; }

/* --- Forms --- */
.feedback-form-container {
  background: #1C1917;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(212,98,42,0.2);
}
.feedback-form-container.light {
  background: #fff;
  border-color: rgba(212,98,42,0.15);
}
.feedback-form-container h2 {
  color: #D4622A;
  margin-bottom: 20px;
  font-size: 1.3rem;
  text-align: center;
}
.feedback-form-container.light h2 { color: #1C1917; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-row .form-group { margin-bottom: 0; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(212,98,42,0.2);
  border-radius: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  transition: border-color .3s, box-shadow .3s;
  outline: none;
  background: rgba(255,255,255,0.08);
  color: #EDE8E0;
}
.feedback-form-container.light .form-group input,
.feedback-form-container.light .form-group select,
.feedback-form-container.light .form-group textarea {
  background: rgba(0,0,0,0.04);
  color: #1C1917;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #D4622A;
  box-shadow: 0 0 0 3px rgba(212,98,42,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8a8078;
}
.feedback-form-container.light .form-group input::placeholder,
.feedback-form-container.light .form-group textarea::placeholder {
  color: #999;
}
.form-group select { cursor: pointer; 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='%23D4622A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 8px; }
.submit-btn {
  display: block;
  width: 100%;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all .3s;
  text-align: center;
  background: #D4622A;
  color: #FAF7F2;
}
.submit-btn:hover {
  background: #B8501F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,98,42,0.35);
}
.form-error {
  display: none;
  color: #ff6b6b;
  font-size: 0.82rem;
  margin-top: 4px;
}
.form-success,
#form-success,
#modal-form-success {
  background: rgba(76,175,80,0.12);
  color: #4CAF50;
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  margin-top: 12px;
}
.form-error-global {
  background: rgba(244,67,54,0.12);
  color: #F44336;
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  margin-top: 12px;
}
.error-message {
  color: #ff6b6b;
  margin-top: 5px;
  font-size: 14px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* --- Commercial Block --- */
.commercial-block { padding: 80px 0; }
.commercial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.commercial-features { margin: 24px 0; }
.commercial-features li {
  padding: 8px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.commercial-features li::before {
  content: '✦';
  color: #D4622A;
  font-size: 0.9rem;
}
.commercial-img { border-radius: 12px; overflow: hidden; }
.commercial-img img { width: 100%; height: 400px; object-fit: cover; border-radius: 12px; }

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(212,98,42,0.12);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all .3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: #D4622A;
}
.service-card .icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(212,98,42,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.service-card .icon-wrap svg { width: 28px; height: 28px; fill: #D4622A; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: #1C1917; }
.service-card p { font-size: 0.9rem; color: #5a534d; line-height: 1.6; }

/* --- Gallery / Portfolio --- */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.gallery-tab {
  padding: 10px 24px;
  border: 2px solid rgba(212,98,42,0.3);
  border-radius: 30px;
  color: #EDE8E0;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s;
  background: transparent;
  font-family: 'Jost', sans-serif;
}
.gallery-tab:hover, .gallery-tab.active {
  background: #D4622A;
  border-color: #D4622A;
  color: #FAF7F2;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.hidden { display: none; }

/* --- Before/After Slider --- */
.ba-slider-wrapper {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  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: 12px;
  cursor: ew-resize;
  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: #D4622A;
  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: #D4622A;
  border: 3px solid #FAF7F2;
  box-shadow: 0 2px 10px 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' fill='%23FAF7F2'%3E%3Cpath d='M8 5l-5 7 5 7M16 5l5 7-5 7'/%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;
  font-weight: 600;
  color: #D4622A;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- How We Work --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #D4622A;
  color: #FAF7F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; color: #5a534d; }

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

/* --- SEO Content --- */
.seo-content { padding: 60px 0; }
.seo-content h2 { margin-bottom: 24px; }
.seo-content p { max-width: 900px; margin-left: auto; margin-right: auto; color: #5a534d; }

/* --- Stats Row --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: 12px;
  border: 1px solid rgba(212,98,42,0.15);
}
.stat-number {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #D4622A;
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: #8a8078;
  margin-top: 4px;
}
.bg-dark .stat-item { border-color: rgba(212,98,42,0.25); }
.bg-dark .stat-label { color: #b0a89e; }

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-img { border-radius: 12px; overflow: hidden; }
.about-img img { width: 100%; height: 450px; object-fit: cover; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  background: #fff;
  border: 1px solid rgba(212,98,42,0.12);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all .3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.value-card .icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(212,98,42,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.value-card .icon-wrap svg { width: 26px; height: 26px; fill: #D4622A; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: #5a534d; }

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: #1C1917;
  border-radius: 16px;
  padding: 36px;
  color: #EDE8E0;
  border: 1px solid rgba(212,98,42,0.2);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info-item svg { width: 22px; height: 22px; fill: #D4622A; flex-shrink: 0; margin-top: 2px; }
.contact-info-item h3 { font-size: 0.95rem; margin-bottom: 4px; color: #D4622A; }
.contact-info-item p { font-size: 0.9rem; color: #b0a89e; margin: 0; }
.contact-info-item a { color: #EDE8E0; }
.contact-info-item a:hover { color: #D4622A; }
.business-hours { margin-top: 24px; }
.business-hours h3 { color: #D4622A; margin-bottom: 12px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212,98,42,0.1);
  font-size: 0.9rem;
}

/* --- FAQ --- */
.faq-item {
  border: 1px solid rgba(212,98,42,0.15);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .3s;
}
.faq-item:hover { border-color: rgba(212,98,42,0.3); }
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background .3s;
}
.faq-question:hover { background: rgba(212,98,42,0.04); }
.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212,98,42,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
}
.faq-question .faq-icon svg { width: 12px; height: 12px; fill: #D4622A; transition: transform .3s; }
.faq-item.active .faq-question .faq-icon { background: #D4622A; }
.faq-item.active .faq-question .faq-icon svg { fill: #FAF7F2; transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: #5a534d;
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 500px; }

/* --- Service Page --- */
.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.service-benefits { margin: 24px 0; }
.service-benefits li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
}
.service-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #D4622A;
}
.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.related-service-card {
  background: #fff;
  border: 1px solid rgba(212,98,42,0.12);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all .3s;
}
.related-service-card:hover {
  border-color: #D4622A;
  transform: translateY(-3px);
}
.related-service-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.related-service-card a { color: #D4622A; font-weight: 600; font-size: 0.88rem; }

/* --- CTA Section --- */
.cta-section {
  background: #1C1917;
  color: #EDE8E0;
  padding: 60px 0;
  text-align: center;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: #b0a89e; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- Map --- */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid rgba(212,98,42,0.15);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* --- Modal --- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-content {
  background: #1C1917;
  border: 1px solid rgba(212,98,42,0.2);
  border-radius: 16px;
  padding: 36px;
  max-width: 500px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #EDE8E0;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color .3s;
}
.modal-close:hover { color: #D4622A; }
.modal-content h2 { color: #D4622A; margin-bottom: 20px; text-align: center; }
.modal-content .form-group input,
.modal-content .form-group select,
.modal-content .form-group textarea {
  background: rgba(255,255,255,0.08);
  color: #EDE8E0;
}

/* --- Sticky Quote Button --- */
.sticky-quote-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #D4622A;
  color: #FAF7F2;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  font-family: 'Jost', sans-serif;
  box-shadow: 0 6px 25px rgba(212,98,42,0.4);
  transition: all .3s;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-quote-btn:hover {
  background: #B8501F;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,98,42,0.5);
}
.sticky-quote-btn svg { width: 18px; height: 18px; fill: #FAF7F2; }

/* --- Footer --- */
.site-footer {
  background: #151210;
  color: #EDE8E0;
  padding: 60px 0 0;
  border-top: 1px solid rgba(212,98,42,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h2 {
  font-size: 1rem;
  color: #D4622A;
  margin-bottom: 16px;
  font-family: 'Libre Baskerville', serif;
}
.footer-col p {
  font-size: 0.88rem;
  color: #8a8078;
  line-height: 1.7;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: #b0a89e;
  font-size: 0.88rem;
  transition: color .3s;
}
.footer-col ul a:hover { color: #D4622A; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item svg { width: 18px; height: 18px; fill: #D4622A; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a, .footer-contact-item span {
  color: #b0a89e;
  font-size: 0.88rem;
}
.footer-contact-item a:hover { color: #D4622A; }
.footer-bottom {
  border-top: 1px solid rgba(212,98,42,0.1);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 0.82rem;
  color: #5a534d;
}

/* --- Service Area Page --- */
.area-services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.area-service-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(212,98,42,0.12);
  border-radius: 12px;
  transition: all .3s;
}
.area-service-link:hover {
  border-color: #D4622A;
  transform: translateY(-2px);
}
.area-service-link svg { width: 20px; height: 20px; fill: #D4622A; flex-shrink: 0; }

/* --- Service Areas Overview --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.area-card {
  background: #fff;
  border: 1px solid rgba(212,98,42,0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s;
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-color: #D4622A;
}
.area-card-img { height: 200px; overflow: hidden; }
.area-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.area-card:hover .area-card-img img { transform: scale(1.05); }
.area-card-body { padding: 20px; }
.area-card-body h2 { font-size: 1.05rem; margin-bottom: 8px; }
.area-card-body p { font-size: 0.85rem; color: #5a534d; margin-bottom: 12px; }
.area-card-body a { color: #D4622A; font-weight: 600; font-size: 0.88rem; }

/* --- Services Overview --- */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.service-overview-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid rgba(212,98,42,0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s;
  align-items: center;
}
.service-overview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.service-overview-card img { width: 200px; height: 200px; object-fit: cover; }
.service-overview-card-body { padding: 24px 24px 24px 0; }
.service-overview-card-body h2 { font-size: 1.1rem; margin-bottom: 8px; }
.service-overview-card-body p { font-size: 0.88rem; color: #5a534d; margin-bottom: 12px; }
.service-overview-card-body a { color: #D4622A; font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { min-height: 500px; }
  .commercial-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-content-grid { grid-template-columns: 1fr; }
  .related-services { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .services-overview-grid { grid-template-columns: 1fr; }
  .service-overview-card { grid-template-columns: 180px 1fr; }
  .ba-slider-wrapper { flex-direction: column; }
  .ba-slider-container { max-width: 100%; }
  h1 { font-size: 2rem; }
  .hero h1 { font-size: 2rem; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .related-services { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .area-services-list { grid-template-columns: 1fr; }
  .service-overview-card { grid-template-columns: 1fr; }
  .service-overview-card img { width: 100%; height: 200px; }
  .sticky-quote-btn {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    width: calc(100% - 32px);
    justify-content: center;
  }
  .sticky-quote-btn:hover { transform: translateX(50%) translateY(-2px); }
  .mobile-nav-overlay { width: 70%; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero-cover { min-height: 300px; }
  .hero-cover h1 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-padding { padding: 50px 0; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.5rem; }
  .logo a { font-size: 1.1rem; }
  .top-bar { font-size: 0.78rem; }
  .feedback-form-container { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .mobile-nav-overlay { width: 80%; }
}
