/* ============================================================
   SparkleClean – Home Cleaning Service Website Template
   Version: 1.0
   Fonts: Plus Jakarta Sans + Inter (Google Fonts – free)
   Icons: Lucide (MIT License)
   Framework: Bootstrap 5 (MIT License)
   Demo images: Unsplash (free commercial use – NOT bundled)
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --blue-900: #0F2C5E;
  --blue-700: #1A4A9C;
  --blue-500: #2563EB;
  --blue-400: #3B82F6;
  --blue-100: #DBEAFE;
  --blue-50:  #EFF6FF;
  --accent:   #0EA5E9;
  --white:    #FFFFFF;
  --grey-50:  #F8FAFC;
  --grey-100: #F1F5F9;
  --grey-200: #E2E8F0;
  --grey-500: #64748B;
  --grey-700: #334155;
  --grey-900: #0F172A;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(15,44,94,.08), 0 1px 2px rgba(15,44,94,.06);
  --shadow-md: 0 4px 16px rgba(15,44,94,.10), 0 2px 6px rgba(15,44,94,.06);
  --shadow-lg: 0 10px 40px rgba(15,44,94,.14), 0 4px 12px rgba(15,44,94,.08);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--grey-900);
  line-height: 1.2;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ── UTILITIES ───────────────────────────────────────────── */
.section-pad { padding: 96px 0; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: .35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--grey-900);
  margin-bottom: .75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey-500);
  max-width: 560px;
  margin: 0 auto;
}

.min-vh-85 { min-height: 85vh; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue-500);
  color: var(--white) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--blue-500);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary-custom:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.35);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--blue-500) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--blue-500);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline-custom:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
}

/* ── NAVBAR ──────────────────────────────────────────────── */
#mainNav {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
  padding: 1rem 0;
  transition: var(--transition);
  z-index: 1000;
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--grey-900) !important;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.navbar-brand span { color: var(--blue-500); }
.brand-icon {
  width: 32px; height: 32px;
  background: var(--blue-500);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.brand-icon svg { width: 18px; height: 18px; }

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--grey-700) !important;
  padding: .5rem .75rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--blue-500) !important; background: var(--blue-50); }

/* ── HERO ────────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, var(--grey-50) 0%, var(--blue-50) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-bg-shape {
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1px solid var(--blue-100);
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  padding: .45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--blue-500); }

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--grey-900);
}

.text-highlight {
  color: var(--blue-500);
  position: relative;
}
.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 100%; height: 6px;
  background: var(--blue-100);
  border-radius: 4px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--grey-500);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--grey-900);
}
.stat-label { font-size: .8rem; color: var(--grey-500); }
.stat-divider { width: 1px; height: 40px; background: var(--grey-200); }

.hero-image-col { position: relative; }

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: .85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  animation: float 3s ease-in-out infinite;
}
.hero-card svg { width: 20px; height: 20px; color: var(--blue-500); flex-shrink: 0; }
.hero-card div { display: flex; flex-direction: column; }
.hero-card strong { font-size: .85rem; color: var(--grey-900); }
.hero-card span { font-size: .75rem; color: var(--grey-500); }
.hero-card-1 { bottom: 80px; left: -30px; animation-delay: 0s; }
.hero-card-2 { top: 40px; right: -20px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .875rem;
  color: var(--grey-700);
}
.trust-item svg { width: 18px; height: 18px; color: var(--blue-500); }

/* ── SERVICES ────────────────────────────────────────────── */
.services-section { background: var(--grey-50); }

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--blue-200, #BFDBFE);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card-featured {
  background: var(--blue-900);
  border-color: var(--blue-900);
  color: rgba(255,255,255,.85);
}
.service-card-featured h3 { color: var(--white); }
.service-card-featured p { color: rgba(255,255,255,.75); }

.service-badge {
  position: absolute;
  top: -12px; left: 1.5rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 100px;
  letter-spacing: .05em;
}

.service-icon {
  width: 52px; height: 52px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue-500);
}
.service-card-featured .service-icon {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.service-icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.service-card p {
  font-size: .9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-includes {
  list-style: none;
  padding: 0; margin: 0 0 1.25rem;
}
.service-includes li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  padding: .3rem 0;
  color: var(--grey-700);
}
.service-card-featured .service-includes li { color: rgba(255,255,255,.8); }
.service-includes svg { width: 15px; height: 15px; color: var(--blue-500); flex-shrink: 0; }
.service-card-featured .service-includes svg { color: var(--accent); }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .875rem;
  color: var(--blue-500);
  transition: var(--transition);
}
.service-card-featured .service-link { color: var(--accent); }
.service-link:hover { gap: .6rem; }
.service-link svg { width: 15px; height: 15px; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-section { background: var(--white); }

.how-steps { display: flex; flex-direction: column; gap: 2rem; }

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-100);
  line-height: 1;
  min-width: 60px;
  transition: var(--transition);
}
.how-step:hover .step-number { color: var(--blue-500); }

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.step-content p { font-size: .9rem; color: var(--grey-500); margin: 0; }

.how-image-wrapper { position: relative; }
.how-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.how-guarantee-card {
  position: absolute;
  bottom: 30px; left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
}
.how-guarantee-card svg { width: 24px; height: 24px; color: var(--blue-500); }
.how-guarantee-card div { display: flex; flex-direction: column; }
.how-guarantee-card strong { font-size: .875rem; color: var(--grey-900); }
.how-guarantee-card span { font-size: .775rem; color: var(--grey-500); }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-section { background: var(--grey-50); }

.pricing-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.pricing-card-featured {
  background: var(--blue-900);
  border-color: var(--blue-900);
  color: rgba(255,255,255,.85);
  transform: scale(1.03);
}
.pricing-card-featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header { margin-bottom: 1.5rem; }
.pricing-header h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.pricing-card-featured .pricing-header h4 { color: var(--white); }

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  margin-bottom: .5rem;
}
.currency { font-size: 1.25rem; font-weight: 700; color: var(--blue-500); }
.price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--grey-900);
  line-height: 1;
}
.pricing-card-featured .price { color: var(--white); }
.pricing-card-featured .currency { color: var(--accent); }
.period { font-size: .9rem; color: var(--grey-500); }
.pricing-card-featured .period { color: rgba(255,255,255,.6); }
.pricing-header p { font-size: .875rem; color: var(--grey-500); margin: 0; }
.pricing-card-featured .pricing-header p { color: rgba(255,255,255,.6); }

.pricing-features {
  list-style: none;
  padding: 0; margin: 0 0 1.5rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--grey-100);
}
.pricing-card-featured .pricing-features li { border-bottom-color: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }
.pricing-features svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--blue-500); }
.pricing-card-featured .pricing-features svg { color: var(--accent); }
.pricing-features .unavailable { opacity: .4; }
.pricing-features .unavailable svg { color: var(--grey-400, #9CA3AF); }

.pricing-note { font-size: .875rem; color: var(--grey-500); }
.pricing-note a { color: var(--blue-500); font-weight: 600; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section { background: var(--white); }

.testimonial-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-card-featured {
  background: var(--blue-900);
  border-color: var(--blue-900);
  color: rgba(255,255,255,.85);
}
.testimonial-card-featured p { color: rgba(255,255,255,.85); }

.testimonial-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
  color: var(--grey-700);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.author-avatar {
  width: 42px; height: 42px;
  background: var(--blue-500);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author div { display: flex; flex-direction: column; }
.testimonial-author strong { font-size: .9rem; color: var(--grey-900); }
.testimonial-card-featured .testimonial-author strong { color: var(--white); }
.testimonial-author span { font-size: .8rem; color: var(--grey-500); }
.testimonial-card-featured .testimonial-author span { color: rgba(255,255,255,.6); }

.review-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 2.5rem;
  background: var(--grey-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
}
.review-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.review-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--grey-900);
}
.review-stars { color: #F59E0B; font-size: 1rem; }
.review-label { font-size: .85rem; color: var(--grey-500); }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-section { background: var(--grey-50); }

.about-image-wrapper { position: relative; }
.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-experience-badge {
  position: absolute;
  bottom: 30px; right: -20px;
  background: var(--blue-500);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.exp-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.exp-label { font-size: .8rem; opacity: .9; }

.about-text { font-size: .95rem; color: var(--grey-500); margin-bottom: 1rem; line-height: 1.7; }

.about-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.about-value {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-200);
}
.about-value svg { width: 22px; height: 22px; color: var(--blue-500); flex-shrink: 0; margin-top: 2px; }
.about-value div { display: flex; flex-direction: column; }
.about-value strong { font-size: .9rem; color: var(--grey-900); font-family: var(--font-display); }
.about-value span { font-size: .825rem; color: var(--grey-500); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section { background: var(--white); }

.contact-intro { font-size: .95rem; color: var(--grey-500); margin-bottom: 2rem; line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: 1rem;
  background: var(--grey-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-200);
}
.contact-detail-item svg { width: 20px; height: 20px; color: var(--blue-500); flex-shrink: 0; margin-top: 2px; }
.contact-detail-item div { display: flex; flex-direction: column; }
.contact-detail-item strong { font-size: .875rem; font-family: var(--font-display); color: var(--grey-900); }
.contact-detail-item span { font-size: .85rem; color: var(--grey-500); }

.contact-form-wrapper {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-label {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: .4rem;
}

.custom-input {
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--grey-900);
  background: var(--white);
  transition: var(--transition);
}
.custom-input:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
  outline: none;
}

.form-note {
  font-size: .8rem;
  color: var(--grey-500);
  text-align: center;
  margin-top: .75rem;
  margin-bottom: 0;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--grey-900);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1rem;
}
.footer-brand span { color: var(--accent); }

.footer-desc { font-size: .875rem; line-height: 1.7; max-width: 300px; margin-bottom: 1.25rem; }

.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--blue-500); color: var(--white); }
.footer-social svg { width: 18px; height: 18px; }

.footer-heading {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  margin-bottom: .6rem;
  color: rgba(255,255,255,.6);
}
.footer-contact svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { margin: 0; font-size: .85rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .section-pad { padding: 64px 0; }
  .hero-section { padding: 60px 0 40px; }
  .hero-image-col { margin-top: 2.5rem; }
  .hero-card-1 { left: 10px; }
  .hero-card-2 { right: 10px; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }
  .about-experience-badge { right: 10px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 1rem; }
  .trust-bar-inner { gap: 1rem; }
  .review-stats { gap: 1.5rem; }
  .hero-img { height: 320px; }
  .how-img, .about-img { height: 300px; }
  .contact-form-wrapper { padding: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-card { animation: none; }
  * { transition: none !important; }
}
