/* ============================================================
   Wallpaper Fancy — style.css
   Palette: slate charcoal #1E293B | steel #334155 | white #F8FAFC
   Accent: icy blue #60A5FA | Dark text: #0F172A
   Fonts: Manrope (headings) · Inter (body)
   ============================================================ */

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

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark: #1E293B;
  --bg-mid:  #334155;
  --bg-light: #F8FAFC;
  --text-dark: #1E293B;
  --text-light: #FFFFFF;
  --accent: #60A5FA;
  --accent-hover: #3B82F6;
  --radius: 10px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: #fff;
}

h1, h2, h3, h4, h5 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.25;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; object-fit: cover; }
ul { list-style: none; }

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

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #0F172A;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #0F172A;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #0F172A;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(96,165,250,.15);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #0F172A;
  flex-shrink: 0;
}
.logo-text { font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 800; }
.logo-text span { color: var(--accent); }

/* Contact row */
.header-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: #CBD5E1;
}
.header-contact a { color: #CBD5E1; transition: color var(--transition); }
.header-contact a:hover { color: var(--accent); }
.header-contact .phone-link {
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  color: #CBD5E1;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
  background: rgba(96,165,250,.12);
}
.nav-link svg { flex-shrink: 0; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--bg-dark);
  border: 1px solid rgba(96,165,250,.2);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  z-index: 100;
  overflow: hidden;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 11px 20px;
  color: #94A3B8;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover {
  background: rgba(96,165,250,.1);
  color: var(--accent);
  padding-left: 26px;
}

/* Staggered dropdown animation */
.dropdown-item:nth-child(1)  { transition-delay: .01s; }
.dropdown-item:nth-child(2)  { transition-delay: .02s; }
.dropdown-item:nth-child(3)  { transition-delay: .03s; }
.dropdown-item:nth-child(4)  { transition-delay: .04s; }
.dropdown-item:nth-child(5)  { transition-delay: .05s; }
.dropdown-item:nth-child(6)  { transition-delay: .06s; }
.dropdown-item:nth-child(7)  { transition-delay: .07s; }
.dropdown-item:nth-child(8)  { transition-delay: .08s; }
.dropdown-item:nth-child(9)  { transition-delay: .09s; }
.dropdown-item:nth-child(10) { transition-delay: .10s; }
.dropdown-item:nth-child(11) { transition-delay: .11s; }
.dropdown-item:nth-child(12) { transition-delay: .12s; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  min-width: 280px;
  height: 100%;
  background: var(--bg-dark);
  z-index: 2000;
  flex-direction: column;
  padding: 24px 28px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,.5);
}
.mobile-menu.open {
  transform: translateX(0);
  display: flex;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1999;
}
.mobile-overlay.open { display: block; }

.mobile-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}
.mobile-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #94A3B8;
  transition: color var(--transition);
}
.mobile-close-btn:hover { color: var(--accent); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-link {
  display: block;
  padding: 13px 0;
  color: #CBD5E1;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-align: left;
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--accent); }

.mobile-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #475569;
  padding: 20px 0 8px;
}
.mobile-sub-link {
  display: block;
  padding: 10px 0 10px 14px;
  color: #94A3B8;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color var(--transition);
}
.mobile-sub-link:hover { color: var(--accent); }

.mobile-contact-block {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-contact-block a {
  display: block;
  color: #CBD5E1;
  font-size: 14px;
  margin-bottom: 8px;
}
.mobile-contact-block .phone { color: var(--accent); font-weight: 700; font-size: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/wallpaper-installation-hero.webp');
  background-size: cover;
  background-position: center;
  opacity: .22;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(30,41,59,.95) 40%, rgba(96,165,250,.08));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(96,165,250,.15);
  border: 1px solid rgba(96,165,250,.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
  letter-spacing: .04em;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 18px;
  color: #94A3B8;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.stat-label { font-size: 13px; color: #64748B; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 88px 0; }
.section-dark { background: var(--bg-dark); color: var(--text-light); }
.section-mid  { background: var(--bg-mid); color: var(--text-light); }
.section-light { background: var(--bg-light); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.section-dark .section-header h2 { color: #FFFFFF; }
.section-header p { color: #64748B; font-size: 17px; }
.section-dark .section-header p { color: #94A3B8; }

/* ---- Grid ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- Cards ---- */
.card {
  background: var(--bg-mid);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,.35);
}
.card-img { height: 220px; }
.card-body { padding: 24px; }
.card-body h3 {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.card-body p { color: #94A3B8; font-size: 15px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }

/* Light cards */
.card-light {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.card-light .card-body { padding: 24px; }
.card-light .card-body h3 { color: var(--text-dark); }
.card-light .card-body p { color: #64748B; }
.card-light .card-link { color: var(--bg-dark); }

/* Icon cards */
.icon-card {
  padding: 32px 28px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.icon-box {
  width: 52px;
  height: 52px;
  background: rgba(96,165,250,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-box svg { color: var(--accent); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover img { transform: scale(1.07); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.92) 40%, rgba(15,23,42,.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  transition: background var(--transition);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(15,23,42,.97) 50%, rgba(15,23,42,.3));
}
.service-card h3 { font-size: 17px; color: #FFFFFF; margin-bottom: 6px; }
.service-card p { font-size: 13px; color: #94A3B8; margin-bottom: 14px; }
.service-card .card-link { margin-top: 0; }

/* ============================================================
   AREAS GRID
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.area-pill {
  display: block;
  padding: 16px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  text-align: center;
  color: #CBD5E1;
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.area-pill:hover {
  background: rgba(96,165,250,.12);
  border-color: rgba(96,165,250,.3);
  color: var(--accent);
  transform: translateY(-3px);
}

/* ============================================================
   WHY US / FEATURES
   ============================================================ */
.features-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.features-split img {
  border-radius: 16px;
  height: 480px;
  object-fit: cover;
}
.features-list { display: flex; flex-direction: column; gap: 24px; margin-top: 28px; }
.feature-item { display: flex; gap: 16px; }
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(96,165,250,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.feature-text h4 { font-size: 16px; color: #FFFFFF; margin-bottom: 4px; }
.feature-text p  { font-size: 14px; color: #94A3B8; }

/* ============================================================
   FORM
   ============================================================ */
.feedback-form-container {
  background: var(--bg-mid);
  border-radius: 16px;
  padding: 48px;
  border: 1px solid rgba(255,255,255,.07);
}
.feedback-form-container h3 {
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 32px;
  text-align: center;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; }

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 14px 18px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #64748B; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: rgba(96,165,250,.05);
}
.contact-form textarea { min-height: 120px; resize: vertical; }

.submit-btn {
  background: var(--accent);
  color: #0F172A;
  border: none;
  border-radius: var(--radius);
  padding: 16px 32px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  width: 100%;
}
.submit-btn:hover { background: var(--accent-hover); transform: translateY(-2px); }

#form-success {
  text-align: center;
  padding: 32px;
}
#form-success p {
  color: #86EFAC;
  font-size: 16px;
  font-weight: 500;
}

/* Inline form errors */
.error-message {
  color: #ff6b6b;
  margin-top: 5px;
  font-size: 13px;
}

/* ============================================================
   MAP
   ============================================================ */
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  height: 400px;
  border: 1px solid rgba(255,255,255,.08);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  background: var(--bg-dark);
  padding: 80px 0;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: #FFFFFF; margin-bottom: 12px; }
.page-hero p { color: #94A3B8; font-size: 17px; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748B;
  margin-bottom: 18px;
}
.breadcrumb a { color: #64748B; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: #475569; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps { display: flex; flex-direction: column; gap: 24px; }
.process-step { display: flex; gap: 24px; align-items: flex-start; }
.step-num {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #0F172A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
}
.step-body h4 { font-size: 16px; color: #FFFFFF; margin-bottom: 6px; }
.step-body p  { font-size: 14px; color: #94A3B8; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; overflow: hidden; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.07); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(96,165,250,.06); }
.faq-question .chevron {
  flex-shrink: 0;
  transition: transform .25s ease;
  color: var(--accent);
}
.faq-item.open .faq-question { background: rgba(96,165,250,.07); }
.faq-item.open .chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 28px 22px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { color: #94A3B8; font-size: 15px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--bg-mid);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.05);
}
.testimonial-stars { color: #FCD34D; font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-text { color: #CBD5E1; font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #0F172A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.author-name { font-weight: 600; color: #FFFFFF; font-size: 14px; }
.author-loc { font-size: 12px; color: #64748B; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
  border-top: 1px solid rgba(96,165,250,.12);
  border-bottom: 1px solid rgba(96,165,250,.12);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: #FFFFFF; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }
.cta-banner p { color: #94A3B8; font-size: 17px; margin-bottom: 32px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0F172A;
  padding: 64px 0 32px;
  color: #94A3B8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand p { font-size: 14px; line-height: 1.7; color: #64748B; margin: 14px 0 20px; }
.footer-brand .logo { margin-bottom: 0; }

.footer-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: #64748B;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { font-size: 14px; color: #64748B; transition: color var(--transition); }
.footer-contact a:hover { color: var(--accent); }
.footer-contact .phone { color: var(--accent); font-weight: 600; font-size: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: #475569;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: #475569; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   STICKY QUOTE BUTTON
   ============================================================ */
.sticky-quote {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
}
@media (max-width: 640px) {
  .sticky-quote {
    right: 50%;
    transform: translateX(50%);
    bottom: 20px;
  }
}
.sticky-quote-btn {
  background: var(--accent);
  color: #0F172A;
  border: none;
  border-radius: 40px;
  padding: 14px 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(96,165,250,.4);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-quote-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(96,165,250,.5);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg-dark);
  border: 1px solid rgba(96,165,250,.15);
  border-radius: 18px;
  padding: 40px;
  width: 100%;
  max-width: 560px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #64748B;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.modal-close:hover { color: #FFFFFF; }
.modal-box .feedback-form-container { padding: 0; background: none; border: none; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img { border-radius: 16px; height: 500px; object-fit: cover; }
.about-text h2 { font-size: 2rem; margin-bottom: 20px; }
.about-text p { color: #64748B; margin-bottom: 16px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { font-size: 1.2rem; margin-bottom: 20px; color: #FFFFFF; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(96,165,250,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-detail-body p { font-size: 14px; color: #94A3B8; }
.contact-detail-body a { color: var(--accent); font-weight: 600; }
.contact-detail-body strong { color: #FFFFFF; font-size: 15px; display: block; margin-bottom: 4px; }

/* ============================================================
   CONTENT PROSE (service/city pages)
   ============================================================ */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; color: #FFFFFF; margin: 40px 0 16px; }
.prose h3 { font-size: 1.25rem; color: #CBD5E1; margin: 28px 0 12px; }
.prose p { color: #94A3B8; margin-bottom: 16px; }
.prose ul, .prose ol { padding-left: 20px; margin-bottom: 20px; }
.prose li { color: #94A3B8; margin-bottom: 8px; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--accent); text-decoration: underline; }
.prose .cta-inline {
  display: block;
  margin: 28px 0;
  text-align: center;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .header-contact { display: none; }
  .main-nav       { display: none; }
  .hamburger      { display: flex; }

  .grid-3  { grid-template-columns: 1fr; }
  .grid-2  { grid-template-columns: 1fr; }
  .grid-4  { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid    { grid-template-columns: repeat(2, 1fr); }

  .features-split { grid-template-columns: 1fr; gap: 32px; }
  .about-split    { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }

  .hero-stats { gap: 20px; }
  .feedback-form-container { padding: 28px 20px; }
  .modal-box { padding: 28px 20px; }

  .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr; }
  .hero h1       { font-size: 2rem; }
}
