/*
Theme Name: Commercial Carpet Cleaning Waltham
Theme URI: https://commercialcarpetcleaningwaltham.com
Author: Square Media Technology
Description: Single-page landing theme for Radiant Cleaning Services — Commercial Carpet Cleaning Waltham MA.
Version: 1.0.0
Text Domain: cccw
*/

/* ── TOKENS ──────────────────────────── */
:root {
  --navy:       #1E3A8A;
  --navy-dk:    #152C6E;
  --navy-lt:    #2B4FBF;
  --orange:     #F97316;
  --orange-dk:  #EA6B0A;
  --orange-lt:  #FB923C;
  --white:      #FFFFFF;
  --off:        #F8FAFC;
  --gray:       #F1F5F9;
  --gray-md:    #94A3B8;
  --gray-dk:    #334155;
  --text:       #0F172A;
  --body:       #475569;
  --border:     #E2E8F0;
  --green:      #10B981;
  --sh-sm: 0 2px 8px rgba(0,0,0,.07);
  --sh-md: 0 6px 24px rgba(0,0,0,.10);
  --sh-lg: 0 12px 48px rgba(0,0,0,.13);
  --sh-xl: 0 24px 64px rgba(0,0,0,.16);
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px;
  --tr: all .3s cubic-bezier(.4,0,.2,1);
}
/* Common widget selectors */
.es-review-item:first-child,
.ti-review-item:first-child,
.google-review:first-child,
.review-item:first-of-type {
  display: none !important;
}
/* ── RESET ───────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--body); background: var(--white);
  line-height: 1.7; overflow-x: hidden; max-width: 100vw;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  color: var(--text); font-weight: 700; line-height: 1.2;
}
a { color: var(--orange); text-decoration: none; transition: var(--tr); }
img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: 1rem; }
.container { max-width: 1200px; padding-left: 16px; padding-right: 16px; margin: auto; }

/* ── TOP BAR ─────────────────────────── */
.top-bar {
  background: var(--navy-dk);
  border-bottom: 2px solid var(--orange);
  font-size: .79rem; color: rgba(255,255,255,.85); padding: 7px 0;
}
.top-bar a { color: rgba(255,255,255,.85); }
.top-bar a:hover { color: var(--orange-lt); }
.tb-item { display: inline-flex; align-items: center; gap: 5px; margin-right: 16px; }
.tb-item i { color: var(--orange); font-size: .72rem; }
.tb-socials a {
  width: 24px; height: 24px; border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .78rem; transition: var(--tr); text-decoration: none;
}
.tb-socials .fb   { background: #1877F2; color: #fff; }
.tb-socials .yt   { background: #FF0000; color: #fff; }
.tb-socials .ig   { background: radial-gradient(circle at 30% 107%,#fdf497 0%,#fd5949 45%,#d6249f 60%,#285AEB 90%); color: #fff; }
.tb-socials .yelp { background: #D32323; color: #fff; }
.tb-socials a:hover { transform: translateY(-2px); opacity: .88; }

/* ── NAVBAR ──────────────────────────── */
#mainNav {
  background: #fff; padding: 0;
  box-shadow: 0 2px 20px rgba(30,58,138,.1);
  position: sticky; top: 0; z-index: 1050; transition: var(--tr);
}
#mainNav.scrolled { box-shadow: 0 4px 32px rgba(30,58,138,.2); }
.admin-bar #mainNav { top: 32px; }
.navbar-brand img { height: 60px; width: auto; }
.navbar-nav .nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: .84rem; font-weight: 600;
  color: var(--text) !important;
  padding: 15px 13px !important;
  position: relative; transition: var(--tr); white-space: nowrap;
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 0; height: 3px;
  background: var(--orange); border-radius: 3px 3px 0 0; transition: var(--tr);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--navy) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }
/* Nav CTA */
.nav-item-btn { display: flex; align-items: center; padding-left: 8px; }
.nav-btn {
  display: inline-flex !important; align-items: center; gap: 6px;
  background: var(--orange); color: #fff !important;
  border-radius: 50px; padding: 9px 20px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .81rem;
  box-shadow: 0 3px 12px rgba(249,115,22,.3);
  transition: var(--tr); white-space: nowrap; text-decoration: none; line-height: 1.4;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover { background: var(--orange-dk); color: #fff !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,.42); }
.navbar-toggler { border: 2px solid var(--navy); border-radius: 8px; padding: 6px 10px; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231E3A8A' stroke-linecap='round' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* Mobile sticky bar */
.mob-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1040; background: #fff;
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  padding: 10px 14px; gap: 10px;
}
.mob-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 7px; padding: 12px; border-radius: var(--r-md);
  font-weight: 700; font-size: .88rem; text-decoration: none; transition: var(--tr);
}
.mob-bar .mc { background: var(--orange); color: #fff; }
.mob-bar .me { background: var(--navy); color: #fff; }

/* ── BUTTONS ─────────────────────────── */
.btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff; border: none;
  border-radius: 50px; padding: 13px 28px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .92rem;
  box-shadow: 0 6px 20px rgba(249,115,22,.33); transition: var(--tr); text-decoration: none; cursor: pointer;
}
.btn-orange:hover { background: var(--orange-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(249,115,22,.43); text-decoration: none; }
.btn-navy-ol {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--navy);
  border: 2px solid var(--navy); border-radius: 50px; padding: 11px 26px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .92rem; transition: var(--tr); text-decoration: none;
}
.btn-navy-ol:hover { background: var(--navy); color: #fff; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--navy); border: none;
  border-radius: 50px; padding: 13px 28px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .95rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.18); transition: var(--tr); text-decoration: none;
}
.btn-white:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.btn-white-ol {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.45); border-radius: 50px; padding: 11px 26px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .95rem; transition: var(--tr); text-decoration: none;
}
.btn-white-ol:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ══════════════════════════════════════
   HERO — Split layout: left text, right image+form overlay
══════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 60%, var(--navy-lt) 100%);
  min-height: 94vh; display: flex; align-items: center;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background: var(--hero-bg, url('/wp-content/uploads/2026/08/20241206_123326-2048x956-1.jpg')) center / cover no-repeat;
  opacity: .1; z-index: 0;
}
/* Diagonal clip right side */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 42%;
  background: rgba(255,255,255,.04);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 2; padding: 80px 0 60px; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.18); border: 1px solid rgba(249,115,22,.36);
  color: var(--orange-lt); padding: 5px 14px; border-radius: 50px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-eyebrow i { font-size: .56rem; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-h1 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 800; color: #fff; line-height: 1.12; margin-bottom: 20px;
}
.hero-h1 .accent { color: var(--orange); }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,.8); max-width: 480px; line-height: 1.75; margin-bottom: 28px; }

/* Trust badges row */
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9); padding: 7px 14px; border-radius: 50px;
  font-size: .78rem; font-weight: 600; backdrop-filter: blur(4px);
}
.trust-badge i { color: var(--orange-lt); font-size: .75rem; }

/* Hero Form — floats right */
.hero-form-wrap { position: relative; z-index: 2; }
.hero-form-card {
  background: #fff; border-radius: var(--r-xl); padding: 36px 30px;
  box-shadow: var(--sh-xl); position: relative;
}
.hero-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.fc-head { margin-bottom: 20px; }
.fc-head h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 3px; }
.fc-head p { font-size: .8rem; color: var(--gray-md); margin: 0; }
.hero-form-card .form-label { font-size: .78rem; font-weight: 600; color: var(--gray-dk); margin-bottom: 4px; }
.hero-form-card .form-control,
.hero-form-card .form-select {
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  padding: 10px 13px; font-size: .87rem; color: var(--text);
  background: var(--off); transition: var(--tr);
}
.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,58,138,.09); background: #fff; outline: none;
}
.btn-form-submit {
  width: 100%; background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: #fff; border: none; border-radius: 50px; padding: 13px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .92rem;
  cursor: pointer; transition: var(--tr); box-shadow: 0 6px 20px rgba(249,115,22,.33);
  display: flex; align-items: center; justify-content: center;
}
.btn-form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(249,115,22,.44); }
.form-footer-trust { display: flex; justify-content: center; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.fft-item { display: flex; align-items: center; gap: 4px; font-size: .72rem; color: var(--gray-md); }
.fft-item i { color: var(--green); font-size: .68rem; }
.msg { display: none; padding: 10px 14px; border-radius: var(--r-md); font-size: .84rem; font-weight: 600; margin-top: 10px; align-items: center; gap: 7px; }
.msg.ok { background: rgba(16,185,129,.09); color: #065f46; border: 1px solid rgba(16,185,129,.26); }
.msg.err { background: rgba(239,68,68,.09); color: #991b1b; border: 1px solid rgba(239,68,68,.26); }
.msg.show { display: flex; }

/* ══════════════════════════════════════
   STATS — Horizontal card strip
══════════════════════════════════════ */
.stats-strip { background: #fff; padding: 0; position: relative; z-index: 3; }
.stats-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); overflow: hidden;
  margin-top: -40px; position: relative; z-index: 3;
}
.stat-card {
  padding: 28px 20px; text-align: center;
  background: #fff; border-right: 1px solid var(--border);
  transition: var(--tr);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--navy); }
.stat-card:hover .stat-num,
.stat-card:hover .stat-lbl { color: #fff; }
.stat-num {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800; color: var(--navy); font-family: 'Poppins', sans-serif;
  line-height: 1; transition: var(--tr);
}
.stat-lbl { font-size: .78rem; color: var(--gray-md); margin-top: 5px; font-weight: 500; transition: var(--tr); }
.stat-icon { font-size: 1.4rem; color: var(--orange); margin-bottom: 8px; transition: var(--tr); }
.stat-card:hover .stat-icon { color: var(--orange-lt); }

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
.sec { padding: 90px 0; }
.bg-white { background: #fff; }
.bg-gray  { background: var(--gray); }
.bg-off   { background: var(--off); }
.bg-navy  { background: var(--navy-dk); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--orange); font-size: .73rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; display: block; height: 2px; width: 20px;
  background: var(--orange); border-radius: 2px;
}
.sec-title { font-size: clamp(1.55rem, 2.8vw, 2.4rem); font-weight: 800; color: var(--text); margin-bottom: 14px; }
.sec-title .hl { color: var(--navy); }
.divider { width: 52px; height: 4px; background: linear-gradient(90deg, var(--orange), var(--navy)); border-radius: 4px; margin: 12px 0 20px; }
.divider-c { margin-left: auto; margin-right: auto; }
.sec-lead { font-size: .97rem; color: var(--body); max-width: 600px; line-height: 1.78; }

/* Reviews */
.reviews-sec { background: var(--off); padding: 80px 0; }
.sc-box { background: #fff; border: 2px dashed var(--border); border-radius: var(--r-lg); padding: 44px; text-align: center; color: var(--gray-md); }
.sc-box code { display: block; background: var(--gray); padding: 5px 12px; border-radius: 7px; font-size: .81rem; color: var(--navy); margin-top: 10px; font-family: monospace; }

/* ══════════════════════════════════════
   WHY CHOOSE US — Icon grid cards
══════════════════════════════════════ */
.why-card {
  background: #fff; border-radius: var(--r-lg); padding: 28px 24px;
  height: 100%; transition: var(--tr); position: relative; overflow: hidden;
  border-bottom: 3px solid transparent;
}
.why-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); border-bottom-color: var(--orange); }
.why-icon {
  width: 52px; height: 52px; background: linear-gradient(135deg, rgba(30,58,138,.08), rgba(249,115,22,.1));
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.25rem; margin-bottom: 16px; transition: var(--tr);
}
.why-card:hover .why-icon { background: var(--orange); color: #fff; }
.why-card h4 { font-size: .93rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: .83rem; color: var(--body); margin: 0; line-height: 1.62; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: .88rem; color: var(--body); border-bottom: 1px solid var(--border); }
.check-list li:last-child { border: none; }
.check-list li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }

/* ══════════════════════════════════════
   SERVICE SECTION — Two column with visual
══════════════════════════════════════ */
.service-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  border-radius: var(--r-xl); padding: 40px 36px; height: 100%;
  position: relative; overflow: hidden;
}
.service-visual::before {
  content: ''; position: absolute;
  width: 300px; height: 300px;
  background: rgba(249,115,22,.12); border-radius: 50%;
  bottom: -80px; right: -80px;
}
.service-visual h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.service-visual .sv-sub { color: rgba(255,255,255,.72); font-size: .88rem; margin-bottom: 28px; }
.sv-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.sv-item:last-child { border: none; padding-bottom: 0; }
.sv-num {
  width: 36px; height: 36px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.sv-item h5 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 3px; }
.sv-item p { color: rgba(255,255,255,.68); font-size: .8rem; margin: 0; line-height: 1.5; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.inc-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-md);
  padding: 16px 14px; display: flex; align-items: flex-start; gap: 11px;
  transition: var(--tr);
}
.inc-card:hover { border-color: var(--navy); box-shadow: var(--sh-md); transform: translateY(-2px); }
.inc-icon { width: 36px; height: 36px; background: rgba(30,58,138,.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: .9rem; flex-shrink: 0; transition: var(--tr); }
.inc-card:hover .inc-icon { background: var(--navy); color: #fff; }
.inc-card h5 { font-size: .83rem; font-weight: 700; color: var(--text); margin: 0 0 3px; }
.inc-card p  { font-size: .76rem; color: var(--body); margin: 0; line-height: 1.5; }
.pricing-tag { display: flex; align-items: center; gap: 9px; background: rgba(249,115,22,.07); border: 1px solid rgba(249,115,22,.18); border-radius: 9px; padding: 11px 15px; font-size: .82rem; color: var(--body); margin-top: 16px; }
.pricing-tag i { color: var(--orange); flex-shrink: 0; }
.pricing-tag a { color: var(--orange); font-weight: 600; }

/* ══════════════════════════════════════
   PROCESS — Numbered horizontal timeline
══════════════════════════════════════ */
.process-sec { background: var(--navy-dk); padding: 90px 0; position: relative; overflow: hidden; }
.process-sec::before { content: ''; position: absolute; inset: 0; background: url('images/hero-bg.jpg') center/cover; opacity: .05; }
.process-connector { display: flex; align-items: center; gap: 0; margin-bottom: 48px; position: relative; z-index: 2; }
.proc-line { flex: 1; height: 2px; background: rgba(255,255,255,.15); }
.proc-dot { width: 10px; height: 10px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.proc-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 24px 20px; text-align: center;
  position: relative; z-index: 2; height: 100%; transition: var(--tr);
}
.proc-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.proc-num {
  width: 54px; height: 54px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800; color: #fff;
  margin: 0 auto 16px; box-shadow: 0 6px 20px rgba(249,115,22,.4);
}
.proc-card i { color: var(--orange-lt); font-size: 1.3rem; margin-bottom: 10px; display: block; }
.proc-card h4 { color: #fff; font-size: .92rem; font-weight: 700; margin-bottom: 8px; }
.proc-card p  { color: rgba(255,255,255,.66); font-size: .8rem; margin: 0; line-height: 1.58; }

/* ══════════════════════════════════════
   ABOUT — Image left, content right
══════════════════════════════════════ */
.about-img-frame { position: relative; }
.about-img-frame img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--r-xl); display: block; }
.about-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: #fff; border-radius: var(--r-lg); padding: 16px 22px;
  display: flex; align-items: center; gap: 13px;
  box-shadow: var(--sh-lg);
}
.ab-num { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.ab-txt { font-size: .76rem; color: var(--body); font-weight: 500; max-width: 82px; line-height: 1.3; }
/* Orange accent corner */
.about-img-frame::after {
  content: ''; position: absolute;
  top: -12px; right: -12px;
  width: 80px; height: 80px;
  background: var(--orange); border-radius: 50%;
  opacity: .18; z-index: -1;
}
.cert-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 4px; }
.cert-box {
  background: var(--gray); border-radius: var(--r-md); padding: 13px 16px;
  display: flex; align-items: center; gap: 11px;
}
.cert-box i { font-size: 1.3rem; flex-shrink: 0; }
.cert-box strong { display: block; font-size: .82rem; color: var(--text); font-weight: 700; line-height: 1.1; }
.cert-box span { font-size: .71rem; color: var(--gray-md); }

/* ══════════════════════════════════════
   INDUSTRIES — Full-width card grid
══════════════════════════════════════ */
.ind-card {
  background: #fff; border-radius: var(--r-lg); padding: 26px 22px;
  height: 100%; transition: var(--tr); border-top: 3px solid transparent;
  box-shadow: var(--sh-sm);
}
.ind-card:hover { border-top-color: var(--orange); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.ind-icon {
  width: 50px; height: 50px; background: rgba(30,58,138,.07);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.2rem; margin-bottom: 14px; transition: var(--tr);
}
.ind-card:hover .ind-icon { background: var(--navy); color: #fff; }
.ind-card h4 { font-size: .92rem; font-weight: 700; margin-bottom: 7px; }
.ind-card p  { font-size: .82rem; color: var(--body); margin: 0; line-height: 1.62; }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-ban { background: linear-gradient(135deg, var(--orange), var(--orange-dk)); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-ban::before { content: ''; position: absolute; width: 500px; height: 500px; background: rgba(255,255,255,.07); border-radius: 50%; top: -150px; right: -150px; }
.cta-ban::after  { content: ''; position: absolute; width: 400px; height: 400px; background: rgba(0,0,0,.06); border-radius: 50%; bottom: -120px; left: -100px; }
.cta-inner { position: relative; z-index: 2; }
.cta-ban h2 { color: #fff; font-size: clamp(1.6rem, 2.8vw, 2.4rem); margin-bottom: 12px; }
.cta-ban p  { color: rgba(255,255,255,.85); font-size: 1rem; max-width: 540px; margin: 0 auto 28px; }

/* ══════════════════════════════════════
   FAQ — Two column with contact sidebar
══════════════════════════════════════ */
.accordion-item { background: #fff; border: 1.5px solid var(--border) !important; border-radius: var(--r-md) !important; margin-bottom: 10px; overflow: hidden; transition: var(--tr); }
.accordion-item:hover { border-color: var(--navy) !important; }
.accordion-button { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .91rem; color: var(--text); background: #fff; padding: 16px 20px; border-radius: var(--r-md) !important; }
.accordion-button:not(.collapsed) { color: var(--navy); background: rgba(30,58,138,.04); box-shadow: none; }
.accordion-button::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231E3A8A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }
.accordion-body { padding: 5px 20px 17px; font-size: .87rem; color: var(--body); line-height: 1.72; }

/* ══════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════ */
.contact-card {
  background: var(--navy); border-radius: var(--r-xl); padding: 38px; color: #fff; height: 100%;
}
.contact-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.contact-card > p { color: rgba(255,255,255,.7); font-size: .87rem; margin-bottom: 24px; }
.ci-item { display: flex; align-items: flex-start; gap: 13px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.ci-item:last-of-type { border: none; }
.ci-ico { width: 40px; height: 40px; background: rgba(249,115,22,.22); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--orange-lt); font-size: .95rem; flex-shrink: 0; }
.ci-item h5 { font-size: .72rem; color: rgba(255,255,255,.48); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; margin: 0 0 2px; }
.ci-item p  { color: #fff; font-size: .87rem; margin: 0; font-weight: 500; line-height: 1.5; }
.ci-item a  { color: rgba(255,255,255,.88); }
.ci-item a:hover { color: var(--orange-lt); }
.soc-row { display: flex; gap: 8px; margin-top: 22px; flex-wrap: wrap; }
.soc-btn { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: var(--tr); text-decoration: none; }
.soc-btn.fb   { background: #1877F2; color: #fff; }
.soc-btn.yt   { background: #FF0000; color: #fff; }
.soc-btn.ig   { background: radial-gradient(circle at 30% 107%,#fdf497 0%,#fd5949 45%,#d6249f 60%,#285AEB 90%); color: #fff; }
.soc-btn.yelp { background: #D32323; color: #fff; }
.soc-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 14px rgba(0,0,0,.28); }
.contact-form-card { background: #fff; border-radius: var(--r-xl); padding: 38px; height: 100%; box-shadow: var(--sh-md); }
.contact-form-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form-card > p { font-size: .87rem; color: var(--body); margin-bottom: 22px; }
.contact-form-card .form-label { font-size: .78rem; font-weight: 600; color: var(--gray-dk); }
.contact-form-card .form-control,
.contact-form-card .form-select { border: 1.5px solid var(--border); border-radius: var(--r-md); padding: 10px 13px; font-size: .87rem; transition: var(--tr); }
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,58,138,.09); outline: none; }
.btn-contact {
  background: linear-gradient(135deg, var(--navy), var(--navy-lt)); color: #fff; border: none;
  border-radius: 50px; padding: 13px 32px; font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: .92rem; transition: var(--tr); box-shadow: 0 6px 20px rgba(30,58,138,.28);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.btn-contact:hover { background: linear-gradient(135deg, var(--navy-dk), var(--navy)); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(30,58,138,.38); color: #fff; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--text); color: rgba(255,255,255,.68); padding: 68px 0 0; }
.ft-logo img { height: 46px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); }
.ft-logo p   { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.52); }
.ft-h { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 16px; position: relative; padding-bottom: 10px; }
.ft-h::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--orange); border-radius: 2px; }
.ft-links { list-style: none; padding: 0; margin: 0; }
.ft-links li { margin-bottom: 8px; }
.ft-links a { color: rgba(255,255,255,.55); font-size: .82rem; transition: var(--tr); display: flex; align-items: center; gap: 5px; }
.ft-links a::before { content: '›'; color: var(--orange); font-weight: 700; }
.ft-links a:hover { color: var(--orange-lt); padding-left: 4px; }
.ft-contact { list-style: none; padding: 0; margin: 0; }
.ft-contact li { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 11px; font-size: .82rem; color: rgba(255,255,255,.58); line-height: 1.5; }
.ft-contact li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.ft-contact a { color: rgba(255,255,255,.58); }
.ft-contact a:hover { color: var(--orange-lt); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; margin-top: 48px; font-size: .77rem; color: rgba(255,255,255,.38); }
.ft-bottom a { color: var(--orange); }

/* Scroll Top */
#scrollTop { position: fixed; bottom: 80px; right: 18px; width: 42px; height: 42px; background: var(--orange); color: #fff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; z-index: 999; opacity: 0; visibility: hidden; transition: var(--tr); box-shadow: 0 4px 14px rgba(249,115,22,.4); cursor: pointer; }
#scrollTop.vis { opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--orange-dk); transform: translateY(-3px); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1199px) {
  .navbar-nav .nav-link { padding: 15px 10px !important; font-size: .81rem; }
}
@media (max-width: 991px) {
  .navbar-nav .nav-link { padding: 11px 13px !important; }
  .navbar-nav .nav-link::after { display: none; }
  .navbar-collapse { background: #fff; padding: 14px; border-top: 2px solid var(--border); width: 100%; }
  .nav-item-btn { padding-left: 0; display: block; }
  .nav-btn { margin: 8px 0; padding: 11px 20px; display: flex !important; justify-content: center; width: 100%; border-radius: 10px !important; }
  .hero-inner { padding: 56px 0 100px; }
  .hero-h1 { font-size: 1.85rem; }
  .hero::after { display: none; }
  .hero-form-card { margin-top: 28px; padding: 28px 22px; }
  .stats-strip-inner { grid-template-columns: repeat(2,1fr); margin-top: 0; border-radius: 0; }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .stat-card:nth-child(4) { border-top: 1px solid var(--border); }
  .about-img-frame img { height: 300px; }
  .service-visual { margin-bottom: 24px; }
  .included-grid { grid-template-columns: 1fr; }
  .contact-card, .contact-form-card { padding: 28px; }
}
@media (max-width: 767px) {
  .mob-bar { display: flex; }
  body { padding-bottom: 70px; }
  .top-bar { display: none; }
  .sec { padding: 56px 0; }
  .reviews-sec, .process-sec, .cta-ban { padding: 56px 0 !important; }
  .stats-strip { padding: 0; }
  .stats-strip-inner { grid-template-columns: repeat(2,1fr); margin-top: 0; border-radius: 0; box-shadow: none; border-top: 1px solid var(--border); }
  .stat-card { padding: 20px 14px; }
  .hero-inner { padding: 48px 0 28px; }
  .hero-h1 { font-size: 1.65rem; }
  .hero-sub { font-size: .92rem; }
  .hero-form-card { padding: 22px 16px; border-radius: 18px; }
  .trust-badges { gap: 8px; }
  .trust-badge { font-size: .72rem; padding: 5px 11px; }
  .about-img-frame img { height: 260px; }
  .about-img-frame::after { display: none; }
  .included-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .contact-card, .contact-form-card { padding: 22px 16px; }
  #scrollTop { bottom: 80px; right: 14px; }
  .ft-logo p { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 1.45rem; }
  .trust-badges { flex-direction: column; gap: 6px; }
  .stats-strip-inner { grid-template-columns: repeat(2,1fr); }
  .sec-title { font-size: 1.45rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-blob { display: none; }
}
