/* ============================================================
   Scottsdale Flood Pros — Main Stylesheet
   Primary: #2c1810  |  Accent: #d4521a
   Fonts: DM Serif Display (headings), Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --brown:     #2c1810;
  --brown-mid: #4a2c1a;
  --brown-lt:  #7a4a30;
  --orange:    #d4521a;
  --orange-dk: #b03f10;
  --orange-lt: #f06b2e;
  --cream:     #fdf6ef;
  --sand:      #f5ece0;
  --white:     #ffffff;
  --gray-lt:   #f8f4f0;
  --gray-md:   #8a7060;
  --text:      #1e1008;
  --font-head: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius:    8px;
  --shadow:    0 4px 24px rgba(44,24,16,.12);
  --shadow-lg: 0 8px 48px rgba(44,24,16,.18);
  --max-w:     1180px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dk); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--brown);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

/* ── Utility ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,82,26,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--orange);
}
.btn-dark {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.btn-dark:hover {
  background: var(--brown-mid);
  border-color: var(--brown-mid);
  color: var(--white);
}
.btn-lg { padding: 18px 42px; font-size: 1.1rem; }

.tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.section-label {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-orange { color: var(--orange); }
.bg-brown { background: var(--brown); }
.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }

/* ── Top Bar ── */
.topbar {
  background: var(--brown);
  color: var(--cream);
  font-size: .85rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--cream); }
.topbar a:hover { color: var(--orange-lt); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }

/* ── Navigation ── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(44,24,16,.1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo span:first-child {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--brown);
}
.nav-logo span:last-child {
  font-size: .72rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: var(--brown);
  font-size: .92rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--cream);
  color: var(--orange);
}
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  transition: all var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,24,16,.82) 0%,
    rgba(44,24,16,.55) 50%,
    rgba(44,24,16,.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 18px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--orange-lt);
}
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badge {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .85rem;
  color: rgba(255,255,255,.9);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.6); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--brown);
  padding: 26px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: .9rem;
  font-weight: 500;
}
.trust-item svg { width: 22px; height: 22px; fill: var(--orange-lt); flex-shrink: 0; }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e8ddd4;
  border-radius: 12px;
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; fill: var(--orange); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: .95rem; color: var(--gray-md); }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--orange);
}
.service-card .learn-more:hover { gap: 10px; }

/* ── Why Us / Features ── */
.features-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.features-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.features-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.features-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--brown);
  color: var(--white);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: .9rem;
}
.features-img-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--orange-lt);
}
.feature-list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-check {
  width: 32px; height: 32px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-check svg { width: 16px; height: 16px; fill: var(--white); }
.feature-item h4 { margin-bottom: 4px; }
.feature-item p { font-size: .9rem; color: var(--gray-md); margin: 0; }

/* ── Service Area ── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 36px;
}
.area-chip {
  background: var(--white);
  border: 1.5px solid #e0d0c0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--brown);
  text-align: center;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.area-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--cream);
}
.area-chip svg { width: 14px; height: 14px; fill: var(--orange); }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 40px auto 0; }
.faq-item {
  border: 1px solid #e0d0c0;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  transition: background var(--transition);
  gap: 12px;
}
.faq-question:hover { background: var(--cream); }
.faq-question.open { background: var(--cream); color: var(--orange); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; transition: transform var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
  background: var(--cream);
  font-size: .95rem;
  color: var(--gray-md);
}
.faq-answer.open { max-height: 400px; padding: 16px 24px 20px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=60') center/cover no-repeat;
  opacity: .08;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,24,16,.55);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}
.gallery-item.featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--brown-lt));
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px; height: 80px;
  background: var(--orange);
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 auto 20px;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: .88rem; color: var(--gray-md); }

/* ── Contact Form ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d8c8b4;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--gray-lt);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,82,26,.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }

.contact-info-card {
  background: var(--brown);
  border-radius: 16px;
  padding: 40px 36px;
  color: var(--cream);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(212,82,26,.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 22px; height: 22px; fill: var(--orange-lt); }
.contact-detail strong { display: block; color: var(--white); font-size: .9rem; margin-bottom: 2px; }
.contact-detail span { font-size: .9rem; color: rgba(255,255,255,.7); }
.contact-detail a { color: var(--orange-lt); }
.contact-detail a:hover { color: var(--white); }

/* ── Cost Guide ── */
.cost-table-wrap {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
}
.cost-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid #e8ddd4;
}
.cost-row:last-child { border-bottom: none; }
.cost-row.header {
  background: var(--brown);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
}
.cost-row:not(.header):hover { background: var(--cream); }
.cost-cell {
  padding: 16px 24px;
  font-size: .95rem;
  display: flex;
  align-items: center;
}
.cost-row.header .cost-cell { color: var(--white); font-size: .85rem; letter-spacing: .04em; }
.cost-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
}
.badge-green { background: #dcfce7; color: #15803d; }
.badge-yellow { background: #fef9c3; color: #a16207; }
.badge-red { background: #fee2e2; color: #b91c1c; }

/* ── Disclaimer / Note blocks ── */
.note-box {
  background: var(--cream);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: .92rem;
  color: var(--brown-lt);
}
.note-box strong { color: var(--brown); }

/* ── Thank You page ── */
.thankyou-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  text-align: center;
  padding: 40px 24px;
}
.thankyou-card {
  background: var(--white);
  border-radius: 20px;
  padding: 60px 48px;
  max-width: 560px;
  box-shadow: var(--shadow-lg);
}
.check-circle {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.check-circle svg { width: 40px; height: 40px; fill: var(--white); }
.thankyou-card h1 { font-size: 2rem; margin-bottom: 14px; }
.thankyou-card p { color: var(--gray-md); margin-bottom: 28px; }

/* ── Footer ── */
footer {
  background: var(--brown);
  color: rgba(255,255,255,.75);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: .9rem; margin: 14px 0 20px; line-height: 1.65; }
.footer-logo span:first-child {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  display: block;
}
.footer-logo span:last-child {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange-lt);
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: .9rem; }
.footer-col ul li a:hover { color: var(--orange-lt); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .9rem;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--orange-lt); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--orange-lt); }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: var(--orange-lt); }

/* ── Page Headers ── */
.page-header {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1200&q=50') center/cover;
  opacity: .07;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--orange-lt); }
.breadcrumb-sep { color: rgba(255,255,255,.35); }

/* ── Monsoon section ── */
.monsoon-band {
  background: linear-gradient(90deg, #0f1f3d 0%, #1a3a6e 100%);
  padding: 56px 0;
  color: var(--white);
}
.monsoon-band .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.monsoon-band h2 { color: var(--white); }
.monsoon-band p { color: rgba(255,255,255,.8); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--brown-lt); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ── Mobile Nav ── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links, .nav-cta {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 999;
    font-size: 1.2rem;
  }
  .nav-links.open, .nav-cta.open { display: flex; }
  .nav-links.open { padding-bottom: 80px; }
  .nav-cta { position: static; display: flex; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-wrap { grid-template-columns: 1fr; }
  .features-img { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero { height: 220px !important; min-height: 220px !important; overflow: hidden !important; }
  .hero-content h1 { font-size: 1.6rem; }
  .hero-content p { font-size: .95rem; }
  .hero-badge { display: none; }
  .process-steps::before { display: none; }
  .cost-row { grid-template-columns: 1.5fr 1fr; }
  .cost-row .cost-cell:last-child { display: none; }
  .cost-row.header .cost-cell:last-child { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .monsoon-band .container { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.featured { grid-column: span 1; aspect-ratio: 4/3; }
  .topbar-left { display: none; }
}

@media (max-width: 480px) {
  .form-card { padding: 28px 20px; }
  .thankyou-card { padding: 40px 24px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
