/* Sunshine Fence Co. — Florida warmth meets trade credibility */
:root {
  --cream:    #faf8f4;
  --cream-2:  #f4f0e8;
  --forest:   #1b3a2a;
  --forest-2: #255437;
  --gold:     #d4880a;
  --gold-lt:  #e8a020;
  --gold-bg:  rgba(212, 136, 10, 0.10);
  --text:     #1c2720;
  --text-2:   #4a5e52;
  --text-3:   #7a8f83;
  --white:    #ffffff;
  --border:   rgba(27, 58, 42, 0.12);
  --shadow:   0 2px 16px rgba(27, 58, 42, 0.10);
  --shadow-lg:0 8px 40px rgba(27, 58, 42, 0.14);
  --radius:   10px;
  --font-display: 'Fraunces', serif;
  --font-body:    'Satoshi', sans-serif;
  --max:      1140px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY ───────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
h1 em { font-style: italic; color: var(--forest); }
a { color: var(--forest); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

.section-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header .section-tag { margin-bottom: 10px; }
.section-subtitle {
  margin-top: 12px;
  color: var(--text-2);
  font-size: 1.05rem;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s, color .18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-2);
  border-color: var(--forest-2);
  box-shadow: 0 4px 18px rgba(27, 58, 42, 0.25);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--forest);
  color: var(--forest);
}
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ── NAV ─────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.brand-sun { font-size: 1.4rem; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color .18s, background .18s;
}
.nav-links a:hover { color: var(--text); background: var(--cream-2); }
.nav-links .nav-cta {
  background: var(--forest);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 6px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--forest-2); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .2s;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 72px;
  background: var(--cream);
  overflow: hidden;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(212, 136, 10, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 20%, rgba(27, 58, 42, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag { margin-bottom: 16px; }
.hero h1 { margin-bottom: 20px; }
.hero-lede {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-badge {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  background: rgba(27, 58, 42, 0.07);
  padding: 5px 12px;
  border-radius: 100px;
}

/* Fence illustration */
.hero-visual { display: flex; flex-direction: column; gap: 28px; }
.fence-illustration {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  min-height: 160px;
}
.fence-illustration::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: linear-gradient(to top, rgba(27, 58, 42, 0.08), transparent);
  border-radius: 0 0 14px 14px;
}
.fence-post {
  width: 14px;
  height: 110px;
  background: var(--forest);
  border-radius: 3px 3px 2px 2px;
  flex-shrink: 0;
  z-index: 2;
}
.fence-rails {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 28px;
}
.fence-rail {
  height: 6px;
  background: var(--forest-2);
  border-radius: 3px;
  opacity: .55;
}
.fence-pickets {
  display: flex;
  gap: 7px;
  z-index: 1;
  margin: 0 6px;
}
.picket {
  width: 10px;
  height: 88px;
  background: var(--cream);
  border: 1.5px solid var(--forest);
  border-radius: 2px 2px 0 0;
  flex-shrink: 0;
}
.hero-stat-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--forest);
  border-radius: 12px;
  padding: 20px 24px;
}
.hero-stat { text-align: center; }
.hs-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.hs-label {
  display: block;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* ── SERVICES ─────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--cream-2);
  border-top: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .22s, transform .22s;
  position: relative;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.service-card--featured {
  border-color: var(--forest);
  box-shadow: 0 0 0 2px rgba(27,58,42,0.08);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(27,58,42,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}
.service-icon svg { width: 28px; height: 28px; }
.service-icon--pool { background: rgba(14, 116, 181, 0.08); color: #0e74b5; }
.service-icon--hoa  { background: rgba(212, 136, 10, 0.10); color: var(--gold); }
.service-label {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  background: var(--gold-bg);
  padding: 3px 10px;
  border-radius: 100px;
}
.service-card h3 { font-size: 1.2rem; }
.service-card > p { color: var(--text-2); font-size: 0.93rem; line-height: 1.7; }
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 4px;
  flex-grow: 1;
}
.service-features li {
  font-size: 0.87rem;
  color: var(--text-2);
  padding-left: 18px;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 700;
  font-size: 0.8rem;
}
.service-cta {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest);
  margin-top: 8px;
  transition: color .18s;
}
.service-cta:hover { color: var(--gold); }

/* ── WHY US ───────────────────────────────────── */
.why-us {
  padding: 100px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.why-us-left { position: sticky; top: 88px; }
.why-us-left .section-tag { margin-bottom: 12px; }
.why-us-left h2 { margin-bottom: 20px; }
.why-us-body { color: var(--text-2); line-height: 1.8; margin-bottom: 32px; font-size: 1.0rem; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.why-item:last-child { border-bottom: none; }
.why-icon {
  width: 42px;
  height: 42px;
  background: rgba(27,58,42,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}
.why-item h4 { margin-bottom: 4px; font-size: 0.97rem; }
.why-item p  { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; }

/* ── GALLERY ─────────────────────────────────── */
.gallery {
  padding: 100px 0;
  background: var(--forest);
  border-top: 1px solid transparent;
}
.gallery .section-tag { color: var(--gold-lt); }
.gallery .section-header h2 { color: var(--white); }
.gallery .section-subtitle  { color: rgba(255,255,255,0.55); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-card { display: flex; flex-direction: column; gap: 12px; }
.gallery-card--wide { grid-column: 1 / 3; }
.gallery-img-placeholder {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.gallery-img-placeholder:hover { background: rgba(255,255,255,0.09); }
.gallery-img--tall { height: 240px; }
.gallery-img--after { background: rgba(27,58,42,0.5); }
.gallery-img--wide { height: 200px; }
.gallery-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.gallery-placeholder-inner--after { color: rgba(212, 136, 10, 0.6); }
.gallery-caption .gallery-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold-lt);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.gallery-caption p { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.gallery-cta-row {
  margin-top: 40px;
  text-align: center;
}
.gallery-note {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
}
.gallery-note a { color: var(--gold-lt); text-decoration: underline; }
.gallery-note a:hover { color: var(--white); }

/* ── SERVICE AREA ─────────────────────────────── */
.service-area {
  padding: 100px 0;
  background: var(--cream-2);
  border-top: 1px solid var(--border);
}
.service-area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-area-text .section-tag { margin-bottom: 12px; }
.service-area-text h2 { margin-bottom: 18px; }
.sa-body { color: var(--text-2); line-height: 1.8; margin-bottom: 32px; }
.area-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}
.area-col h4 { margin-bottom: 12px; font-size: 0.88rem; text-transform: uppercase; letter-spacing: .1em; color: var(--forest); }
.area-col ul { list-style: none; }
.area-col li { font-size: 0.9rem; color: var(--text-2); padding: 4px 0; border-bottom: 1px solid rgba(27,58,42,0.06); }
.area-col li:last-child { border-bottom: none; }
.sa-note { font-size: 0.88rem; color: var(--text-3); }
.sa-note a { color: var(--forest); text-decoration: underline; }

/* Map visual */
.service-area-map { display: flex; align-items: center; justify-content: center; }
.map-visual { width: 100%; }
.map-bg {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.map-coverage-circle {
  position: absolute;
  width: 280px; height: 280px;
  border: 2px dashed rgba(27,58,42,0.15);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.map-coverage-circle--2 {
  width: 180px; height: 180px;
  border-color: rgba(212,136,10,0.2);
  border-style: solid;
}
.map-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  z-index: 2;
  position: relative;
}
.map-label--orlando { align-self: flex-end; }
.map-dot {
  width: 10px; height: 10px;
  background: var(--forest);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--forest);
}
.map-dot--secondary { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  z-index: 3;
  color: var(--forest);
}
.map-pin--cocoa { bottom: 80px; right: 48px; }
.map-pin--orlando { top: 60px; left: 52px; color: var(--gold); }
.map-pin span { font-size: 0.72rem; font-weight: 700; }
.map-caption {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 14px;
}

/* ── CONTACT FORM ─────────────────────────────── */
.contact-form-section {
  padding: 100px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-left { position: sticky; top: 88px; }
.contact-left .section-tag { margin-bottom: 12px; }
.contact-left h2 { margin-bottom: 18px; }
.contact-body { color: var(--text-2); line-height: 1.8; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-2);
}
.contact-detail svg { color: var(--forest); flex-shrink: 0; }
.contact-detail a { color: var(--text); font-weight: 500; }
.contact-detail a:hover { color: var(--forest); }

/* Form */
.lead-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 20px; }
.form-row--two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.req { color: var(--gold); }
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--text-3); }
input:focus, textarea:focus, select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(27,58,42,0.08);
}
textarea { resize: vertical; min-height: 90px; }
.select-wrap { position: relative; }
.select-wrap select {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 40px 11px 14px;
  appearance: none;
  width: 100%;
  cursor: pointer;
  outline: none;
  transition: border-color .18s;
}
.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-2);
}
.radio-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-2);
  font-weight: 400;
}
.radio-option input[type="radio"] { accent-color: var(--forest); width: 16px; height: 16px; }
.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: #dc2626;
  margin-bottom: 16px;
}
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 12px;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(27,58,42,0.1);
  color: var(--forest);
  font-size: 1.5rem;
  border-radius: 50%;
  margin-bottom: 16px;
}
.form-success h3 { font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { color: var(--text-2); font-size: 0.93rem; }

/* ── FOOTER ───────────────────────────────────── */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.brand-sun { color: var(--gold-lt); }
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}
.footer-links-col h5,
.footer-contact-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 16px;
}
.footer-links-col ul,
.footer-contact-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links-col li, .footer-contact-col li { font-size: 0.88rem; }
.footer-links-col a, .footer-contact-col a { color: rgba(255,255,255,0.55); transition: color .18s; }
.footer-links-col a:hover, .footer-contact-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-card--wide { grid-column: 1 / 3; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 28px;
    gap: 4px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 14px; width: 100%; }
  .nav-links .nav-cta { margin-left: 0; margin-top: 4px; text-align: center; }
  .nav-toggle { display: flex; }
  .site-nav { position: relative; }

  .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-us-left { position: static; }
  .service-area-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-left { position: static; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card--wide { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row--two { grid-template-columns: 1fr; }
  .lead-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero { padding: 56px 0 48px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .services, .why-us, .gallery, .service-area, .contact-form-section { padding: 72px 0; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .area-columns { grid-template-columns: 1fr; }
}
