/* ============================================================
   Naples Garage Door Pros — Global Stylesheet
   Primary: #0a2540  Accent: #f5821f
   Fonts: DM Serif Display (headings) | Inter (body)
   ============================================================ */

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

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

:root {
  --navy:   #0a2540;
  --navy2:  #0e3260;
  --orange: #f5821f;
  --orange2:#d96e10;
  --light:  #f7f8fa;
  --white:  #ffffff;
  --gray:   #6b7280;
  --border: #e5e7eb;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(10,37,64,.12);
  --transition: .25s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.25;
  color: var(--navy);
}

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange2); }

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

ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utility ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,130,31,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy2);
  color: var(--white);
  transform: translateY(-2px);
}

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 620px;
}

.text-center { text-align: center; }
.text-center .section-intro { margin: 0 auto; }

/* ── Top Bar ── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 500;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--orange); }
.top-bar a:hover { color: var(--white); }
.top-bar-right { display: flex; gap: 20px; align-items: center; }

/* ── Header / Nav ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(10,37,64,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 26px; height: 26px; fill: var(--orange); }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
}
.logo-text span { font-size: .75rem; color: var(--gray); font-weight: 500; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.site-nav a:hover, .site-nav a.active {
  background: var(--light);
  color: var(--orange);
}
.nav-cta { margin-left: 10px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 20px;
  gap: 4px;
}
.mobile-nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ── Hero ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,.82) 0%, rgba(10,37,64,.55) 60%, rgba(0,0,0,.35) 100%);
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,130,31,.2);
  border: 1px solid rgba(245,130,31,.45);
  color: #fbb96a;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.65);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 18px; height: 18px; fill: rgba(255,255,255,.65); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* Sub-page hero */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 72px 0 60px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 5vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--orange); }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: .88rem;
  font-weight: 600;
}
.trust-item svg { width: 20px; height: 20px; fill: var(--orange); flex-shrink: 0; }

/* ── Sections ── */
section { padding: 88px 0; }

/* ── Services Grid ── */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color 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);
  transform-origin: top;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--orange);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(245,130,31,.12);
  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 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { font-size: .92rem; color: var(--gray); line-height: 1.65; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--orange);
}
.service-card .learn-more svg { width: 14px; height: 14px; fill: var(--orange); transition: transform var(--transition); }
.service-card:hover .learn-more svg { transform: translateX(4px); }

/* ── Why Us ── */
.why-us { background: var(--light); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 0;
}
.why-list { margin-top: 32px; display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-num {
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.why-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.why-item p { font-size: .9rem; color: var(--gray); }
.why-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.why-image:hover img { transform: scale(1.04); }

/* ── Service Areas ── */
.service-areas { background: var(--navy); color: var(--white); }
.service-areas .section-title { color: var(--white); }
.service-areas .section-intro { color: rgba(255,255,255,.75); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 44px;
}
.area-chip {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  transition: background var(--transition), border-color var(--transition);
}
.area-chip:hover { background: rgba(245,130,31,.15); border-color: var(--orange); }
.area-chip svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; }

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, #e06800 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.05rem; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-list { margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--light); }
.faq-question.open { background: var(--navy); color: var(--white); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; 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;
  background: var(--light);
}
.faq-answer.open { max-height: 400px; }
.faq-answer p { padding: 18px 24px; font-size: .95rem; color: var(--gray); line-height: 1.75; }

/* ── Cost Guide Table ── */
.cost-table-wrap { overflow-x: auto; margin-top: 40px; }
.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.cost-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
}
.cost-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
}
.cost-table tr:nth-child(even) td { background: var(--light); }
.cost-table tr:hover td { background: rgba(245,130,31,.06); }
.price-range { font-weight: 700; color: var(--orange); }

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,37,64,.85));
  color: var(--white);
  padding: 28px 18px 16px;
  font-size: .85rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ── Contact / Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-top: 52px;
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 20px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,130,31,.12);
  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); }
.contact-detail h4 { font-size: .88rem; color: var(--gray); font-weight: 600; margin-bottom: 2px; font-family: 'Inter', sans-serif; }
.contact-detail p, .contact-detail a { font-size: 1rem; font-weight: 700; color: var(--navy); }
.contact-detail a:hover { color: var(--orange); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.5rem; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--navy);
  background: var(--white);
  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(245,130,31,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; }

/* ── Thank You Page ── */
.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.thankyou-card {
  max-width: 560px;
  padding: 60px 40px;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(245,130,31,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.thankyou-icon svg { width: 42px; height: 42px; fill: var(--orange); }
.thankyou-card h1 { font-size: 2.2rem; margin-bottom: 14px; }
.thankyou-card p { color: var(--gray); font-size: 1rem; margin-bottom: 32px; }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-top: 16px; color: rgba(255,255,255,.65); max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.footer-logo-icon { width: 38px; height: 38px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.footer-logo-icon svg { width: 22px; height: 22px; fill: var(--white); }
.footer-logo strong { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; font-family: 'DM Serif Display', serif; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--orange); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item svg { width: 17px; height: 17px; fill: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: .9rem; color: rgba(255,255,255,.7); }
.footer-contact-item a { color: rgba(255,255,255,.85); font-size: .9rem; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--orange); }

/* ── Services Page Detail ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.service-detail-text p { color: var(--gray); font-size: .95rem; line-height: 1.75; margin-bottom: 14px; }
.service-bullets { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.service-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--navy);
  font-weight: 500;
}
.service-bullets li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-detail-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/11;
  box-shadow: var(--shadow);
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Cost Guide ── */
.cost-intro-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.cost-card {
  background: var(--light);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
}
.cost-card .price { font-size: 1.7rem; font-weight: 700; color: var(--orange); font-family: 'DM Serif Display', serif; }
.cost-card .label { font-size: .85rem; color: var(--gray); margin-top: 6px; font-weight: 600; }

/* ── Scroll-reveal animation helper ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { aspect-ratio: 16/9; max-height: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .hero { height: 220px !important; min-height: 220px !important; overflow: hidden !important; }
  .hero-content { padding: 0 16px; }
  .hero h1 { font-size: 1.6rem; }
  .hero-sub { font-size: .9rem; margin-bottom: 20px; }
  .hero-actions .btn { padding: 11px 20px; font-size: .85rem; }
  .hero-scroll { display: none; }
  .hero-badge { font-size: .7rem; padding: 5px 12px; margin-bottom: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .trust-bar .container { gap: 20px; }
  .cost-intro-cards { grid-template-columns: 1fr 1fr; }
  .service-detail { padding: 48px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cost-intro-cards { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .top-bar .container { flex-direction: column; align-items: flex-start; gap: 4px; }
}
