/* ============================================================
   Prime Window Cleaners — style.css
   Mobile-first, responsive, high-performance
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --navy:       #1A365D;
  --navy-dark:  #122540;
  --navy-mid:   #2B4A7A;
  --blue:       #2B6CB0;
  --blue-light: #EBF4FF;
  --orange:     #DD6B20;
  --orange-dark:#C05621;
  --white:      #FFFFFF;
  --gray-50:    #F7FAFC;
  --gray-100:   #EDF2F7;
  --gray-200:   #E2E8F0;
  --gray-400:   #A0AEC0;
  --gray-600:   #718096;
  --gray-800:   #2D3748;
  --green:      #38A169;
  --text:       #1A202C;
  --text-muted: #4A5568;

  --font-head:  'Poppins', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.14);
  --transition: 0.22s ease;

  --header-h:   68px;
  --container:  1160px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad { padding: 72px 0; }
.bg-light { background: var(--gray-50); }
.bg-navy  { background: var(--navy); }
.text-white { color: var(--white); }
.text-light-blue { color: #BEE3F8; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-tag--light {
  background: rgba(255,255,255,.15);
  color: #BEE3F8;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.btn-cta {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(221,107,32,.35);
}
.btn-cta:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(221,107,32,.45); }
.btn-cta:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,.22); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.1;
}
.logo-text strong { color: var(--orange); }
.logo-sub { display: block; font-size: 0.7rem; font-weight: 400; color: var(--gray-600); letter-spacing: .04em; }
.logo--light .logo-text { color: var(--white); }
.logo--light .logo-sub { color: #BEE3F8; }

.header-nav {
  display: none;
  gap: 28px;
  margin-left: auto;
}
.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--orange); }

.header-actions {
  display: none;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  transition: color var(--transition);
}
.header-phone:hover { color: var(--orange); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: 20px;
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu nav a {
  padding: 12px 16px;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu nav a:hover { background: var(--gray-50); color: var(--orange); }
.mobile-phone { font-weight: 700 !important; color: var(--navy) !important; }
.mobile-menu .btn-full { margin-top: 8px; }

@media (min-width: 768px) {
  .header-nav { display: flex; }
  .header-actions { display: flex; }
  .hamburger { display: none; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,54,93,.88) 0%,
    rgba(26,54,93,.72) 50%,
    rgba(26,54,93,.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 60px;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-headline .accent { color: #FBD38D; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.9);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 0;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 24px;
  text-align: center;
}
.trust-stars { color: #F6AD55; font-size: 1.2rem; letter-spacing: 2px; }
.trust-number {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}
.trust-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .trust-divider { display: none; }
  .trust-bar-inner { gap: 12px; }
  .trust-stat { padding: 0 12px; }
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card--featured { border: 2px solid var(--orange); }

.service-img-wrap {
  height: 200px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.04); }

.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-features {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ---- Before / After Slider ---- */
.ba-slider-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
}
.ba-after img, .ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before {
  clip-path: inset(0 50% 0 0);
}
.ba-label {
  position: absolute;
  bottom: 16px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  color: var(--white);
}
.ba-label--after { right: 16px; background: var(--green); }
.ba-label--before { left: 16px; background: rgba(0,0,0,.5); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(0,0,0,.3);
}
.ba-handle-circle {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  z-index: 1;
  flex-shrink: 0;
}

/* ---- How It Works ---- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
  }
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.step-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.step-connector {
  display: none;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .step-connector { display: flex; }
}

/* ---- Reviews ---- */
.reviews-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.stars-large { color: #F6AD55; font-size: 1.4rem; letter-spacing: 2px; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.review-card--featured {
  border: 2px solid var(--orange);
  position: relative;
}
.review-card--featured::before {
  content: 'Featured Review';
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.review-stars { color: #F6AD55; font-size: 1.1rem; letter-spacing: 2px; }
.review-card blockquote p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-avatar {
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-author cite {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
  display: block;
}
.review-location { font-size: 0.78rem; color: var(--gray-400); }
.reviews-cta { text-align: center; margin-top: 36px; }

/* ---- Areas ---- */
.areas-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .areas-inner { grid-template-columns: 1fr 1fr; }
}
.areas-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.areas-text p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 28px;
}
.areas-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.areas-list li::before {
  content: '📍';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 2px;
}
.areas-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-svg { width: 100%; height: auto; display: block; }

/* ---- Quote Form ---- */
.quote-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .quote-inner { grid-template-columns: 1fr 1.2fr; }
}
.quote-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.quote-promises {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.quote-promises li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-size: 0.95rem;
}
.quote-contact-alt { margin-top: 8px; }
.quote-phone {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 4px;
  transition: color var(--transition);
}
.quote-phone:hover { color: #FBD38D; }

.quote-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 480px) {
  .quote-form-wrap { padding: 24px 18px; }
}
.quote-form { display: flex; flex-direction: column; gap: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 520px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group label .optional { font-weight: 400; color: var(--gray-400); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43,108,176,.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #E53E3E;
}
.field-error { font-size: 0.78rem; color: #E53E3E; min-height: 16px; }
.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--navy);
}
.form-check label { font-size: 0.82rem; color: var(--text-muted); font-weight: 400; }
.link-inline { color: var(--blue); text-decoration: underline; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F0FFF4;
  border: 1px solid #9AE6B4;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: #276749;
  font-size: 0.95rem;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  margin: 12px 0 20px;
  line-height: 1.6;
}
.footer-nap { display: flex; flex-direction: column; gap: 10px; }
.nap-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.7);
}
.nap-item svg { flex-shrink: 0; margin-top: 2px; opacity: .7; }
.nap-item a { color: rgba(255,255,255,.8); transition: color var(--transition); }
.nap-item a:hover { color: var(--orange); }
.footer-links h3 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.45); }
.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge-item {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.6);
}

/* ---- Floating CTA (mobile) ---- */
.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 900;
  pointer-events: none;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  pointer-events: all;
  transition: transform var(--transition), box-shadow var(--transition);
}
.floating-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.floating-btn--call { background: var(--navy); color: var(--white); }
.floating-btn--quote { background: var(--orange); color: var(--white); }

/* Hide floating CTA on desktop */
@media (min-width: 768px) {
  .floating-cta { display: none; }
}

/* ---- Scroll animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ---- Print ---- */
@media print {
  .site-header, .floating-cta, .hero-ctas { display: none; }
  .hero { min-height: auto; }
}
