/* ============================================================
   EZ CLEANERS PLUS — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:       #1B2D6B;
  --navy-dark:  #111E4A;
  --navy-light: #243580;
  --navy-mid:   #1E3A8A;
  --gold:       #C9A84C;
  --gold-light: #E2C06A;
  --gold-pale:  #FDF6E3;
  --star:       #F5C518;
  --white:      #FFFFFF;
  --off-white:  #F7F5F0;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --text:       #1A1A2E;
  --text-muted: #5A6080;
  --text-light: #8890AA;
  --border:     rgba(27,45,107,0.12);
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow:     0 4px 32px rgba(27,45,107,0.10);
  --shadow-lg:  0 12px 60px rgba(27,45,107,0.16);
  --shadow-xl:  0 24px 80px rgba(27,45,107,0.22);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-xs:  6px;
  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  --nav-h:      72px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ── */
.condensed { font-family: 'Barlow Condensed', sans-serif; }

h1, h2, h3 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.05; letter-spacing: -0.01em; }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; display: block;
}
.section-title {
  font-size: clamp(34px, 5vw, 56px); font-weight: 800;
  color: var(--navy); margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.7; max-width: 560px; font-weight: 300;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
section { padding: 100px 5%; }
section.tight { padding: 72px 5%; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 14px 30px; border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  transition: var(--transition); letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,45,107,0.35); }
.btn-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-outline-navy {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: white; }
.btn-lg { padding: 17px 40px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(17,30,74,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  display: flex; align-items: center;
  padding: 0 5%;
  transition: var(--transition);
}
.navbar.scrolled {
  height: 64px;
  background: rgba(17,30,74,0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 900;
  color: white; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .logo-accent { color: var(--gold); }
.nav-logo-badge {
  background: var(--gold); color: var(--navy-dark);
  font-size: 9px; font-weight: 800; padding: 2px 7px;
  border-radius: 999px; letter-spacing: 0.06em; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-xs);
  transition: var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,0.1); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 2px; background: var(--gold); border-radius: 99px;
}
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }

/* ── MOBILE MENU ── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--navy-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px; font-weight: 800;
  color: white; padding: 8px 32px; display: block;
  transition: var(--transition); letter-spacing: -0.01em;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: white;
  font-size: 28px; cursor: pointer; padding: 8px; line-height: 1;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: calc(var(--nav-h) + 64px) 5% 72px;
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-header::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 60px; background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.18); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 999px; margin-bottom: 20px;
}
.page-header h1 {
  font-size: clamp(44px, 7vw, 80px); font-weight: 900;
  color: white; margin-bottom: 16px;
}
.page-header h1 span { color: var(--gold); }
.page-header p {
  font-size: 18px; color: rgba(255,255,255,0.72);
  max-width: 520px; margin: 0 auto; font-weight: 300; line-height: 1.7;
}

/* ── CARDS ── */
.card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-gold-top::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.card:hover.card-gold-top::before { transform: scaleX(1); }

/* ── ICON BOX ── */
.icon-box {
  width: 56px; height: 56px;
  background: var(--gold-pale); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0;
  transition: var(--transition);
}
.card:hover .icon-box { background: var(--navy); transform: scale(1.05); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--off-white); border-bottom: 1px solid var(--border);
  padding: 20px 5%;
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 32px; max-width: 1100px; margin: 0 auto;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.trust-item-icon { font-size: 18px; }

/* ── STATS ROW ── */
.stats-row {
  display: flex; gap: 0; flex-wrap: wrap;
  background: var(--navy-dark);
}
.stat-cell {
  flex: 1; min-width: 160px;
  padding: 40px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 900;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; letter-spacing: 0.04em; }

/* ── BADGE PILLS ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; border: 1px solid var(--border);
  border-radius: 999px; padding: 7px 14px;
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.badge-gold {
  background: var(--gold-pale); border-color: rgba(201,168,76,0.35);
  color: var(--navy);
}

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: 0.02em; }
.form-label.light { color: rgba(255,255,255,0.8); }
.form-input, .form-select, .form-textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--text);
  background: white; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 13px 16px;
  outline: none; width: 100%; transition: var(--transition);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,45,107,0.1);
}
.form-input.dark, .form-select.dark, .form-textarea.dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: white;
}
.form-input.dark::placeholder, .form-textarea.dark::placeholder { color: rgba(255,255,255,0.35); }
.form-input.dark:focus, .form-select.dark:focus, .form-textarea.dark:focus {
  border-color: var(--gold); background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-select.dark option { background: var(--navy-dark); color: white; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid-2 .span-2 { grid-column: 1/-1; }
.form-error { font-size: 12px; color: #ef4444; margin-top: 4px; display: none; }
.form-error.show { display: block; }

/* ── PRICING TABLE ── */
.price-tab-bar {
  display: flex; justify-content: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 36px;
}
.price-tab {
  padding: 10px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--border);
  background: white; color: var(--text-muted);
  transition: var(--transition);
}
.price-tab.active { background: var(--navy); color: white; border-color: var(--navy); }
.price-tab:hover:not(.active) { border-color: var(--navy); color: var(--navy); }
.price-panel { display: none; }
.price-panel.active { display: block; }
.price-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px; max-width: 1000px; margin: 0 auto;
}
.price-row {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition);
}
.price-row:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,168,76,0.12); }
.price-row-name { font-size: 14px; font-weight: 500; color: var(--text); }
.price-row-cost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--navy);
  white-space: nowrap;
}

/* ── REVIEWS ── */
.review-card {
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-stars { color: var(--star); font-size: 15px; letter-spacing: 3px; margin-bottom: 14px; }
.review-text { font-size: 15px; line-height: 1.7; color: var(--text); font-style: italic; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 800; flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.review-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--navy);
  padding: 80px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  padding: 64px 5% 28px;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 900;
  color: white; margin-bottom: 12px;
}
.footer-brand-name span { color: var(--gold); }
.footer-brand-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 240px; margin-bottom: 20px; }
.footer-stars { color: var(--star); font-size: 17px; letter-spacing: 3px; }
.footer-col h5 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.5);
  font-size: 14px; margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: white; padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.35);
  max-width: 1200px; margin: 0 auto;
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom a:hover { color: white; }
.footer-legal { display: flex; gap: 20px; }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: var(--transition);
}
.sticky-cta.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.sticky-cta a {
  background: var(--gold); color: var(--navy-dark);
  font-size: 14px; font-weight: 700;
  padding: 14px 22px; border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 24px rgba(201,168,76,0.55);
  transition: var(--transition);
}
.sticky-cta a:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,168,76,0.65); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.anim-fade-up { animation: fadeUp 0.85s ease both; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: white; }
.text-muted { color: var(--text-muted); }
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px;  }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-56 { margin-bottom: 56px; }
.flex-wrap-gap { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── NOTIFICATION ── */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(20px);
  z-index: 9999; padding: 14px 28px;
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 600;
  opacity: 0; transition: all 0.35s ease; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-success { background: #16a34a; color: white; }
.toast-error   { background: #dc2626; color: white; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 72px 5%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-grid-2 .span-2 { grid-column: 1; }
  .stats-row { flex-direction: column; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-cell:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .page-header h1 { font-size: 40px; }
  .trust-strip-inner { gap: 18px; }
}
