/* =====================================================
   GARLAND WALLPAPER INSTALLATION — GLOBAL STYLES
   Palette: Matte Charcoal, Graphite, Bronze, Limestone
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-dark: #151515;
  --bg-graphite: #232323;
  --bg-light: #F1ECE3;
  --text-light: #FFFFFF;
  --text-dark: #262626;
  --text-muted: #A0A0A0;
  --accent: #B28B5C;
  --accent-hover: #9B764A;
  --border: rgba(178,139,92,0.25);
  --border-light: rgba(255,255,255,0.08);
  --radius: 8px;
  --transition: 0.3s ease;
  --shadow: 0 8px 40px rgba(0,0,0,0.45);
  --shadow-bronze: 0 4px 24px rgba(178,139,92,0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { margin-bottom: 1rem; color: rgba(255,255,255,0.82); }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; color: rgba(255,255,255,0.82); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}
.section-light h1,
.section-light h2,
.section-light h3 { color: var(--text-dark); }
.section-light p,
.section-light li { color: rgba(38,38,38,0.82); }
.section-light a { color: var(--accent-hover); }

.section-graphite { background: var(--bg-graphite); }

.section-label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 32px;
  border-radius: var(--radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #151515;
  box-shadow: 0 2px 12px rgba(178,139,92,0.35);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #151515;
  box-shadow: var(--shadow-bronze);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(178,139,92,0.07);
}
.btn-sm { height: 46px; padding: 0 22px; font-size: 0.85rem; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(21,21,21,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #151515;
  letter-spacing: -0.02em;
}
.logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}
.logo-text span { display: block; font-weight: 400; font-size: 0.72rem; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0; margin: 0;
}
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--accent); background: rgba(178,139,92,0.08); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition);
}
.dropdown:hover .dropdown-toggle::after { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #1e1e1e;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.22s ease;
  box-shadow: var(--shadow);
  list-style: none;
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li { opacity: 0; transform: translateX(-6px); }
.dropdown:hover .dropdown-menu li { opacity: 1; transform: translateX(0); }
.dropdown:hover .dropdown-menu li:nth-child(1) { transition: all 0.18s 0.04s ease; }
.dropdown:hover .dropdown-menu li:nth-child(2) { transition: all 0.18s 0.08s ease; }
.dropdown:hover .dropdown-menu li:nth-child(3) { transition: all 0.18s 0.12s ease; }
.dropdown:hover .dropdown-menu li:nth-child(4) { transition: all 0.18s 0.16s ease; }
.dropdown:hover .dropdown-menu li:nth-child(5) { transition: all 0.18s 0.20s ease; }
.dropdown:hover .dropdown-menu li:nth-child(6) { transition: all 0.18s 0.24s ease; }
.dropdown:hover .dropdown-menu li:nth-child(7) { transition: all 0.18s 0.28s ease; }
.dropdown:hover .dropdown-menu li:nth-child(8) { transition: all 0.18s 0.32s ease; }
.dropdown:hover .dropdown-menu li:nth-child(9) { transition: all 0.18s 0.36s ease; }
.dropdown:hover .dropdown-menu li:nth-child(10) { transition: all 0.18s 0.40s ease; }
.dropdown:hover .dropdown-menu li:nth-child(11) { transition: all 0.18s 0.44s ease; }
.dropdown:hover .dropdown-menu li:nth-child(12) { transition: all 0.18s 0.48s ease; }

.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.75);
  border-radius: 6px;
  transition: all var(--transition);
}
.dropdown-menu a:hover { color: var(--accent); background: rgba(178,139,92,0.1); }

/* Header contact info */
.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-contact a {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.header-contact a:hover { color: var(--accent); }
.header-contact .divider {
  width: 1px; height: 18px;
  background: var(--border-light);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 50%;
  min-width: 280px;
  height: 100vh;
  background: #1a1a1a;
  z-index: 2000;
  flex-direction: column;
  padding: 80px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  border-left: 1px solid var(--border);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1999;
}
.mobile-nav-overlay.open { display: block; }
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: background var(--transition);
}
.mobile-close:hover { background: rgba(178,139,92,0.25); }

.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
  text-align: left;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .mobile-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 20px 0 8px;
}
.mobile-nav .sub-link {
  font-size: 0.88rem;
  padding: 9px 0 9px 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.mobile-contact-info {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.mobile-contact-info a {
  border: none;
  font-size: 0.9rem;
  padding: 8px 0;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(21,21,21,0.88) 45%, rgba(21,21,21,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-content h1 { margin-bottom: 24px; }
.hero-content h1 em { font-style: normal; color: var(--accent); }
.hero-content p { font-size: 1.1rem; margin-bottom: 36px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--bg-graphite);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(178,139,92,0.06) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; max-width: 600px; color: rgba(255,255,255,0.72); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border); }

/* ===== GRID HELPERS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-graphite);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card-body p { font-size: 0.88rem; margin-bottom: 16px; }
.card-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
}
.card-link::after { content: '→'; transition: transform var(--transition); }
.card:hover .card-link::after { transform: translateX(4px); }

/* Light card variant */
.card-light {
  background: #fff;
  border-color: rgba(38,38,38,0.12);
}
.card-light:hover { border-color: var(--accent); }
.card-light .card-body h3,
.card-light .card-body p { color: var(--text-dark); }
.card-light .card-body p { color: rgba(38,38,38,0.72); }

/* ===== SERVICE CARDS ===== */
.service-icon {
  width: 52px; height: 52px;
  background: rgba(178,139,92,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}

/* ===== STATS ===== */
.stats-row { display: flex; gap: 40px; flex-wrap: wrap; }
.stat { }
.stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* ===== SPLIT LAYOUT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(178,139,92,0.2);
  border-radius: 12px;
  pointer-events: none;
}
.split-content h2 { margin-bottom: 16px; }
.split-content p { margin-bottom: 24px; }

/* ===== CHECKLIST ===== */
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(178,139,92,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
  margin-top: 2px;
}
.section-light .check-list li { color: rgba(38,38,38,0.82); border-color: rgba(38,38,38,0.08); }
.section-light .check-list li::before { background: rgba(178,139,92,0.15); }

/* ===== TESTIMONIALS / QUOTE ===== */
.testimonial {
  background: var(--bg-graphite);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 24px 28px;
  margin-bottom: 20px;
}
.testimonial p { font-style: italic; font-size: 1rem; margin-bottom: 12px; }
.testimonial-author { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.84rem; color: var(--accent); }

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: rgba(178,139,92,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  transition: transform var(--transition);
}
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }
.section-light .faq-question { color: var(--text-dark); }
.section-light .faq-answer { color: rgba(38,38,38,0.75); }
.section-light .faq-item { border-color: rgba(38,38,38,0.12); }

/* ===== CONTACT FORM ===== */
.feedback-form-container {
  background: var(--bg-graphite);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
}
.feedback-form-container h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: #fff;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form .form-group { margin-bottom: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  outline: none;
  transition: border-color var(--transition);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { min-height: 100px; resize: vertical; margin-bottom: 16px; }
.contact-form .form-group:last-of-type { margin-bottom: 16px; }
.submit-btn {
  background: var(--accent);
  color: #151515;
  border: none;
  height: 56px;
  padding: 0 36px;
  border-radius: var(--radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.04em;
}
.submit-btn:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-bronze);
  transform: translateY(-2px);
}
#form-success { padding: 20px 0; }
#form-success p { color: var(--accent); font-size: 1rem; font-weight: 500; }

/* ===== MAP ===== */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-container iframe { display: block; width: 100%; }

/* ===== CONTACT INFO ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-info-item .ci-icon {
  width: 44px; height: 44px;
  background: rgba(178,139,92,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.contact-info-item .ci-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.contact-info-item .ci-value { font-size: 0.96rem; color: #fff; font-weight: 500; }
.contact-info-item a { color: #fff; }
.contact-info-item a:hover { color: var(--accent); }

/* ===== SERVICE AREA TAGS ===== */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.area-tag {
  padding: 6px 14px;
  background: rgba(178,139,92,0.1);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  transition: all var(--transition);
  text-decoration: none;
}
.area-tag:hover { background: var(--accent); color: #151515; border-color: var(--accent); }
.section-light .area-tag { background: rgba(178,139,92,0.12); color: var(--text-dark); border-color: rgba(178,139,92,0.3); }
.section-light .area-tag:hover { background: var(--accent); color: #151515; }

/* ===== PROCESS STEPS ===== */
.process-steps { counter-reset: step; }
.process-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  counter-increment: step;
}
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(178,139,92,0.12);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent);
}
.step-num::before { content: counter(step, decimal-leading-zero); }
.step-content h3 { font-size: 1rem; margin-bottom: 6px; }

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  animation: floatIn 0.5s 1s both;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.sticky-cta .btn { box-shadow: 0 6px 30px rgba(178,139,92,0.45); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  padding: 24px;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.94);
  transition: transform 0.25s ease;
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  z-index: 1;
}
.modal-close:hover { background: rgba(178,139,92,0.25); }
.modal-inner { padding: 40px; }

/* ===== FOOTER ===== */
.site-footer {
  background: #0e0e0e;
  border-top: 1px solid var(--border-light);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); margin-top: 16px; max-width: 280px; }
.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.footer-contact-item a { color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== IMAGE BLOCKS ===== */
.img-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.img-grid-3 img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; display: block; }
.img-wide { width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: 12px; display: block; }

/* ===== CITY PAGE SPECIFICS ===== */
.neighborhood-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.neighborhood-list li {
  padding: 6px 16px;
  background: rgba(178,139,92,0.1);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.82);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #1c1510 0%, #151515 50%, #1a1a1a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { margin-bottom: 32px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ===== UTILITY ===== */
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .main-nav, .header-contact { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .feedback-form-container { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .img-grid-3 { grid-template-columns: 1fr 1fr; }
  .stats-row { gap: 24px; }
  .sticky-cta { bottom: 20px; right: 50%; transform: translateX(50%); }
  .sticky-cta .btn { padding: 0 24px; }
  .modal-inner { padding: 24px; }
}

@media (max-width: 400px) {
  .img-grid-3 { grid-template-columns: 1fr; }
}
