/* ============================================================
   CLEAR INTENTIONS WINDOW WASHING — MASTER STYLESHEET
   Brand: Blue (#1565C0, #1E88E5, #42A5F5, #B3E5FC), Gold (#F9A825), White, Dark Navy
   Font: Inter (headings bold), system-ui (body)
   ============================================================ */

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

/* ── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  --brand-blue-dark:    #0D47A1;
  --brand-blue-primary: #1565C0;
  --brand-blue-mid:     #1E88E5;
  --brand-blue-light:   #42A5F5;
  --brand-blue-pale:    #B3E5FC;
  --brand-blue-bg:      #E3F2FD;
  --brand-gold:         #F9A825;
  --brand-gold-light:   #FFD54F;
  --brand-white:        #FFFFFF;
  --brand-navy:         #0A1628;
  --brand-gray-dark:    #1C2B3A;
  --brand-gray-mid:     #4A5568;
  --brand-gray-light:   #F0F6FF;
  --brand-border:       #DBEAFE;

  --font-heading: 'Montserrat', 'Inter', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-sm:  0 1px 3px rgba(13,71,161,0.08);
  --shadow-md:  0 4px 16px rgba(13,71,161,0.12);
  --shadow-lg:  0 8px 32px rgba(13,71,161,0.18);
  --shadow-xl:  0 16px 56px rgba(13,71,161,0.22);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:  1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--brand-gray-dark);
  background: var(--brand-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--brand-blue-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--brand-gray-mid); font-size: 1.05rem; }

.text-white { color: var(--brand-white) !important; }
.text-gold  { color: var(--brand-gold) !important; }
.text-blue  { color: var(--brand-blue-primary) !important; }
.text-center { text-align: center; }

/* ── LAYOUT HELPERS ─────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-lg {
  padding: 120px 0;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── SECTION HEADERS ────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  background: var(--brand-blue-bg);
  color: var(--brand-blue-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-tag.gold {
  background: rgba(249,168,37,0.12);
  color: #B8860B;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  font-size: 1.1rem;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue-primary), var(--brand-gold));
  border-radius: 2px;
  margin: 1rem auto 1.5rem;
}

.divider.left { margin-left: 0; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.65rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: var(--transition);
}

.navbar.scrolled .navbar-logo img { height: 44px; }

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  color: var(--brand-white);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-gold);
  background: rgba(249,168,37,0.08);
}

.nav-cta {
  background: var(--brand-gold);
  color: var(--brand-navy) !important;
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-md);
  margin-left: 0.5rem;
  box-shadow: 0 2px 12px rgba(249,168,37,0.35);
}

.nav-cta:hover {
  background: var(--brand-gold-light) !important;
  color: var(--brand-navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(249,168,37,0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-blue-primary);
  color: var(--brand-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--brand-white);
}

.btn-gold {
  background: var(--brand-gold);
  color: var(--brand-navy);
  box-shadow: 0 4px 20px rgba(249,168,37,0.4);
}

.btn-gold:hover {
  background: var(--brand-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(249,168,37,0.55);
  color: var(--brand-navy);
}

.btn-outline {
  background: transparent;
  color: var(--brand-white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: var(--brand-white);
  color: var(--brand-blue-primary);
  border-color: var(--brand-white);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--brand-blue-primary);
  border-color: var(--brand-blue-primary);
}

.btn-outline-blue:hover {
  background: var(--brand-blue-primary);
  color: var(--brand-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.6rem 1.3rem;
  font-size: 0.88rem;
}

.btn-phone {
  background: transparent;
  color: var(--brand-white);
  font-size: 1.2rem;
  font-weight: 700;
  gap: 0.4rem;
  padding: 0;
  letter-spacing: 0.01em;
}

.btn-phone:hover { color: var(--brand-gold); }

/* ── HERO SECTION ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.82) 0%,
    rgba(13, 71, 161, 0.65) 50%,
    rgba(10, 22, 40, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249,168,37,0.15);
  border: 1px solid rgba(249,168,37,0.4);
  color: var(--brand-gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--brand-white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hero h1 span {
  color: var(--brand-gold);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.2rem;
  max-width: 580px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brand-gold);
  line-height: 1;
}

.hero-stat .stat-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--brand-blue-dark);
  padding: 1.2rem 0;
  border-bottom: 3px solid var(--brand-gold);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--brand-white);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-item svg {
  color: var(--brand-gold);
  flex-shrink: 0;
}

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--brand-border);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-blue-light);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-blue-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}

.card-icon.gold { background: rgba(249,168,37,0.1); }

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.8rem;
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.service-card-tag {
  display: inline-block;
  background: var(--brand-blue-bg);
  color: var(--brand-blue-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.8rem;
}

/* ── PROCESS STEPS ──────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: steps;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--brand-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--brand-blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--brand-blue-primary), var(--brand-blue-mid));
  color: var(--brand-white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 16px rgba(21,101,192,0.35);
}

/* ── REVIEWS / TESTIMONIALS ─────────────────────────────────── */
.review-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--brand-border);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--brand-gold);
  font-size: 1.1rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue-primary), var(--brand-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-gray-dark);
}

.reviewer-location {
  font-size: 0.8rem;
  color: var(--brand-gray-mid);
}

/* ── FAQ ACCORDION ──────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--brand-blue-light);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: var(--brand-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-gray-dark);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  gap: 1rem;
}

.faq-question:hover { background: var(--brand-blue-bg); color: var(--brand-blue-primary); }
.faq-item.open .faq-question { background: var(--brand-blue-bg); color: var(--brand-blue-primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--brand-blue-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1.2rem;
  color: var(--brand-blue-primary);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--brand-blue-primary);
  color: var(--brand-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p { margin-bottom: 0; color: var(--brand-gray-mid); }

/* ── CONTACT FORM ───────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-gray-dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--brand-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brand-gray-dark);
  background: var(--brand-white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--brand-blue-mid);
  box-shadow: 0 0 0 3px rgba(30,136,229,0.12);
}

.form-control::placeholder { color: #9FAFBF; }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231565C0' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue-primary) 60%, var(--brand-blue-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(249,168,37,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 { color: var(--brand-white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 2rem; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--brand-navy);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}

.footer-logo img {
  height: 56px;
  margin-bottom: 1.2rem;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-btn:hover {
  background: var(--brand-blue-primary);
  color: var(--brand-white);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-white);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-gold);
  display: inline-block;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--brand-gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.footer-contact-icon {
  color: var(--brand-gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.footer-contact-text a {
  color: rgba(255,255,255,0.85);
}

.footer-contact-text a:hover { color: var(--brand-gold); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0;
}

/* ── ABOUT PAGE SPECIFICS ───────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue-primary) 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--brand-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero {
  background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue-primary) 100%);
  padding: 150px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--brand-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 { color: var(--brand-white); }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 600px; margin: 1rem auto 0; font-size: 1.1rem; }

/* ── BG VARIATIONS ──────────────────────────────────────────── */
.bg-light  { background: var(--brand-gray-light); }
.bg-blue   { background: var(--brand-blue-bg); }
.bg-dark   { background: var(--brand-navy); }
.bg-grad   { background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue-primary)); }

/* ── ICON LISTS ─────────────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.97rem;
  color: var(--brand-gray-mid);
}

.check-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--brand-blue-primary);
  color: var(--brand-white);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  justify-content: center;
  margin-bottom: 1rem;
}

.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--brand-gold); }
.breadcrumb span { color: var(--brand-gold-light); }

/* ── AREA BADGE ─────────────────────────────────────────────── */
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(249,168,37,0.12);
  border: 1px solid rgba(249,168,37,0.3);
  color: #B8860B;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

/* ── MOBILE MENU ────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,22,40,0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu .nav-link {
  font-size: 1.4rem;
  padding: 0.6rem 1.5rem;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--brand-white);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── PHONE CTA FLOAT ────────────────────────────────────────── */
.phone-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--brand-gold);
  color: var(--brand-navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  border-radius: 100px;
  box-shadow: 0 6px 28px rgba(249,168,37,0.5);
  transition: var(--transition);
  text-decoration: none;
}

.phone-float:hover {
  background: var(--brand-gold-light);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 36px rgba(249,168,37,0.6);
  color: var(--brand-navy);
}

.phone-float-pulse {
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

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

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .navbar-menu { display: none; }
  .hamburger { display: flex; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .trust-bar-inner { gap: 1.2rem; }
  .section { padding: 60px 0; }
  .cta-band { padding: 60px 0; }
  .phone-float span.phone-text { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.5rem; }
  .hero-stat .stat-number { font-size: 1.8rem; }
  .trust-bar-inner { flex-direction: column; gap: 0.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
/* ── RESPONSIVE GRID OVERRIDES ────────────────────────────── */
@media (max-width: 900px) {
  .why-grid,
  .local-grid {
    grid-template-columns: 1fr !important;
  }
  .why-grid > div:first-child,
  .local-grid > div:first-child {
    order: 2;
  }
  .why-grid > div:last-child,
  .local-grid > div:last-child {
    order: 1;
  }
  .grid-3-override {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .hero-content { padding: 100px 0 60px; }
  .page-hero { padding: 120px 0 50px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-stat .stat-number { font-size: 1.6rem; }
}
