/* ============================================
   Wallpaper Prestige Los Angeles — Main Stylesheet
   Color Palette:
   Primary BG: #1E293B (deep slate)
   Secondary BG: #334155 (muted blue)
   Light sections: #F9FAFB
   Text on dark: #E5E7EB
   Text on light: #111827
   Accent: #22C55E (aqua/green)
   ============================================ */

/* === 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', system-ui, -apple-system, sans-serif;
  color: #111827;
  background: #F9FAFB;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: #22C55E; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #16A34A; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.3;
  color: #111827;
}

h1 { font-size: 2.75rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

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

/* === HEADER === */
.site-header {
  background: #1E293B;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-top {
  background: #0F172A;
  padding: 8px 0;
  font-size: 0.875rem;
}

.header-top .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.header-top a {
  color: #E5E7EB;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.header-top a:hover { color: #22C55E; }

.header-top .header-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-main {
  padding: 12px 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: #FFFFFF;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo span { color: #22C55E; }

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

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

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

.nav-list > li > a {
  color: #E5E7EB;
  padding: 10px 16px;
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: #22C55E;
  background: rgba(34, 197, 94, 0.1);
}

/* Dropdown arrow */
.nav-list > li.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.nav-list > li.has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

/* === DROPDOWN MENU === */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1E293B;
  min-width: 260px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  padding: 8px 0;
  z-index: 100;
  border-top: 2px solid #22C55E;
}

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

.dropdown-menu li {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

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

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

.dropdown-menu a {
  color: #CBD5E1;
  padding: 10px 20px;
  display: block;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  color: #22C55E;
  background: rgba(34, 197, 94, 0.08);
  border-left-color: #22C55E;
  padding-left: 26px;
}

/* === MOBILE MENU TOGGLE === */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #E5E7EB;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* === MOBILE NAV OVERLAY === */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 55%;
  height: 100vh;
  background: #1E293B;
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0,0,0,0.5);
}

.mobile-nav-overlay.active {
  right: 0;
}

.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;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #334155;
}

.mobile-nav-header .logo-mobile {
  color: #FFFFFF;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.mobile-nav-header .logo-mobile span { color: #22C55E; }

.mobile-close-btn {
  background: none;
  border: 2px solid #475569;
  color: #E5E7EB;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-close-btn:hover {
  border-color: #22C55E;
  color: #22C55E;
}

.mobile-nav-list {
  list-style: none;
  padding: 16px 0;
}

.mobile-nav-list > li {
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.mobile-nav-list > li > a {
  color: #E5E7EB;
  padding: 14px 24px;
  display: block;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav-list > li > a:hover {
  color: #22C55E;
  background: rgba(34, 197, 94, 0.08);
  padding-left: 30px;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-dropdown-toggle::after {
  content: '+';
  font-size: 1.4rem;
  color: #64748B;
  transition: transform 0.3s ease;
  margin-right: 24px;
}

.mobile-dropdown-toggle.open::after {
  content: '−';
  color: #22C55E;
}

.mobile-sub-menu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(15, 23, 42, 0.5);
}

.mobile-sub-menu.open {
  max-height: 800px;
}

.mobile-sub-menu a {
  color: #94A3B8;
  padding: 10px 24px 10px 40px;
  display: block;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  border-left: 2px solid transparent;
}

.mobile-sub-menu a:hover {
  color: #22C55E;
  border-left-color: #22C55E;
  padding-left: 46px;
}

.mobile-nav-contact {
  padding: 20px 24px;
  border-top: 1px solid #334155;
}

.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #CBD5E1;
  padding: 8px 0;
  font-size: 0.9rem;
}

.mobile-nav-contact a:hover { color: #22C55E; }

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,41,59,0.92) 0%, rgba(30,41,59,0.75) 50%, rgba(30,41,59,0.6) 100%);
  z-index: 1;
}

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

.hero-content h1 {
  color: #FFFFFF;
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

.hero-content h1 span { color: #22C55E; }

.hero-content p {
  color: #CBD5E1;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

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

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E5E7EB;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  color: #22C55E;
  flex-shrink: 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: #22C55E;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

.btn-primary:hover {
  background: #16A34A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45);
  color: #FFFFFF;
}

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

.btn-outline:hover {
  background: #22C55E;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-white {
  background: #FFFFFF;
  color: #1E293B;
}

.btn-white:hover {
  background: #F1F5F9;
  transform: translateY(-2px);
}

/* === CONTACT FORM === */
.feedback-form-container {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feedback-form-container h3 {
  color: #1E293B;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

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

.form-group { margin-bottom: 12px; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #F8FAFC;
  color: #111827;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
  background: #FFFFFF;
}

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

.form-submit { margin-top: 8px; }

.submit-btn {
  width: 100%;
  padding: 16px;
  background: #22C55E;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

.submit-btn:hover {
  background: #16A34A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45);
}

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

#form-success p {
  color: #22C55E;
  font-weight: 600;
  font-size: 1.1rem;
}

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

.section-dark {
  background: #1E293B;
  color: #E5E7EB;
}

.section-dark h2,
.section-dark h3 { color: #FFFFFF; }

.section-muted {
  background: #334155;
  color: #E5E7EB;
}

.section-muted h2,
.section-muted h3 { color: #FFFFFF; }

.section-light {
  background: #F9FAFB;
}

.section-white {
  background: #FFFFFF;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header p {
  color: #64748B;
  font-size: 1.1rem;
}

.section-dark .section-header p,
.section-muted .section-header p {
  color: #94A3B8;
}

.section-label {
  display: inline-block;
  color: #22C55E;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.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: all 0.35s ease;
  border: 1px solid #E2E8F0;
}

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

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

.card-body {
  padding: 24px;
}

.card-body h3 { margin-bottom: 10px; }

.card-body p {
  color: #64748B;
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #22C55E;
  font-weight: 600;
  margin-top: 12px;
  font-size: 0.95rem;
}

.card-link:hover { gap: 10px; }

/* Dark card variant */
.section-dark .card,
.section-muted .card {
  background: #334155;
  border-color: #475569;
}

.section-dark .card-body p,
.section-muted .card-body p {
  color: #94A3B8;
}

/* === SERVICE ICON CARDS === */
.icon-card {
  text-align: center;
  padding: 40px 24px;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  transition: all 0.35s ease;
}

.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: #22C55E;
}

.icon-card .icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-card .icon-wrap svg {
  width: 28px;
  height: 28px;
  color: #22C55E;
}

.icon-card h3 { font-size: 1.2rem; }
.icon-card p { color: #64748B; font-size: 0.9rem; }

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

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

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

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

/* === MAP === */
.map-container {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 2px solid #E2E8F0;
}

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

/* === CTA SECTION === */
.cta-block {
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  margin: 40px 0;
}

.cta-block h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-block p {
  color: #CBD5E1;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-inline {
  margin: 32px 0;
  padding: 28px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 12px;
  text-align: center;
}

.cta-inline p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #334155;
}

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

/* === FAQ === */
.faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover { border-color: #22C55E; }

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #1E293B;
  font-size: 1.05rem;
  transition: color 0.3s ease;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.faq-question:hover { color: #22C55E; }

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

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: #64748B;
  line-height: 1.7;
}

.section-dark .faq-item {
  background: #334155;
  border-color: #475569;
}

.section-dark .faq-question { color: #E5E7EB; }
.section-dark .faq-answer p { color: #94A3B8; }

/* === AREAS LIST === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.area-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  color: #334155;
  font-weight: 500;
  transition: all 0.3s ease;
}

.area-link:hover {
  border-color: #22C55E;
  color: #22C55E;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.area-link svg {
  width: 16px;
  height: 16px;
  color: #22C55E;
  flex-shrink: 0;
}

.section-dark .area-link {
  background: #334155;
  border-color: #475569;
  color: #CBD5E1;
}

.section-dark .area-link:hover {
  color: #22C55E;
  border-color: #22C55E;
}

/* === CONTENT BLOCKS === */
.content-block {
  margin-bottom: 48px;
}

.content-block h2 { margin-bottom: 20px; }

.content-block ul,
.content-block ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.content-block li {
  margin-bottom: 8px;
  color: #475569;
  line-height: 1.7;
}

.section-dark .content-block li,
.section-muted .content-block li {
  color: #94A3B8;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.content-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === NEIGHBORHOODS === */
.neighborhoods-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.neighborhood-tag {
  background: rgba(34, 197, 94, 0.08);
  color: #334155;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(34, 197, 94, 0.15);
  transition: all 0.3s ease;
}

.neighborhood-tag:hover {
  background: #22C55E;
  color: #FFFFFF;
  border-color: #22C55E;
}

.section-dark .neighborhood-tag {
  background: rgba(34, 197, 94, 0.12);
  color: #CBD5E1;
  border-color: rgba(34, 197, 94, 0.2);
}

/* === FOOTER === */
.site-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 60px 0 0;
}

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

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.footer-about p {
  color: #94A3B8;
  font-size: 0.9rem;
  line-height: 1.7;
}

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

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

.footer-col ul a {
  color: #94A3B8;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-col ul a:hover {
  color: #22C55E;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: #94A3B8;
  font-size: 0.9rem;
}

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

.footer-contact-item a {
  color: #94A3B8;
}

.footer-contact-item a:hover { color: #22C55E; }

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* === STICKY QUOTE BUTTON === */
.sticky-quote-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #22C55E;
  color: #FFFFFF;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.4);
  z-index: 900;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-quote-btn:hover {
  background: #16A34A;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

.sticky-quote-btn svg {
  width: 20px;
  height: 20px;
}

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

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

.modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  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;
  background: #F1F5F9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: #E2E8F0;
  color: #1E293B;
}

.modal-content .feedback-form-container {
  box-shadow: none;
  border-radius: 20px;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: #1E293B;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(34,197,94,0.08) 0%, transparent 60%);
}

.page-hero h1 {
  color: #FFFFFF;
  position: relative;
}

.page-hero p {
  color: #94A3B8;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

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

.breadcrumb a { color: #94A3B8; }
.breadcrumb a:hover { color: #22C55E; }
.breadcrumb span { color: #64748B; }

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

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: #22C55E;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.08);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  color: #22C55E;
}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.contact-info-card p,
.contact-info-card a {
  color: #64748B;
  font-size: 0.95rem;
}

/* === PROCESS STEPS === */
.process-steps {
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #22C55E;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.step-content p {
  color: #64748B;
  font-size: 0.95rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { text-align: center; }
  .hero-content p { margin: 0 auto 2rem; }
  .hero-badges { justify-content: center; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .content-with-image { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 50px 0; }

  /* Hide desktop nav, show mobile toggle */
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .mobile-nav-overlay { display: block; }
  .mobile-nav-backdrop { display: block; }

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

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

  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }

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

  .cta-block { padding: 32px 20px; }

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

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

  .header-top .container {
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content h1 { font-size: 1.8rem; }
  .feedback-form-container { padding: 24px 16px; }
  .areas-grid { grid-template-columns: 1fr; }
}

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

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

/* === UTILITY === */
.text-center { text-align: center; }
.text-accent { color: #22C55E; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
