/* ============================================================
   CLEANER BOYS — Global Stylesheet
   Palette: Navy #0F172A | Teal #14B8A6 | Orange #F97316 | White #FFFFFF
   Fonts: Poppins (headings) | Inter (body)
   ============================================================ */

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

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

:root {
  --navy:        #0F172A;
  --navy-mid:    #1E293B;
  --navy-light:  #334155;
  --teal:        #14B8A6;
  --teal-light:  #5EEAD4;
  --teal-dim:    rgba(20,184,166,0.12);
  --orange:      #F97316;
  --orange-dim:  rgba(249,115,22,0.12);
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-600:    #475569;
  --gray-800:    #1E293B;
  --green:       #22C55E;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Poppins', sans-serif; font-weight: 800; line-height: 1.1; }
h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 700; }

/* ── UTILITIES ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--teal-dim); color: var(--teal);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 0.3rem 0.85rem; border-radius: 30px; margin-bottom: 0.9rem;
  border: 1px solid rgba(20,184,166,0.25);
}
.section-title {
  font-family: 'Poppins', sans-serif; font-size: clamp(1.85rem, 3.8vw, 2.8rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1rem; letter-spacing: -0.5px;
}
.section-sub { color: var(--gray-600); font-size: 1rem; line-height: 1.75; max-width: 560px; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  background: var(--orange); color: var(--white);
  text-decoration: none; padding: 0.85rem 2rem; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.92rem;
  transition: all 0.22s; border: none; cursor: pointer; letter-spacing: 0.2px;
}
.btn-primary:hover { background: #ea6c0e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.35); }

.btn-teal {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  background: var(--teal); color: var(--white);
  text-decoration: none; padding: 0.85rem 2rem; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.92rem;
  transition: all 0.22s; border: none; cursor: pointer;
}
.btn-teal:hover { background: #0ea89a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20,184,166,0.35); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  background: transparent; color: var(--white);
  text-decoration: none; padding: 0.85rem 2rem; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.92rem;
  border: 1.5px solid rgba(255,255,255,0.3); transition: all 0.22s; cursor: pointer;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--navy);
  text-decoration: none; padding: 0.85rem 2rem; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.92rem;
  border: 1.5px solid var(--gray-200); transition: all 0.22s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.65rem; cursor: pointer; text-decoration: none;
}
.nav-logo-img { height: 44px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.5px; color: var(--white);
}
.nav-logo-text span { color: var(--teal); }
.nav-links { display: flex; gap: 0.1rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  padding: 0.5rem 0.9rem; border-radius: 6px;
  transition: all 0.2s; cursor: pointer; white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--teal); }
.nav-cta-link {
  background: var(--orange) !important; color: var(--white) !important;
  padding: 0.5rem 1.3rem !important; font-weight: 700 !important; border-radius: 8px !important;
  margin-left: 0.4rem;
}
.nav-cta-link:hover { background: #ea6c0e !important; transform: translateY(-1px); }
.nav-phone {
  color: var(--teal) !important; font-weight: 600 !important;
}

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--navy-mid); z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 5% 1.5rem;
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu ul { list-style: none; }
.nav-mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-mobile-menu ul li a {
  display: block; padding: 0.9rem 0; color: rgba(255,255,255,0.8);
  text-decoration: none; font-size: 1rem; font-weight: 500; cursor: pointer;
  transition: color 0.2s;
}
.nav-mobile-menu ul li a:hover { color: var(--teal); }
.nav-mobile-cta {
  margin-top: 1rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.nav-mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.85rem 1rem; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none; text-align: center;
}
.nav-mobile-cta .call-btn { background: var(--teal); color: var(--white); }
.nav-mobile-cta .quote-btn { background: var(--orange); color: var(--white); }

/* ── HERO PAGES — shared dark header ── */
.page-hero {
  background: var(--navy); padding: 5rem 5% 4rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(20,184,166,0.1) 0%, transparent 70%);
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero .section-title { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--gray-100); padding: 1.1rem 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap; border-bottom: 1px solid var(--gray-200);
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.84rem; font-weight: 600; color: var(--gray-600);
}
.trust-item a { color: inherit; text-decoration: none; }
.trust-item a:hover { color: var(--teal); }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 4rem 5% 2rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800;
  color: var(--white); margin-bottom: 0.7rem; cursor: pointer; letter-spacing: -0.3px;
}
.footer-logo span { color: var(--teal); }
.footer-desc { color: rgba(255,255,255,0.38); font-size: 0.84rem; line-height: 1.75; }
.footer-heading {
  color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  color: rgba(255,255,255,0.42); text-decoration: none; font-size: 0.84rem;
  transition: color 0.2s; cursor: pointer;
}
.footer-links a:hover { color: var(--teal); }
.footer-contact-item { display: flex; gap: 0.6rem; color: rgba(255,255,255,0.42); font-size: 0.84rem; margin-bottom: 0.65rem; }
.footer-contact-item a { color: inherit; text-decoration: none; }
.footer-contact-item a:hover { color: var(--teal); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a {
  display: flex; align-items: center; gap: 0.4rem; padding: 0.45rem 0.9rem;
  border-radius: 7px; text-decoration: none; font-size: 0.78rem; font-weight: 600; color: #fff;
}
.footer-social .ig-btn { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.footer-social .fb-btn { background: #1877f2; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { color: rgba(255,255,255,0.25); font-size: 0.78rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.25); text-decoration: none; font-size: 0.78rem; }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ── STICKY MOBILE BUTTONS ── */
.sticky-mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.7rem 1rem; grid-template-columns: 1fr 1fr; gap: 0.6rem;
}
.sticky-mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.8rem 1rem; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none; color: var(--white);
}
.sticky-mobile-bar .call-sticky { background: var(--teal); }
.sticky-mobile-bar .quote-sticky { background: var(--orange); }

/* ── BEFORE & AFTER ── */
.before-after-section { padding: 5rem 5%; background: var(--off-white); }
.ba-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem;
}
.ba-card { border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-200); background: var(--white); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-side {
  position: relative; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
}
.ba-side.before { background: linear-gradient(135deg, #64748B22, #94A3B822); }
.ba-side.after  { background: linear-gradient(135deg, var(--teal-dim), rgba(20,184,166,0.22)); }
.ba-label {
  position: absolute; bottom: 0.5rem; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.55); color: #fff; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 20px;
}
.ba-card-body { padding: 1rem 1.2rem; }
.ba-card-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.ba-card-desc { font-size: 0.82rem; color: var(--gray-600); margin-top: 0.2rem; }

/* ── PRICING CARDS ── */
.pricing-table { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.1rem; margin-top: 1.6rem; }
.pkg-card {
  border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 1.4rem 1.3rem;
  transition: all 0.25s; position: relative; background: var(--white);
}
.pkg-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(20,184,166,0.12); }
.pkg-card.featured {
  border-color: var(--teal); background: linear-gradient(135deg, #F0FDFA, var(--white));
}
.pkg-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--white); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 0.22rem 0.8rem;
  border-radius: 0 0 8px 8px;
}
.pkg-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.25rem; }
.pkg-rooms { font-size: 0.78rem; color: var(--gray-600); margin-bottom: 0.8rem; }
.pkg-price { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--orange); line-height: 1; }
.pkg-price span { font-size: 0.9rem; font-weight: 500; color: var(--gray-600); }
.pkg-includes { list-style: none; margin-top: 0.8rem; display: flex; flex-direction: column; gap: 0.45rem; }
.pkg-includes li { font-size: 0.78rem; color: var(--gray-600); display: flex; align-items: flex-start; gap: 0.45rem; }
.pkg-includes li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── SERVICE FULL CARD ── */
.services-full { padding: 4rem 5%; }
.service-full-card {
  border: 1px solid var(--gray-200); border-radius: 16px; padding: 2.2rem;
  margin-bottom: 2rem; display: grid; grid-template-columns: auto 1fr auto;
  gap: 2rem; align-items: start; transition: all 0.25s; cursor: pointer; background: var(--white);
}
.service-full-card:hover {
  border-color: rgba(20,184,166,0.4); box-shadow: 0 8px 30px rgba(15,23,42,0.08); transform: translateY(-2px);
}
.sfc-icon {
  width: 64px; height: 64px; border-radius: 14px; background: var(--teal-dim);
  display: flex; align-items: center; justify-content: center; font-size: 1.9rem; flex-shrink: 0;
}
.sfc-body h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--navy); }
.sfc-body p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1rem; }
.sfc-includes { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sfc-tag {
  background: var(--gray-100); color: var(--gray-600); font-size: 0.76rem;
  font-weight: 500; padding: 0.28rem 0.7rem; border-radius: 20px; border: 1px solid var(--gray-200);
}
.sfc-right { text-align: right; flex-shrink: 0; min-width: 130px; }
.sfc-price { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--orange); line-height: 1; }
.sfc-price-label { font-size: 0.72rem; color: var(--gray-400); margin-bottom: 0.8rem; }
.price-disclaimer {
  font-size: 0.73rem; color: var(--gray-400); line-height: 1.55; margin-top: 0.5rem;
  font-style: italic;
}

/* ── CONTACT FORM ── */
.contact-body { padding: 4rem 5%; display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem; }
.contact-icon {
  width: 42px; height: 42px; border-radius: 10px; background: var(--teal-dim);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-label { font-weight: 700; font-size: 0.85rem; color: var(--navy); margin-bottom: 0.2rem; }
.contact-item-val { color: var(--gray-600); font-size: 0.88rem; }
.contact-item-val a { color: inherit; text-decoration: none; }
.contact-item-val a:hover { color: var(--teal); }
.contact-form-card {
  background: var(--white); border-radius: 16px; padding: 2.4rem;
  border: 1px solid var(--gray-200); box-shadow: 0 4px 24px rgba(15,23,42,0.06);
}
.contact-form-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy);
  margin-bottom: 0.4rem; letter-spacing: 0.2px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: 8px;
  border: 1.5px solid var(--gray-200); background: var(--off-white);
  color: var(--navy); font-family: 'Inter', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 0.95rem; background: var(--orange); color: var(--white);
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.97rem;
  border: none; border-radius: 8px; cursor: pointer; transition: all 0.22s; margin-top: 0.5rem;
}
.form-submit:hover { background: #ea6c0e; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(249,115,22,0.3); }

/* Estimator */
.estimator-box {
  margin-bottom: 1.2rem; border: 1.5px dashed rgba(20,184,166,0.4);
  border-radius: 12px; padding: 1.1rem 1.3rem; background: rgba(20,184,166,0.03);
}
.estimator-header { display: flex; align-items: center; gap: 0.9rem; }
.estimator-toggle-icon { font-size: 1.3rem; flex-shrink: 0; }
.estimator-title { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.estimator-sub { font-size: 0.76rem; color: var(--gray-400); margin-top: 0.1rem; }
.estimator-toggle-btn {
  margin-left: auto; background: var(--teal); color: var(--white);
  border: none; border-radius: 6px; padding: 0.4rem 0.9rem;
  font-size: 0.78rem; font-weight: 600; cursor: pointer; white-space: nowrap;
  font-family: 'Inter', sans-serif; flex-shrink: 0;
}
.estimator-toggle-btn:hover { background: #0ea89a; }
#estimate-result {
  margin-top: 1rem; padding: 1rem 1.3rem; background: var(--teal-dim);
  border-radius: 10px; border: 1px solid rgba(20,184,166,0.25);
}

/* ── ABOUT PAGE ── */
.about-body { padding: 4.5rem 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.4rem; }
.about-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.92rem; color: var(--gray-600); line-height: 1.65;
}
.about-list li::before {
  content: '✓'; background: var(--teal); color: var(--white);
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-stat-card {
  background: var(--off-white); border-radius: 12px; padding: 1.5rem 1.3rem;
  border: 1px solid var(--gray-200);
}
.about-stat-num { font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--teal); line-height: 1; }
.about-stat-label { font-size: 0.8rem; color: var(--gray-400); margin-top: 0.3rem; }
.about-values { background: var(--off-white); padding: 4rem 5%; }
.about-values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; margin-top: 2.5rem; }
.value-card { background: var(--white); border-radius: 12px; padding: 1.6rem; border: 1px solid var(--gray-200); }
.value-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.value-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.45rem; }
.value-desc { color: var(--gray-600); font-size: 0.85rem; line-height: 1.7; }

/* ── AREAS PAGE ── */
.areas-body { padding: 4rem 5%; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1rem; margin-top: 2rem; }
.area-card {
  border: 1px solid var(--gray-200); border-radius: 10px; padding: 1.2rem 1.4rem;
  display: flex; align-items: center; gap: 0.9rem; transition: all 0.2s; background: var(--white);
}
.area-card:hover { border-color: var(--teal); background: var(--teal-dim); }
.area-card.featured { border-color: var(--teal); background: rgba(20,184,166,0.07); }
.area-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-200); flex-shrink: 0; }
.area-card.featured .area-dot { background: var(--teal); }
.area-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.area-sub { font-size: 0.76rem; color: var(--gray-400); }

/* ── SERVICE DETAIL PANEL ── */
#service-detail-panel { display: none; padding: 3rem 5% 2rem; max-width: 860px; margin: 0 auto; }
.blog-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--teal); font-weight: 600; font-size: 0.88rem; cursor: pointer; margin-bottom: 2rem;
}
.blog-back:hover { text-decoration: underline; }

/* ── BLOG ── */
.blog-body { padding: 4rem 5%; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.8rem; }
.blog-card {
  border: 1px solid var(--gray-200); border-radius: 16px; overflow: hidden;
  transition: all 0.25s; cursor: pointer; background: var(--white);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(15,23,42,0.09); border-color: rgba(20,184,166,0.3); }
.blog-thumb { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; background: var(--gray-100); }
.blog-card-body { padding: 1.5rem; }
.blog-meta { display: flex; gap: 0.8rem; align-items: center; margin-bottom: 0.75rem; flex-wrap: wrap; }
.blog-cat {
  background: var(--teal-dim); color: var(--teal); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; padding: 0.22rem 0.65rem; border-radius: 4px;
}
.blog-date { color: var(--gray-400); font-size: 0.78rem; }
.blog-card-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-excerpt { color: var(--gray-600); font-size: 0.86rem; line-height: 1.7; margin-bottom: 1rem; }
.blog-read-more { color: var(--teal); font-size: 0.83rem; font-weight: 600; }

/* Blog post */
.blog-post-view { display: none; padding: 3rem 5% 5rem; max-width: 820px; margin: 0 auto; }
.blog-post-view.active { display: block; }
.blog-list-view.hidden { display: none; }
.blog-post-title { font-family: 'Poppins', sans-serif; font-size: clamp(1.7rem, 3.5vw, 2.3rem); font-weight: 800; letter-spacing: -0.3px; line-height: 1.15; margin-bottom: 1rem; }
.blog-post-meta { color: var(--gray-400); font-size: 0.84rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-200); }
.blog-post-content h2 { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700; margin: 2rem 0 0.8rem; }
.blog-post-content p { color: var(--gray-600); line-height: 1.82; margin-bottom: 1.2rem; font-size: 0.97rem; }
.blog-post-content ul { color: var(--gray-600); line-height: 1.82; margin-bottom: 1.2rem; padding-left: 1.5rem; font-size: 0.97rem; }
.blog-post-content ul li { margin-bottom: 0.5rem; }
.blog-tip-box {
  background: var(--teal-dim); border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0; padding: 1.2rem 1.4rem; margin: 1.5rem 0;
}

/* ── SEO ELEMENTS (hidden, for crawlers) ── */
.seo-region { position: absolute; left: -9999px; }

/* ── URGENCY BADGE ── */
.urgency-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange-dim); color: var(--orange);
  border: 1px solid rgba(249,115,22,0.3);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 0.38rem 1rem; border-radius: 30px;
}
.urgency-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.35;transform:scale(0.65)} }

/* ─────────────────────────────────
   HOME PAGE SPECIFICS
───────────────────────────────── */
.hero {
  min-height: 72vh; background: var(--navy);
  display: flex; align-items: center; padding: 5rem 5% 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 75% at 75% 55%, rgba(20,184,166,0.15) 0%, transparent 65%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(249,115,22,0.07) 0%, transparent 60%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; width: 100%; max-width: 1240px; margin: 0 auto; position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(20,184,166,0.12); border: 1px solid rgba(20,184,166,0.3);
  color: var(--teal); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.38rem 1rem; border-radius: 30px; margin-bottom: 1.3rem;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); animation: pulse 1.8s ease-in-out infinite;
}
.hero h1 {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05; color: var(--white); letter-spacing: -1px; margin-bottom: 1.3rem;
}
.hero h1 .accent { color: var(--teal); }
.hero-sub {
  color: rgba(255,255,255,0.65); font-size: 1rem;
  line-height: 1.75; max-width: 460px; margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.8rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat-num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.2rem; }
.hero-visual { display: flex; flex-direction: column; gap: 0.85rem; }
.hero-badge {
  align-self: flex-start; background: rgba(249,115,22,0.13);
  border: 1px solid rgba(249,115,22,0.35); color: var(--orange);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 0.45rem 1.1rem; border-radius: 20px; margin-bottom: 0.3rem;
}
.hero-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 1.1rem 1.3rem;
  display: flex; align-items: center; gap: 1rem;
  cursor: pointer; transition: all 0.22s;
}
.hero-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(20,184,166,0.35); }
.hero-card-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0;
}
.hero-card-title { color: var(--white); font-weight: 600; font-size: 0.92rem; margin-bottom: 0.15rem; }
.hero-card-sub { color: rgba(255,255,255,0.45); font-size: 0.78rem; }

/* Home services */
.home-services { padding: 5rem 5%; background: var(--white); }
.home-services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem;
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 1.4rem; }
.service-card {
  border: 1px solid var(--gray-200); border-radius: 14px; padding: 1.7rem;
  transition: all 0.28s; position: relative; overflow: hidden; cursor: pointer; background: var(--white);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { border-color: rgba(20,184,166,0.35); transform: translateY(-4px); box-shadow: 0 14px 36px rgba(15,23,42,0.09); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 52px; height: 52px; border-radius: 12px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.1rem; transition: background 0.3s;
}
.service-card:hover .service-icon-wrap { background: var(--teal-dim); }
.service-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.98rem; color: var(--navy); margin-bottom: 0.5rem; }
.service-desc { color: var(--gray-600); font-size: 0.86rem; line-height: 1.72; margin-bottom: 1.1rem; }
.service-footer { display: flex; justify-content: space-between; align-items: center; }
.service-price { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--orange); }
.service-link { font-size: 0.82rem; color: var(--teal); font-weight: 600; }

/* Home CTA */
.home-cta {
  background: var(--navy); padding: 5rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.home-cta h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; color: var(--white); margin-bottom: 0.7rem; letter-spacing: -0.3px; }
.home-cta p { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 480px; }
.home-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ─────────────────────────────────
   RESPONSIVE
───────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .hero-grid, .about-body, .contact-body { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .service-full-card { grid-template-columns: auto 1fr; }
  .sfc-right { grid-column: 1 / -1; text-align: left; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  nav { padding: 0 5%; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .sticky-mobile-bar { display: grid; }
  body { padding-bottom: 70px; }
  .hero { min-height: 60vh; padding: 3.5rem 5% 3rem; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .form-row { grid-template-columns: 1fr; }
  .pricing-table { grid-template-columns: 1fr; }
  .service-full-card { grid-template-columns: 1fr; padding: 1.5rem; }
  .sfc-icon { width: 52px; height: 52px; }
  .home-cta { text-align: center; flex-direction: column; align-items: center; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .trust-bar { gap: 1.2rem; }
  .trust-item { font-size: 0.8rem; }
  .ba-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────
   ADDITIONAL POLISH (continued)
───────────────────────────────── */

/* Nav active link underline indicator */
.nav-links a.active {
  color: var(--teal);
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--teal); border-radius: 2px;
}

/* Smooth transition on page load */
main, .page-hero, .hero, .contact-body, .about-body, .areas-body, .blog-body, .services-full {
  animation: fadeUp 0.45s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Better scroll margin for anchor sections */
[id] { scroll-margin-top: 80px; }

/* Print: hide nav/sticky bar for quote printouts */
@media print {
  nav, .sticky-mobile-bar, .nav-mobile-menu, .home-cta, footer { display: none !important; }
  body { font-size: 12pt; }
}

/* Hero mobile height fix — prevent scroll before CTA */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 4rem 5% 3.5rem; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); margin-bottom: 1rem; }
  .hero-sub { font-size: 0.93rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost { width: 100%; text-align: center; padding: 1rem; font-size: 1rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.5rem; }

  /* Services full card mobile */
  .service-full-card { gap: 1rem; }
  .sfc-body h3 { font-size: 1.1rem; }

  /* Contact grid stack */
  .contact-body { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 5%; }

  /* About grid stack */
  .about-body { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem 5%; }

  /* Areas grid 2-col mobile */
  .areas-grid { grid-template-columns: 1fr 1fr; }

  /* Pricing table mobile stack */
  .pricing-table { grid-template-columns: 1fr; }

  /* Hero CTA full-width on mobile */
  .home-cta { padding: 3.5rem 5%; }
  .home-cta-actions { width: 100%; flex-direction: column; }
  .home-cta-actions .btn-primary,
  .home-cta-actions .btn-teal { width: 100%; text-align: center; }

  /* Blog grid single col */
  .blog-grid { grid-template-columns: 1fr; }

  /* Urgency badge wrap */
  .urgency-badge { font-size: 0.73rem; text-align: center; }

  /* Section title smaller on mobile */
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* Before-after section */
  .ba-grid { grid-template-columns: 1fr; }

  /* Form submit button larger on mobile */
  .form-submit { font-size: 1rem; padding: 1.1rem; }

  /* Footer grid 1-col */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Hover tooltip on pkg-card */
.pkg-card:hover .pkg-name {
  color: var(--teal);
  transition: color 0.2s;
}

/* Focus styles for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Smooth hover for area cards */
.area-card { cursor: default; }

/* Better form placeholder styling */
::placeholder { color: var(--gray-400); opacity: 1; }

/* Estimator body transition */
#estimator-body {
  transition: all 0.3s ease;
}

/* Service detail back button */
.blog-back:hover { gap: 0.7rem; }

/* Blog post content */
.blog-post-content { line-height: 1.85; }

/* 404 page */
.page-404 {
  min-height: 70vh; display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center; padding: 4rem 5%;
  background: var(--off-white);
}
.page-404 .big-emoji { font-size: 5rem; margin-bottom: 1rem; }
.page-404 h1 { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.page-404 p { color: var(--gray-600); font-size: 1rem; max-width: 420px; margin: 0 auto 2rem; }
.page-404-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
