/* =========================================================
   PIT Paving Services — Stylesheet
   ========================================================= */

:root {
  --primary: #14242e;
  --primary-dark: #0d1a21;
  --primary-light: #1e3a49;
  --accent: #e8a33d;
  --accent-dark: #d08e28;
  --accent-light: #f2b95c;
  --text: #3c4650;
  --heading: #14242e;
  --light: #f5f6f4;
  --white: #ffffff;
  --border: #e3e5e1;
  --shadow: 0 12px 30px rgba(13, 26, 33, 0.10);
  --shadow-lg: 0 24px 50px rgba(13, 26, 33, 0.18);
  --radius: 14px;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; max-width: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--heading); line-height: 1.2; font-weight: 700; overflow-wrap: break-word; }

video { max-width: 100%; height: auto; }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* Prevent grid/flex children from forcing the page wider than the screen */
.hero-content > *, .intro-grid > *, .why-grid > *, .quote-grid > *,
.services-grid > *, .stats-grid > *, .footer-grid > *, .contact-cards > *,
.check-list li { min-width: 0; }

/* Long contact strings never push the layout wider */
.topbar-contact a, .footer-contact a, .contact-card p { overflow-wrap: anywhere; }

.section { padding: 90px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-tag::before { content: ''; width: 28px; height: 2px; background: var(--accent); display: inline-block; }
.section-tag.light { color: var(--accent-light); }
.section-tag.light::before { background: var(--accent-light); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.section-head p { font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-accent { background: var(--accent); color: var(--primary-dark); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(232, 163, 61, 0.35); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.6); }
.btn-outline:hover { background: var(--white); color: var(--primary-dark); }
.btn-light { background: var(--white); color: var(--primary-dark); }
.btn-light:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* =========================================================
   Top bar
   ========================================================= */
.topbar { background: var(--primary-dark); color: #cdd5da; font-size: 0.85rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 0; flex-wrap: wrap; }
.topbar-tag { display: inline-flex; align-items: center; gap: 8px; }
.topbar-tag i { color: var(--accent); }
.topbar-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s; }
.topbar-contact a i { color: var(--accent); }
.topbar-contact a:hover { color: var(--accent-light); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(13, 26, 33, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 46px; height: 46px;
  object-fit: contain;
  border-radius: 10px;
}
.brand-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--primary);
  color: var(--accent);
  border-radius: 10px;
  font-size: 1.3rem;
}
.brand-text { font-family: var(--font-head); font-size: 1.25rem; line-height: 1; color: var(--heading); }
.brand-text strong { color: var(--accent-dark); font-weight: 800; display: block; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.nav-list { display: flex; align-items: center; gap: 26px; }
.nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--heading);
  padding: 8px 2px;
  position: relative;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--accent-dark); }

.has-dropdown { position: relative; }
.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: -12px;
  min-width: 250px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 9px 14px;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: 6px;
  transition: all 0.25s;
}
.dropdown li a:hover { background: var(--light); color: var(--accent-dark); padding-left: 20px; }

.btn-quote { padding: 11px 22px; font-size: 0.88rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 3px; background: var(--heading); border-radius: 3px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13, 26, 33, 0.92) 0%, rgba(13, 26, 33, 0.72) 45%, rgba(13, 26, 33, 0.35) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 120px 0; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-light);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 163, 61, 0.4);
  padding: 9px 18px;
  border-radius: 40px;
  margin-bottom: 22px;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  font-weight: 800;
  margin-bottom: 18px;
}
.hero-content h1 span { color: var(--accent); }
.hero-sub { color: #dbe2e7; font-size: 1.12rem; max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 42px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* =========================================================
   Intro
   ========================================================= */
.intro-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; }
.intro-media { position: relative; }
.intro-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.intro-badge {
  position: absolute; bottom: -22px; right: -18px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
}
.intro-badge strong { font-family: var(--font-head); font-size: 2rem; font-weight: 800; line-height: 1; }
.intro-badge span { font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; line-height: 1.3; text-transform: uppercase; }
.intro-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 18px; }
.intro-copy p { margin-bottom: 14px; }
.check-list { margin: 22px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; color: var(--heading); font-size: 0.95rem; }
.check-list i { color: var(--accent-dark); font-size: 1.1rem; margin-top: 3px; }

/* =========================================================
   Stats
   ========================================================= */
.stats { background: var(--primary); color: var(--white); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 30px; text-align: center; }
.stat i { font-size: 1.9rem; color: var(--accent); margin-bottom: 10px; }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--white); }
.stat span { color: #b9c4cc; font-size: 0.9rem; }

/* =========================================================
   Services
   ========================================================= */
.services { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-img { overflow: hidden; aspect-ratio: 4/3; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 1.12rem; margin-bottom: 10px; }
.service-body p { font-size: 0.92rem; margin-bottom: 16px; flex: 1; }
.service-link {
  color: var(--accent-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s, color 0.3s;
}
.service-link:hover { gap: 14px; color: var(--primary); }

/* =========================================================
   Why choose us
   ========================================================= */
.why { background: var(--primary-dark); color: #c7d1d8; }
.why-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
.why-copy h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 20px; }
.why-copy p { margin-bottom: 14px; color: #b9c4cc; }
.why-copy strong { color: var(--accent-light); }
.why-copy em { color: var(--accent-light); font-style: normal; }
.why-points { margin: 26px 0 30px; display: grid; gap: 18px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-point i {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(232, 163, 61, 0.15);
  color: var(--accent);
  border-radius: 10px;
  font-size: 1.15rem;
}
.why-point strong { display: block; font-family: var(--font-head); color: var(--white); font-size: 1rem; }
.why-point span { font-size: 0.9rem; color: #9fadb6; }
.why-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* =========================================================
   Quote form
   ========================================================= */
.quote-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.quote-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 16px; }
.quote-copy > p { margin-bottom: 30px; }
.quote-contact { display: grid; gap: 20px; }
.quote-contact > div { display: flex; gap: 16px; align-items: flex-start; }
.quote-contact i {
  width: 50px; height: 50px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--light);
  color: var(--accent-dark);
  border-radius: 10px;
  font-size: 1.2rem;
}
.quote-contact span { font-family: var(--font-head); font-weight: 600; color: var(--heading); font-size: 0.9rem; line-height: 1.5; text-transform: uppercase; }
.quote-contact a { color: var(--text); font-weight: 500; font-family: var(--font-body); text-transform: none; }
.quote-contact a:hover { color: var(--accent-dark); }

.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 36px;
}
.form-head { margin-bottom: 24px; }
.form-head h3 { font-size: 1.35rem; margin-bottom: 6px; }
.form-head p { font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-head); font-weight: 500; font-size: 0.85rem; color: var(--heading); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--heading);
  background: var(--light);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 163, 61, 0.15);
}
.form-group textarea { resize: vertical; }
.form-group input.invalid, .form-group textarea.invalid { border-color: #d64545; }
.error-msg { display: none; color: #d64545; font-size: 0.8rem; margin-top: 6px; }
.form-group.has-error .error-msg { display: block; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: #e7f6ec;
  color: #1d7a3e;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
}
.form-success.show { display: block; }

/* =========================================================
   Contact cards
   ========================================================= */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 22px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.contact-card i {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  background: var(--light);
  color: var(--accent-dark);
  border-radius: 50%;
  font-size: 1.4rem;
  transition: all 0.3s;
}
.contact-card:hover i { background: var(--accent); color: var(--primary-dark); }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-card p { font-size: 0.92rem; font-weight: 600; color: var(--heading); word-break: break-word; }

/* =========================================================
   Areas
   ========================================================= */
.areas { background: linear-gradient(rgba(20, 36, 46, 0.92), rgba(20, 36, 46, 0.92)), url('../IMG-20260801-WA0027.jpg') center/cover fixed; color: #dbe2e7; text-align: center; }
.areas-inner h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 16px; }
.areas-inner > p { max-width: 680px; margin: 0 auto 26px; color: #b9c4cc; }
.areas-inner > p strong { color: var(--accent-light); }
.areas-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 32px; }
.areas-tags span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 18px;
  border-radius: 40px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--white);
  transition: all 0.3s;
}
.areas-tags span:hover { background: var(--accent); color: var(--primary-dark); border-color: var(--accent); }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner { background: linear-gradient(90deg, var(--accent-dark), var(--accent)); padding: 54px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-inner h2 { color: var(--primary-dark); font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cta-inner p { color: rgba(13, 26, 33, 0.75); font-size: 1.02rem; }

/* =========================================================
   Videos
   ========================================================= */
.videos { background: var(--white); }
.videos-player { max-width: 900px; margin: 0 auto; }
.videos-player video {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}
.videos-count {
  text-align: center;
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--heading);
}
.videos-count i { color: var(--accent-dark); margin-right: 8px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--primary-dark); color: #aeb9c2; padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 44px; padding-bottom: 50px; }
.brand-footer { margin-bottom: 18px; }
.brand-footer .brand-text { color: var(--white); }
.footer-about p { font-size: 0.9rem; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--white);
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--accent); }
.footer-links li, .footer-contact li { margin-bottom: 11px; }
.footer-links a { font-size: 0.9rem; transition: color 0.3s, padding-left 0.3s; }
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact li { display: flex; gap: 10px; align-items: center; font-size: 0.9rem; }
.footer-contact i { color: var(--accent); width: 16px; }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 20px 0; }
.footer-bottom p { text-align: center; font-size: 0.85rem; color: #8b98a1; }

/* =========================================================
   WhatsApp float
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom)); right: calc(24px + env(safe-area-inset-right));
  z-index: 999;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  font-size: 1.7rem;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .main-nav { gap: 18px; }
  .nav-list { gap: 20px; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .intro-grid, .why-grid, .quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-badge { right: 8px; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 74px; }
  .section { padding: 64px 0; }

  .topbar { font-size: 0.8rem; }
  .topbar-inner { justify-content: center; gap: 8px; }
  .topbar-contact { gap: 16px; }

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

  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 92px 24px 30px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 14px; width: 100%; }
  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-left: 3px solid var(--accent);
    padding: 6px 0 6px 12px;
    margin-top: 10px;
    display: none;
    min-width: 0;
    background: var(--light);
  }
  .has-dropdown.open .dropdown { display: block; }
  .btn-quote { width: 100%; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .check-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .hero { min-height: 78vh; }
  .hero-content { padding: 96px 0 72px; }
  .hero-sub { font-size: 1.05rem; }

  .intro-badge { right: 8px; bottom: -16px; }
  .quote-form { padding: 28px 22px; }

  .cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }

  /* Background-attachment: fixed is buggy/janky on mobile — disable it */
  .areas { background-attachment: scroll; }

  .whatsapp-float { bottom: calc(16px + env(safe-area-inset-bottom)); right: calc(16px + env(safe-area-inset-right)); }
}

@media (max-width: 520px) {
  .section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .quote-form { padding: 26px 18px; }
  .intro-badge { padding: 14px 16px; }
  .intro-badge strong { font-size: 1.5rem; }
  .contact-cards { grid-template-columns: 1fr; gap: 18px; }

  /* Topbar becomes icon-only so long email/phone text can't overflow */
  .topbar-contact a { font-size: 0; }
  .topbar-contact a i { font-size: 0.9rem; }

  .hero { min-height: 72vh; }
  .hero-eyebrow { font-size: 0.78rem; padding: 8px 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .btn { padding: 13px 22px; }
  .btn-light { width: 100%; }

  .brand-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-text { font-size: 1.08rem; }

  .service-body { padding: 20px; }
  .section-head h2 { font-size: 1.7rem; }
  .intro-copy h2, .why-copy h2, .quote-copy h2, .areas-inner h2, .cta-inner h2 { font-size: 1.6rem; }
  .section-tag { font-size: 0.74rem; }

  .stats-grid { gap: 22px; }
  .stat strong { font-size: 1.8rem; }
  .stat i { font-size: 1.6rem; }

  .footer-bottom p { font-size: 0.78rem; }
}

/* Extra-small phones (iPhone SE 1st gen / old Androids at 320px) */
@media (max-width: 360px) {
  .container { width: min(1200px, 94%); }
  .btn { white-space: normal; text-align: center; }
  .hero-content h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .brand-text { font-size: 1rem; }
  .main-nav { width: 88vw; padding: 86px 20px 26px; }
  .contact-card { padding: 28px 16px; }
  .intro-badge { right: 4px; padding: 12px 14px; }
  .intro-badge strong { font-size: 1.35rem; }
}

/* Short screens: drop the decorative scroll-down so it never covers content */
@media (max-height: 620px) {
  .hero-scroll { display: none; }
}
