/* ============================================================
   ROOT CSS — Apply to entire website
   ============================================================ */

   html,
body {
    overflow-x: visible; /* Or remove the property entirely */
    width: 100%;
    margin: 0;
    padding: 0;
}
.hero-section,
.site-navbar,
#services,
#about,
#contact{
    overflow:hidden;
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

   :root {
  /* Brand Colors — Blue & White Theme */
  --clr-primary:        #2563EB;
  --clr-primary-dark:   #1E40AF;
  --clr-primary-light:  #DBEAFE;

  --clr-dark:           #0F172A;
  --clr-dark-2:         #1E293B;
  --clr-dark-3:         #334155;

  --clr-light:          #F8FAFC;
  --clr-surface:        #FFFFFF;

  --clr-text-main:      #0F172A;
  --clr-text-muted:     #64748B;
  --clr-text-light:     #F8FAFC;
  --clr-text-dark:     #000000;

  --clr-accent-blue:    #60A5FA;
  --clr-success:        #22C55E;
  --clr-warning:        #F59E0B;


  --white:       #FFFFFF;
  --off-white:   #F7F5F2;
  --cream:       #FBF9F6;
  --ink:         #0E0E0E;
  --ink2:        #1C1C1E;
  --muted:       #6B7280;
  --muted-lt:    #9CA3AF;

  /* Blues (accent only) */
  --blue:        #1A56DB;
  --blue-lt:     #3B82F6;
  --blue-pale:   #EFF6FF;
  --blue-border: #BFDBFE;

  /* Amber / warm (brands, stats) */
  --amber:       #D97706;
  --amber-lt:    #F59E0B;
  --amber-pale:  #FFFBEB;
  --amber-border:#FDE68A;

  /* Slate dark (HIW, footer) */
  --slate:       #0F172A;
  --slate2:      #1E293B;
  --slate-card:  rgba(255,255,255,.05);
  --slate-border:rgba(255,255,255,.09);

  /* Teal (CTA) */
  --teal:        #0F766E;
  --teal-lt:     #14B8A6;
  --teal-pale:   #F0FDFA;

  /* Radius / shadow */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);

  /* Typography */
  --font-display:       'Syne', sans-serif;
  --font-body:          'DM Sans', sans-serif;

  /* Spacing */
  --section-pad:        5rem 0;
  --border-radius-sm:   4px;
  --border-radius-md:   6px;
  --border-radius-lg:   8px;
  --border-radius-pill: 5px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.18);

  /* Transitions */
  --transition:  .25s ease;
}

/* ── Global resets ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--clr-text-main);
  background: var(--clr-light);
  margin: 0;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }
a { text-decoration: none; color: inherit; }


/* ============================================================
   WHITE NAVBAR — CENTERED MENU
   ============================================================ */
.site-navbar {
  background: var(--clr-surface) !important;
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.site-navbar::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary) 0%, var(--clr-accent-blue) 100%);
}

.navbar-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: .85rem 0;
  position: relative;
}

/* ── Logo ── */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  background: none;
  padding: 0;
  border-radius: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--clr-dark);
  letter-spacing: -.3px;
  white-space: nowrap;
}

.logo-text span { color: var(--clr-primary); }

/* ── Nav links — centered ── */
.navbar-nav {
  margin: 0 auto; /* center horizontally */
}

.navbar-nav .nav-item {
  text-align: center;
}

.navbar-nav .nav-link {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  color: #000000 !important;
  letter-spacing: .3px;
  padding: .45rem 1rem !important;
  border-radius: var(--border-radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
  display: inline-block;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--clr-primary) !important;
  background: var(--clr-primary-light);
}

.navbar-nav .nav-link.active::after {
  content: '';
  display: block;
  height: 2px;
  width: 60%;
  background: var(--clr-primary);
  border-radius: 2px;
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
}

/* ── Right actions — absolute positioning to free up center ── */
.nav-actions {
  margin-left: auto;
  flex-shrink: 0;
}

/* ── CTA button ── */
.btn-nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .4px;
  background: var(--clr-primary);
  color: #fff;
  border: none;
  border-radius: var(--border-radius-pill);
  padding: .5rem 1.3rem;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-nav-cta:hover {
  background: var(--clr-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,99,235,.4);
}

/* ── Phone link ── */
.nav-phone {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  color: #000000 !important;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: .4rem .7rem !important;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: var(--border-radius-pill);
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition);
}

.nav-phone:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary) !important;
  background: transparent !important;
}

/* ── Toggler ── */
.navbar-toggler {
  border: 1px solid rgba(0,0,0,.15);
  border-radius: var(--border-radius-sm);
  padding: .35rem .55rem;
}

.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='%230F172A' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Mobile ── */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--clr-surface);
    margin-top: .75rem;
    border-radius: var(--border-radius-md);
    padding: .75rem 1rem 1rem;
    border: 1px solid rgba(0,0,0,.06);
    width: 100%;
    box-shadow: var(--shadow-md);
  }

  .navbar-nav {
    margin: 0;
    width: 100%;
  }

  .navbar-nav .nav-item {
    text-align: center;
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: .55rem .75rem !important;
    color: #000000 !important;
    display: block;
    width: 100%;
  }

  .navbar-nav .nav-link.active::after { display: none; }

  .nav-actions {
    border-top: 1px solid rgba(0,0,0,.06);
    padding-top: .75rem;
    width: 100%;
    margin-left: 0;
  }

  .nav-actions .nav-phone,
  .nav-actions .btn-nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}



/* ============================================================
   CHARGE STRIP
   ============================================================ */
.charge-strip {
  background: var(--clr-surface);
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: .65rem 0;
  position: relative;
  overflow: hidden;
}

/* Shimmer animation background */
.charge-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(37, 99, 235, 0.06) 50%,
    transparent 100%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}

.charge-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Icon */
.charge-icon {
  width: 32px;
  height: 32px;
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  animation: pulse-soft 2s infinite;
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.2); }
  50%      { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
}

/* Text */
.charge-text {
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--clr-text-main);
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.charge-label {
  font-weight: 600;
  letter-spacing: .3px;
}

.charge-divider {
  color: var(--clr-primary);
  font-weight: 300;
  opacity: .5;
}

.charge-amount {
  font-weight: 500;
  color: var(--clr-text-muted);
}

.charge-amount strong {
  color: var(--clr-primary);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  position: relative;
}

/* Underline animation on price */
.charge-amount strong::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--clr-primary);
  transform: scaleX(0);
  transform-origin: right;
  animation: underline-slide 2s ease-in-out infinite alternate;
}

@keyframes underline-slide {
  0%   { transform: scaleX(0); transform-origin: right; }
  100% { transform: scaleX(1); transform-origin: left; }
}

/* Badge */
.charge-badge {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--clr-success);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: .25rem .6rem;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: .3rem;
  animation: fade-blink 3s infinite;
}

@keyframes fade-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .6; }
}

/* Mobile */
@media (max-width: 575.98px) {
  .charge-strip { padding: .5rem 0; }
  .charge-text { font-size: .85rem; }
  .charge-divider { display: none; }
  .charge-badge { display: none; }
}

/* ============================================================
   REPAIRXPERT — HERO SECTION CSS
   ============================================================ */

/* ── Particle canvas ── */
#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── Section base ── */
.hero-section {
  position: relative;
  background: linear-gradient(145deg, #0a1628 0%, #0f172a 50%, #1a2744 100%);
  overflow: hidden;
  padding-bottom: 0;
}

.min-vh-hero {
  min-height: calc(100vh - 70px);
  padding: 4.5rem 0 6rem;
}

/* ── Animated blobs ── */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
  animation: blobDrift 12s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-blob--1 {
  width: 520px; height: 520px;
  background: var(--clr-primary);
  top: -120px; right: -80px;
  animation-duration: 14s;
}
.hero-blob--2 {
  width: 360px; height: 360px;
  background: var(--clr-accent-blue);
  bottom: 80px; left: -100px;
  animation-duration: 10s; animation-delay: -4s;
}
.hero-blob--3 {
  width: 260px; height: 260px;
  background: #1d4ed8;
  top: 50%; left: 42%;
  animation-duration: 18s; animation-delay: -7s;
}

@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -40px) scale(1.1); }
}

/* ── Left copy ── */
.hero-copy { position: relative; z-index: 2; }

/* Badge */
.hero-badge {
  background: rgba(37,99,235,0.18);
  border: 1px solid rgba(96,165,250,0.35);
  color: var(--clr-accent-blue);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
  padding: .4rem 1rem;
  border-radius: 50px;
  animation: fadeSlideDown .6s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12;
  color: #f0f6ff;
  letter-spacing: -1px;
  animation: fadeSlideUp .7s ease .1s both;
}
.hero-headline__accent {
  color: var(--clr-accent-blue);
  display: inline-block;
  min-width: 340px;
}
.typed-cursor {
  animation: blink .8s step-end infinite;
  color: var(--clr-primary);
}
@keyframes blink { 50% { opacity: 0; } }

/* Sub */
.hero-sub {
  font-size: 1.05rem;
  color: rgba(219,234,254,.75);
  line-height: 1.7;
  max-width: 480px;
  animation: fadeSlideUp .7s ease .2s both;
}
.hero-sub strong { color: #f0f6ff; font-weight: 600; }

/* ── CTA Buttons ── */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--clr-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .3px;
  padding: .85rem 1.8rem;
  border-radius: var(--border-radius-pill);
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  animation: fadeSlideUp .7s ease .3s both;
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .5s ease;
}
.btn-hero-primary:hover { background: var(--clr-primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.5); }
.btn-hero-primary:hover::after { transform: translateX(100%); }

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(219,234,254,.9);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  padding: .85rem 1.6rem;
  border-radius: var(--border-radius-pill);
  border: 1.5px solid rgba(96,165,250,.4);
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
  animation: fadeSlideUp .7s ease .35s both;
}
.btn-hero-outline:hover { border-color: var(--clr-accent-blue); color: var(--clr-accent-blue); background: rgba(96,165,250,.08); transform: translateY(-2px); }

/* ── Trust strip ── */
.hero-trust { animation: fadeSlideUp .7s ease .45s both; }
.trust-item {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(219,234,254,.75);
}
.trust-icon {
  width: 32px; height: 32px;
  background: rgba(37,99,235,.2);
  border: 1px solid rgba(96,165,250,.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent-blue);
  flex-shrink: 0;
}

/* ── Right visual cards ── */
.hero-cards-wrap {
  width: 560px;
  height: 560px;
  position: relative;
  z-index: 2;
  animation: fadeIn .9s ease .2s both;
}

/* Orbit ring */
.orbit-ring {
  position: absolute;
  inset: 55px;
  border-radius: 50%;
  border: 1.5px dashed rgba(96,165,250,.2);
  animation: spinSlow 28s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* Center image — MUCH BIGGER */
.hero-center-image {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; 
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(37,99,235,.5);
  box-shadow: 
    0 0 0 16px rgba(37,99,235,.18), 
    0 0 0 32px rgba(37,99,235,.08),
    0 8px 32px rgba(0,0,0,.4);
  animation: pulseShadow 3s ease-in-out infinite;
  z-index: 3;
}

.hero-center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@keyframes pulseShadow {
  0%,100% { 
    box-shadow: 
      0 0 0 16px rgba(37,99,235,.18), 
      0 0 0 32px rgba(37,99,235,.08),
      0 8px 32px rgba(0,0,0,.4); 
  }
  50% { 
    box-shadow: 
      0 0 0 28px rgba(37,99,235,.12),  
      0 0 0 56px rgba(37,99,235,.04),
      0 12px 40px rgba(0,0,0,.5); 
  }
}

/* Service cards */
.svc-card {
  position: absolute;
  background: rgba(15,23,42,.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(96,165,250,.2);
  border-radius: var(--border-radius-lg);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 175px;
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
  z-index: 4;
}
.svc-card__icon {
  width: 46px; height: 46px;
  border-radius: var(--border-radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-card__name { font-family: var(--font-display); font-size: .82rem; font-weight: 700; color: #e2edff; line-height: 1.2; }
.svc-card__tag  { font-size: .71rem; color: rgba(148,163,184,.7); margin-top: 2px; }

/* Positions — 4 corners */
.svc-card--ac    { top: 0; left: 50%; transform: translateX(-50%); }
.svc-card--ac    .svc-card__icon { background: rgba(37,99,235,.25); color: var(--clr-accent-blue); }
.svc-card--fridge { bottom: 0; left: 50%; transform: translateX(-50%); }
.svc-card--fridge .svc-card__icon { background: rgba(14,165,233,.2); color: #38bdf8; }
.svc-card--wash  { left: 0; top: 50%; transform: translateY(-50%); }
.svc-card--wash  .svc-card__icon { background: rgba(34,197,94,.15); color: #4ade80; }
.svc-card--micro { right: 0; top: 50%; transform: translateY(-50%); }
.svc-card--micro .svc-card__icon { background: rgba(245,158,11,.15); color: #fbbf24; }

/* Stat pill */
.hero-stat-pill {
  position: absolute;
  top: 10%; right: -30px;
  background: rgba(15,23,42,.9);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 50px;
  padding: .5rem .9rem;
  display: flex; align-items: center; gap: 10px;
  z-index: 5;
}
.hero-stat-pill__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-stat-pill__num  { font-family: var(--font-display); font-weight: 800; font-size: .95rem; color: #fff; display: block; line-height: 1; }
.hero-stat-pill__lbl  { font-size: .68rem; color: rgba(148,163,184,.8); }

/* Rating pill */
.hero-rating-pill {
  position: absolute;
  bottom: 12%; left: -30px;
  background: rgba(15,23,42,.9);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: 50px;
  padding: .45rem .9rem;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  color: rgba(219,234,254,.8);
  z-index: 5;
}
.hero-rating-pill .stars { color: #fbbf24; letter-spacing: 1px; font-size: .8rem; }

/* ── Phone strip ── */
.hero-phone-strip {
  position: relative;
  z-index: 2;
  background: rgba(37,99,235,.12);
  border-top: 1px solid rgba(96,165,250,.15);
  padding: .9rem 0;
  margin-top: 2rem;
}
.phone-strip-label {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  color: rgba(219,234,254,.7);
}
.phone-strip-link {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  color: #fff;
  background: rgba(37,99,235,.3);
  border: 1px solid rgba(96,165,250,.3);
  padding: .3rem .9rem;
  border-radius: 50px;
  transition: background var(--transition), border-color var(--transition);
}
.phone-strip-link:hover { background: var(--clr-primary); border-color: var(--clr-primary); color: #fff; }
.phone-strip-divider { color: rgba(255,255,255,.3); font-size: 1.2rem; }

/* ── Float animations ── */
@keyframes floatUp   { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-10px)} }
@keyframes floatDown { 0%,100%{transform:translateY(0)}  50%{transform:translateY( 10px)} }

.float-anim-1 { animation: floatUp   4s ease-in-out infinite; }
.float-anim-2 { animation: floatDown 5s ease-in-out 0.5s infinite; }
.float-anim-3 { animation: floatUp   4.5s ease-in-out 1s infinite; }
.float-anim-4 { animation: floatDown 5.5s ease-in-out 1.5s infinite; }
.float-anim-5 { animation: floatUp   3.5s ease-in-out 0.8s infinite; }

/* Override float transforms for absolutely-positioned cards */
.svc-card--ac.float-anim-1    { animation: floatAcUp    4s ease-in-out infinite; }
.svc-card--fridge.float-anim-2{ animation: floatFrDown  5s ease-in-out .5s infinite; }
.svc-card--wash.float-anim-3  { animation: floatWash    4.5s ease-in-out 1s infinite; }
.svc-card--micro.float-anim-4 { animation: floatMicro   5.5s ease-in-out 1.5s infinite; }

@keyframes floatAcUp    { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-10px)} }
@keyframes floatFrDown  { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }
@keyframes floatWash    { 0%,100%{transform:translateY(-50%) translateX(0)} 50%{transform:translateY(-50%) translateX(-8px)} }
@keyframes floatMicro   { 0%,100%{transform:translateY(-50%) translateX(0)} 50%{transform:translateY(-50%) translateX(8px)} }

/* ── Entrance animations ── */
@keyframes fadeSlideUp   { from{ opacity:0; transform:translateY(22px) } to{ opacity:1; transform:translateY(0) } }
@keyframes fadeSlideDown { from{ opacity:0; transform:translateY(-14px)} to{ opacity:1; transform:translateY(0) } }
@keyframes fadeIn        { from{ opacity:0 } to{ opacity:1 } }

/* ── TABLET (≤991px) ── */
@media (max-width: 991.98px) {
  .hero-cards-wrap { width: 480px; height: 480px; }
  .svc-card { min-width: 155px; padding: .6rem .85rem; }
  .svc-card__icon { width: 40px; height: 40px; }
  .hero-center-image { width: 220px; height: 220px; }
  .orbit-ring { inset: 40px; }
  .hero-stat-pill { right: -15px; }
  .hero-rating-pill { left: -15px; }
  .min-vh-hero { padding: 3rem 0 4rem; min-height: auto; }
}

/* ── MOBILE (≤575px) ── */
@media (max-width: 575.98px) {
  /* Much bigger container so cards don't overlap image */
  .hero-cards-wrap { 
    width: 400px; 
    height: 400px; 
    transform: scale(0.9);
    margin: 0 auto;
  }
  
  .svc-card { 
    min-width: 135px; 
    padding: .45rem .65rem; 
    gap: 6px;
  }
  .svc-card__icon { width: 34px; height: 34px; }
  .svc-card__name { font-size: .72rem; }
  .svc-card__tag { font-size: .62rem; }
  
  /* Bigger image on mobile */
  .hero-center-image { 
    width: 250px; 
    height: 250px; 
    border-width: 4px;
  }
  
  .orbit-ring { inset: 30px; }
  
  /* Push floating items further out so they don't overlap */
  .hero-stat-pill { 
    right: -25px; 
    top: 8%;
    padding: .4rem .7rem;
  }
  .hero-stat-pill__num { font-size: .85rem; }
  .hero-stat-pill__lbl { font-size: .6rem; }
  
  .hero-rating-pill { 
    left: -25px; 
    bottom: 10%;
    padding: .4rem .7rem;
  }
  .hero-rating-pill span { font-size: .68rem; }
  
  .hero-headline__accent { min-width: auto; }
  
  /* Reduce font size so headline doesn't break weirdly */
  .hero-headline { font-size: clamp(2rem, 8vw, 2.6rem); }

   .svc-card--ac{
    top: -15px;
  }

  .svc-card--fridge{
    bottom: -15px;
  }

  .svc-card--wash{
    left: -20px;
    top: 80px
  }

  .svc-card--micro{
    top: 300px;
    right: -20px;
  }
}

.about-floating-card{
    position:absolute;
    bottom:20px;
    right:-20px;
    background:var(--clr-primary-dark);
    padding:15px 20px;
    border-radius:12px;
    text-align:center;
}

@media(max-width:991px){
    .about-floating-card{
        right:10px;
        bottom:10px;
    }
}

.service-card-v3 {
  background: #fff;
  border-radius: 12px;
  /* KEY FIX: overflow must NOT be hidden on the card —
     Bootstrap collapse measures height on the collapse div's
     parent chain; overflow:hidden on an ancestor cuts the
     animation and bleeds into sibling cards.
     Image clipping is handled by .service-img-wrap instead. */
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
  position: relative;
}
 
.service-card-v3:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.18),
              0 0 0 1px rgba(37, 99, 235, 0.06);
}
 
/* Animated gradient border on hover */
.service-card-v3::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, #2563eb, #60a5fa, #2563eb);
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: borderShimmer 3s linear infinite;
  pointer-events: none;
  z-index: 10;
}
 
.service-card-v3:hover::before {
  opacity: 1;
}
 
@keyframes borderShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
 
/* Image wrapper — handles clipping so the card doesn't need to */
.service-img-wrap {
  position: relative;
  border-radius: 12px 12px 0 0;
  overflow: hidden;           /* clips zoom & shine to image only */
}
 
.service-img-wrap img {
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
 
.service-card-v3:hover .service-img-wrap img {
  transform: scale(1.08);
}
 
/* Shine sweep */
.service-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.25) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
  pointer-events: none;
}
 
.service-card-v3:hover .service-img-wrap::after {
  left: 150%;
}
 
/* Floating icon — unchanged */
.service-icon-float {
  position: relative;
  z-index: 5;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}
 
.service-card-v3:hover .service-icon-float {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}
 
.service-icon-float i {
  transition: transform 0.3s ease;
}
 
.service-card-v3:hover .service-icon-float i {
  transform: rotate(-10deg) scale(1.1);
}
 
/* Details expand box */
.service-details-box {
  background: #f8fafc;
  animation: slideDown 0.35s ease;
  position: relative;
}
 
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
/* Toggle button */
.service-toggle-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
 
.service-toggle-btn .toggle-icon {
  transition: transform 0.3s ease;
}
 
.service-toggle-btn[aria-expanded="true"] .toggle-icon {
  transform: rotate(45deg);
}
 
/* Entrance animations */
.service-card-v3 {
  opacity: 0;
  transform: translateY(30px);
  animation: cardEnter 0.6s ease forwards;
}
 
.service-card-v3:nth-child(1) { animation-delay: 0.1s; }
.service-card-v3:nth-child(2) { animation-delay: 0.2s; }
.service-card-v3:nth-child(3) { animation-delay: 0.3s; }
.service-card-v3:nth-child(4) { animation-delay: 0.4s; }
 
@keyframes cardEnter {
  to { opacity: 1; transform: translateY(0); }
}
 
@media (max-width: 767.98px) {
  .service-card-v3:hover {
    transform: translateY(-6px);
  }
}


/* CTA */

.repair-cta-box{
    background: linear-gradient(
        135deg,
        var(--clr-primary),
        var(--clr-primary-dark)
    );
    
    color:#fff;
    padding:5rem 2rem;
    border-radius:12px;
    position:relative;
    overflow:hidden;
}

.repair-cta-box::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-150px;
    right:-100px;
}

.repair-cta-box::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-120px;
    left:-80px;
}

.repair-cta-box > *{
    position:relative;
    z-index:2;
}



#coverage {
  background: #F1F5F9;
  padding: 3rem 2rem;
  text-align: center;
}

.cov-eyebrow {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2563EB;
  margin: 0 0 0.5rem;
}

.cov-title {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 0.4rem;
}

.cov-sub {
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 14px;
  color: #64748B;
  margin: 0 0 2rem;
}

.cov-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  width: 100%;
  margin: 0 auto 2rem;
}

.area-pill {
  display: block;
  background: #fff;
  border: 1px solid #DBEAFE;
  color: #1E40AF;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 8px;
  border-radius: 6px;
  text-align: center;
  transition: background var(--transition, .25s ease),
              border-color var(--transition, .25s ease),
              color var(--transition, .25s ease),
              transform var(--transition, .25s ease);
}

.area-pill:hover {
  background: #2563EB;
  border-color: #2563EB;
  color: #fff;
  transform: translateY(-2px);
}

.cov-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cov-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 7px;
  text-decoration: none;
  transition: opacity var(--transition, .25s ease),
              transform var(--transition, .25s ease);
}

.cov-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.cov-btn i {
  font-size: 15px;
}

.cov-btn-wa {
  background: #16A34A;
  color: #fff;
}

.cov-btn-call {
  background: #fff;
  border: 1px solid #CBD5E1;
  color: #0F172A;
}

@media (max-width: 480px) {
  .cov-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   SMART COOL — SECTIONS STYLESHEET
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */



/* ─── HELPERS ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-eyebrow i { font-size: .8rem; }

.display-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.5px;
}
.lead-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 500px;
  margin: 12px 0 0;
}

/* ════════════════════════════════════════════
   BRANDS — warm cream / amber palette
════════════════════════════════════════════ */
#brands {
  background: var(--cream);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

/* decorative arc */
#brands::before {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 60px solid var(--amber-border);
  opacity: .35;
  pointer-events: none;
}

#brands .section-head { margin-bottom: 52px; }
#brands .section-eyebrow { color: var(--amber); }
#brands .display-title em {
  font-style: italic;
  color: var(--amber);
}
#brands .lead-text { color: var(--muted); }

/* Marquee */
.marquee-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 64px;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left:  0; background: linear-gradient(to right,  var(--cream), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--cream), transparent); }

.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--white);
  border: 1.5px solid var(--amber-border);
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink2);
  white-space: nowrap;
  transition: all .25s;
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.brand-chip i { color: var(--amber-lt); font-size: .85rem; }
.brand-chip:hover {
  background: var(--amber-pale);
  border-color: var(--amber-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,119,6,.15);
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--amber-border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  height: auto; /* fixed chip height */
}

.brand-chip img {
  width: auto;
  height: 70px; /* controls logo size */
  max-width: 90px;
  object-fit: contain;
  display: block;
}

.brand-chip span {
  line-height: 1;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid var(--amber-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.stat-cell {
  padding: 28px 20px;
  text-align: center;
  border-right: 1.5px solid var(--amber-border);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: .78rem; color: var(--muted); letter-spacing: .3px; font-weight: 400; }

/* ════════════════════════════════════════════
   HOW IT WORKS — dark slate palette
════════════════════════════════════════════ */
#how-it-works {
  background: var(--slate);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* grid texture */
#how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

#how-it-works .section-head { margin-bottom: 72px; text-align: center; }
#how-it-works .section-eyebrow { color: #94A3B8; }
#how-it-works .display-title { color: var(--white); }
#how-it-works .lead-text { color: #94A3B8; margin: 12px auto 0; text-align: center; }

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

/* dashed connector between steps */
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 1px;
  border-top: 2px dashed rgba(255,255,255,.12);
  z-index: 0;
}

.hiw-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 32px 0;
}

.step-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.hiw-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  position: relative;
}
.hiw-icon.outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
}
.hiw-icon.filled {
  background: var(--white);
  color: var(--slate);
  box-shadow: 0 0 48px rgba(255,255,255,.12);
}

.hiw-step-num {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 10px;
  display: block;
}
.hiw-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.hiw-step p {
  font-size: .875rem;
  font-weight: 300;
  color: #94A3B8;
  line-height: 1.75;
}

/* ════════════════════════════════════════════
   FAQ — clean white, TWO COLUMNS
════════════════════════════════════════════ */
#faq {
  background: var(--white);
  padding: 100px 0;
  position: relative;
}

/* subtle diagonal stripe */
#faq::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 380px; height: 380px;
  background: radial-gradient(circle at top right, #EFF6FF 0%, transparent 70%);
  pointer-events: none;
}

#faq .section-head { margin-bottom: 56px; }
#faq .section-eyebrow { color: var(--blue); }
#faq .display-title { color: var(--ink); }
#faq .lead-text { color: var(--muted); }

/* TWO COLUMN GRID */
.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  align-items: start;
}

.faq-item {
  border: 1.5px solid #E5E7EB;
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq-item.open {
  border-color: var(--blue-border);
  box-shadow: 0 4px 24px rgba(59,130,246,.08);
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  transition: color .2s;
}
.faq-item.open .faq-btn { color: var(--blue); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
  font-size: .8rem;
  color: var(--muted);
}
.faq-item.open .faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-body { max-height: 220px; }

.faq-body-inner {
  padding: 0 22px 20px;
  border-top: 1.5px solid #F3F4F6;
  padding-top: 14px;
  font-size: .875rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ════════════════════════════════════════════
   CTA — teal / dark
════════════════════════════════════════════ */
#cta {
  background: var(--teal);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

/* wave at top */
#cta::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 0%);
  pointer-events: none;
}
#cta::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: #F7F5F2;
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-eyebrow {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
  display: block;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.cta-sub {
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
}

.cta-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.cta-perk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 5px 14px;
}
.cta-perk i { font-size: .75rem; color: rgba(255,255,255,.9); }

.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  background: #FFFFFF;
  color: var(--teal);
  font-weight: 700;
  font-size: .9rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}
.btn-wa:hover {
  background: #F0FDFA;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,.2);
  color: var(--teal);
}
.btn-wa i { color: #16A34A; font-size: 1rem; }

.btn-ph {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.35);
  transition: all .3s;
}
.btn-ph:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-3px);
  color: white;
}

/* Phone cards on the right */
.cta-cards { display: flex; flex-direction: column; gap: 12px; min-width: 230px; }
.cta-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-md);
  padding: 20px 24px;
  backdrop-filter: blur(8px);
}
.cta-card-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 6px;
}
.cta-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.cta-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
}
.cta-card-tag i { font-size: .7rem; }

/* ════════════════════════════════════════════
   TESTIMONIALS — off-white warm
════════════════════════════════════════════ */
#testimonials {
  background: var(--off-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '';
  position: absolute;
  bottom: 0; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 50px solid rgba(217,119,6,.07);
  pointer-events: none;
}

#testimonials .section-head { margin-bottom: 56px; }
#testimonials .section-eyebrow { color: var(--amber); }
#testimonials .display-title { color: var(--ink); }
#testimonials .lead-text { color: var(--muted); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.testi-card {
  background: var(--white);
  border: 1.5px solid #E9E6E0;
  border-radius: var(--r-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .3s;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(217,119,6,.07);
  user-select: none;
  pointer-events: none;
}
.testi-card:nth-child(2) { margin-top: 28px; }
.testi-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber-border);
  box-shadow: 0 20px 56px rgba(217,119,6,.1);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.testi-stars i { color: var(--amber-lt); font-size: .8rem; }

.testi-text {
  font-size: .875rem;
  line-height: 1.78;
  color: #4B5563;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1.5px solid #F3F0EB;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  color: white;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: .875rem; color: var(--ink); }
.testi-loc  { font-size: .75rem; color: var(--muted-lt); }
.testi-badge {
  margin-left: auto;
  font-size: .65rem;
  font-weight: 600;
  color: #16A34A;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   FOOTER — RepairXpert Theme
   ============================================================ */
#footer {
  background: var(--clr-dark, #0F172A);
  padding: 72px 0 32px;
  position: relative;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary, #2563EB) 0%, var(--clr-accent-blue, #60A5FA) 50%, var(--clr-success, #22C55E) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ── Brand ── */
.footer-brand {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand span { color: var(--clr-primary, #2563EB); }

.footer-desc {
  font-size: .85rem;
  font-weight: 400;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── CTA Buttons ── */
.footer-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.footer-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: #16A34A;
  color: white;
  border-radius: var(--border-radius-sm, 4px);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 600;
  transition: all .25s;
}

.footer-btn-wa:hover { background: #15803D; transform: translateY(-2px); color: white; }

.footer-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: rgba(255,255,255,.06);
  color: #94A3B8;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--border-radius-sm, 4px);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 500;
  transition: all .25s;
}

.footer-btn-call:hover { color: white; background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ── Social Icons ── */
.footer-social { display: flex; gap: 10px; }

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-sm, 4px);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all .25s;
}

.social-icon:hover {
  background: var(--clr-primary, #2563EB);
  border-color: var(--clr-primary, #2563EB);
  color: white;
  transform: translateY(-2px);
}

/* ── Column Titles ── */
.footer-col-title {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 20px;
}

/* ── Links ── */
.footer-list { list-style: none; padding: 0; margin: 0; }

.footer-list li { margin-bottom: 9px; }

.footer-list a {
  color: #94A3B8;
  text-decoration: none;
  font-size: .855rem;
  font-weight: 400;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}

.footer-list a:hover { color: #fff; padding-left: 4px; }

/* ── Contact Rows ── */
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-ico {
  width: 30px; height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
}

.footer-ico.blue  { background: rgba(37,99,235,.12); color: var(--clr-accent-blue, #60A5FA); }
.footer-ico.green { background: rgba(22,163,74,.12);  color: #4ADE80; }
.footer-ico.amber { background: rgba(245,158,11,.12); color: #FBBF24; }

.footer-contact-text {
  font-size: .855rem;
  color: #94A3B8;
  font-weight: 400;
  line-height: 1.55;
}

.footer-contact-text a {
  color: #94A3B8;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

.footer-contact-text a:hover { color: white; }

/* ── Bottom Bar ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
}

.footer-copy { font-size: .78rem; color: rgba(255,255,255,.22); font-weight: 400; margin: 0; }

.footer-credit { 
  font-size: .78rem; 
  color: rgba(255,255,255,.22); 
  font-weight: 400; 
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.avanteia-logo {
  height: 20px;
  width: auto;
  opacity: 0.7;
  transition: opacity .2s;
}

.avanteia-logo:hover { opacity: 1; }

.footer-credit a {
  color: var(--clr-accent-blue, #60A5FA);
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
}

.footer-credit a:hover { color: #fff; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-credit { justify-content: center; }
}

.footer-brand-wrap{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:15px;
}

.footer-brand-wrap img{
  height:65px;
  width:auto;
}

/* ════════════════════════════════════════════
   RESPONSIVE — Tablet & Mobile
   (Desktop styles above remain untouched)
════════════════════════════════════════════ */

/* ── Tablet (≤ 991px) ── */
@media (max-width: 991px) {

  /* How it works: 3 columns → 1 column */
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 520px;
    margin: 0 auto;
  }
  .hiw-steps::before { display: none; }          /* hide dashed connector */
  .hiw-step { padding: 0; }
  .step-badge { font-size: 4rem; top: -8px; }

  /* FAQ: 2 columns → 1 column */
  .faq-columns {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
  }

  /* CTA: side-by-side → stacked */
  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-cards {
    flex-direction: row;
    justify-content: center;
    min-width: auto;
  }
  .cta-perks { justify-content: center; }
  .cta-actions { justify-content: center; }

  /* Testimonials: 3 columns → 2 columns */
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-card:nth-child(2) { margin-top: 0; }
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {

  /* Section breathing room */
  #how-it-works,
  #faq,
  #testimonials { padding: 72px 0; }
  #cta { padding: 64px 0; }

  /* Section titles */
  .display-title { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Brands stats: 4 columns → 2×2 grid */
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1),
  .stat-cell:nth-child(2) { border-bottom: 1.5px solid var(--amber-border); }

  /* How it works */
  .hiw-icon {
    width: 64px; height: 64px;
    font-size: 1.4rem;
  }
  .hiw-step h4 { font-size: 1.1rem; }

  /* FAQ */
  .faq-btn { padding: 16px 18px; font-size: .85rem; }
  .faq-body-inner { padding: 0 18px 16px; font-size: .82rem; }

  /* CTA */
  .cta-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cta-cards {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .cta-card { width: 100%; max-width: 280px; }
  .cta-perks { gap: 6px; }
  .cta-perk { font-size: .7rem; padding: 4px 10px; }
  .btn-wa, .btn-ph {
    padding: 13px 22px;
    font-size: .85rem;
    width: 100%;
    justify-content: center;
  }
  .cta-actions { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }

  /* Testimonials: 2 columns → 1 column */
  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .testi-card { padding: 24px; }
  .testi-text { font-size: .82rem; }

  /* Marquee fade masks narrower on small screens */
  .marquee-wrap::before,
  .marquee-wrap::after { width: 40px; }
}

/* ── Small Mobile (≤ 480px) ── */
@media (max-width: 480px) {

  /* Brands stats: 2×2 → single column */
  .stats-row {
    grid-template-columns: 1fr;
  }
  .stat-cell { border-right: none; border-bottom: 1.5px solid var(--amber-border); }
  .stat-cell:last-child { border-bottom: none; }

  /* Brand chips slightly smaller */
  .brand-chip { padding: 6px 10px; }
  .brand-chip img { height: 36px; max-width: 56px; }

  /* CTA wave curves less dramatic */
  #cta::before, #cta::after { height: 50px; }
}

/* ════════════════════════════════════════════
   NAVBAR — true center fix (desktop only)
════════════════════════════════════════════ */
@media (min-width: 992px) {
  .navbar-inner {
    display: flex;
    align-items: center;
  }

  /* Collapse takes all space after logo */
  #mainNav {
    flex: 1;
    display: flex !important;
    position: relative;
    justify-content: flex-start; /* remove Bootstrap's centering */
  }

  /* Nav links center in the FULL width of #mainNav */
  .navbar-nav {
    margin: 0 auto;
  }

  /* Actions sit at the right edge without pushing the nav */
  .nav-actions {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
    flex-direction: row !important;
    align-items: center !important;
    margin-top: 0 !important;
  }
}






/* ============================================================
   GALLERY — Portrait Slider
   ============================================================ */

/* ── Tab toggle ── */
.gallery-tabs-inner {
  display: inline-flex;
  background: #F1F5F9;
  border: 0.5px solid #CBD5E1;
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
}

.gallery-tab-btn {
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
  background: transparent;
  border: none;
  padding: 8px 20px;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s;
}

.gallery-tab-btn.active {
  background: #ffffff;
  color: #185FA5;
  border: 0.5px solid #CBD5E1;
}

.gallery-tab-btn:hover:not(.active) {
  background: rgba(24, 95, 165, 0.07);
  color: #185FA5;
}

.gallery-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  background: #E6F1FB;
  color: #185FA5;
}

/* ── Panel visibility ── */
.gallery-panel {
  display: none;
}

.gallery-panel.visible {
  display: block;
  animation: gFadeIn 0.35s ease;
}

@keyframes gFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Slider structure ── */
.slider-wrap {
  position: relative;
  overflow: hidden;
}

.track-outer {
  overflow: hidden;
  border-radius: 10px;
}

.track {
  display: flex;
  gap: 10px;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

/* ── Portrait card ── */
.pg-card {
  flex: 0 0 auto;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  position: relative;
  cursor: pointer;
  background: #0f172a;
}

.pg-card img,
.pg-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.pg-card:hover img,
.pg-card:hover video{
  transform: scale(1.06);
}

/* Video cards slightly shorter */
#track-videos .pg-card {
  aspect-ratio: 9 / 16;
}

/* ── Hover overlay ── */
.pg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.1) 45%, transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 2;
}

.pg-card:hover .pg-overlay {
  opacity: 1;
}

.pg-label {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: rgba(24, 95, 165, 0.8);
  padding: 3px 9px;
  border-radius: 4px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* ── Video card extras ── */
.vg-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.22);
  pointer-events: none;
  z-index: 1;
  border-radius: 10px;
}

.vg-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #185FA5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 2;
  transition: transform 0.2s, background 0.2s;
}

.pg-card:hover .vg-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: #0C447C;
}

/* ── Arrow buttons ── */
.arr-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #334155;
  font-size: 18px;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.arr-btn:hover {
  background: #185FA5;
  color: #fff;
  border-color: #185FA5;
  transform: translateY(-50%) scale(1.08);
}

.arr-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.arr-left  { left: 1px; }
.arr-right { right: 1px; }

/* ── Dot pagination ── */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.gallery-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CBD5E1;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.gallery-dots .dot.active {
  background: #185FA5;
  transform: scale(1.3);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .arr-left  { left: -12px; }
  .arr-right { right: -12px; }
  .arr-btn   { width: 32px; height: 32px; font-size: 15px; }
}

/* ============================================================
   VIDEO LIGHTBOX
   ============================================================ */
.vlb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.vlb-overlay.open {
  display: flex;
}

.vlb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.88);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.vlb-container {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 960px;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  display: flex;
  flex-direction: column;
}

.vlb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 12px;
}

.vlb-title {
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vlb-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.vlb-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #e2e8f0;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.vlb-btn:hover {
  background: #185FA5;
  border-color: #185FA5;
  color: #fff;
}

.vlb-video-wrap {
  width: 100%;
  background: #000;
  line-height: 0;
}

.vlb-video-wrap video {
  width: 100%;
  max-height: 80vh;
  display: block;
  outline: none;
}

/* Fullscreen state — container fills screen */
.vlb-overlay.is-fullscreen .vlb-container {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  border-radius: 0;
}

.vlb-overlay.is-fullscreen .vlb-video-wrap video {
  max-height: calc(100vh - 57px);
  height: calc(100vh - 57px);
  object-fit: contain;
}

/* Animate in */
.vlb-container {
  animation: vlbIn 0.28s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes vlbIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
  .vlb-container {
    width: 100vw;
    border-radius: 0;
  }
}

.whatsapp-float{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(37,211,102,.35);
    transition: all .3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    color: #fff;
    transform: translateY(-4px) scale(1.05);
}

@keyframes whatsappPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media (max-width:768px){
    .whatsapp-float{
        width: 55px;
        height: 55px;
        font-size: 28px;
        right: 18px;
        bottom: 18px;
    }
}




/* ════════════════════════════════════════════
   WHY CHOOSE US — Dark (unchanged)
════════════════════════════════════════════ */
#why-us {
  background: #0b1221;
  padding: 70px 0;
  position: relative;
  border-top: 1px solid rgba(255,255,255,.04);
}

.wu-head { margin-bottom: 44px; }
.wu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--clr-accent-blue);
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(96,165,250,.2);
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: .8rem;
}
.wu-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #f0f6ff;
  letter-spacing: -.5px;
  margin-bottom: .5rem;
}
.wu-title em { color: var(--clr-accent-blue); font-style: italic; }
.wu-sub {
  font-size: .9rem;
  color: #94A3B8;
  max-width: 460px;
  margin: 0 auto;
}

.wu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.wu-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--border-radius-lg);
  padding: 28px 22px;
  transition: all .3s;
}
.wu-card:hover {
  transform: translateY(-5px);
  border-color: rgba(96,165,250,.2);
  background: rgba(255,255,255,.06);
  box-shadow: 0 16px 40px rgba(37,99,235,.1);
}

.wu-icon {
  width: 48px; height: 48px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: transform .3s;
}
.wu-card:hover .wu-icon { transform: scale(1.1); }

.wu-icon--blue  { background: rgba(37,99,235,.15);  color: #60a5fa; border: 1px solid rgba(96,165,250,.25); }
.wu-icon--amber { background: rgba(245,158,11,.12); color: #fbbf24; border: 1px solid rgba(245,158,11,.25); }
.wu-icon--green { background: rgba(34,197,94,.12);  color: #4ade80; border: 1px solid rgba(34,197,94,.25); }
.wu-icon--red   { background: rgba(239,68,68,.12);   color: #f87171; border: 1px solid rgba(239,68,68,.25); }

.wu-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #f0f6ff;
  margin-bottom: 8px;
}
.wu-card p {
  font-size: .82rem;
  color: #94A3B8;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 991.98px) {
  .wu-grid { grid-template-columns: repeat(2, 1fr); }
  #why-us { padding: 60px 0; }
}
@media (max-width: 575.98px) {
  .wu-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .wu-card { padding: 24px 20px; }
}

/* ════════════════════════════════════════════
   OUR STORY — Warm Cream
════════════════════════════════════════════ */
#our-story {
  background: #faf8f5;
  padding: 70px 0;
  position: relative;
  border-top: 1px solid #e9e6e0;
}

.os-visual { position: relative; }
.os-visual img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  border: 1.5px solid #e2ded6;
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
  display: block;
}
.os-badge {
  position: absolute;
  bottom: -18px;
  right: 20px;
  background: #1e293b;
  border-radius: var(--border-radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.os-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.os-text {
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.3;
}

.os-copy { position: relative; z-index: 1; }
.os-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fde68a;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: .8rem;
}
.os-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #1c1917;
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: .8rem;
}
.os-title em { color: #b45309; font-style: italic; }
.os-sub {
  font-size: .95rem;
  color: #57534e;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.os-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 1.5rem;
}
.osv-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.osv-item > i {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fef3c7;
  border: 1px solid #fde68a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #b45309;
  flex-shrink: 0;
}
.osv-item h5 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 2px;
}
.osv-item p {
  font-size: .85rem;
  color: #78716c;
  line-height: 1.6;
  margin: 0;
}

.os-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.os-btn {
  display: inline-flex;
  align-items: center;
  background: #1e293b;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  padding: .7rem 1.5rem;
  border-radius: var(--border-radius-pill);
  border: none;
  transition: all .25s;
  text-decoration: none;
}
.os-btn:hover {
  background: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
  color: #fff;
}

.os-team {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: #78716c;
}
.os-avatars { display: flex; }
.os-avatars img {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #faf8f5;
  object-fit: cover;
  margin-left: -8px;
}
.os-avatars img:first-child { margin-left: 0; }
.os-team strong { color: #1c1917; }

@media (max-width: 991.98px) {
  #our-story { padding: 60px 0; }
  .os-visual img { height: 280px; }
  .os-badge { right: 12px; padding: 10px 16px; }
  .os-num { font-size: 1.8rem; }
}
@media (max-width: 575.98px) {
  .os-visual img { height: 220px; }
  .os-badge { bottom: -14px; }
  .os-num { font-size: 1.5rem; }
  .osv-item > i { width: 34px; height: 34px; font-size: .9rem; }
}







/*Contact Page*/

/* ===================================
   HERO
=================================== */

/* ==========================================================
   CONTACT HERO SECTION
   ========================================================== */

.contact-hero{
  min-height:48vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 20px;
  position:relative;
  overflow:hidden;

  background:
  radial-gradient(
    circle at top right,
    rgba(96,165,250,.25),
    transparent 35%
  ),
  linear-gradient(
    135deg,
    var(--clr-primary-dark),
    var(--clr-primary)
  );
}

/* Decorative Circle */
.contact-hero::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  top:-220px;
  right:-150px;
}

/* Decorative Bottom Glow */
.contact-hero::after{
  content:"";
  position:absolute;
  width:400px;
  height:400px;
  border-radius:50%;
  background:rgba(255,255,255,.04);
  bottom:-200px;
  left:-150px;
}

.contact-hero-content{
  max-width:850px;
  position:relative;
  z-index:2;
}

/* Badge */
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(10px);
  color:white;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:25px;
}

/* Heading */
.contact-hero h1{
  font-size:clamp(34px,5vw,58px);
  color:white;
  line-height:1.08;
  margin:0 0 18px;
  font-weight:800;
}

.contact-hero h1 span{
  display:block;
  color:#BFDBFE;
}

/* Description */
.contact-hero p{
  max-width:600px;
  margin:auto;
  color:rgba(255,255,255,.88);
  font-size:17px;
  line-height:1.8;
}

/* Buttons */
.hero-buttons{
  margin-top:35px;
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

.hero-btn{
  padding:15px 30px;
  border-radius:12px;
  font-weight:700;
  transition:.3s ease;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.hero-btn.primary{
  background:white;
  color:var(--clr-primary);
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.hero-btn.secondary{
  border:1px solid rgba(255,255,255,.35);
  color:white;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
}

.hero-btn:hover{
  transform:translateY(-3px);
}

/* Mobile */
@media(max-width:768px){

  .contact-hero{
    min-height:42vh;
    padding:70px 20px;
  }

  .contact-hero h1{
    font-size:38px;
  }

  .contact-hero p{
    font-size:15px;
    line-height:1.7;
  }

  .hero-btn{
    width:100%;
    justify-content:center;
  }

  .hero-buttons{
    gap:12px;
  }
}


/* ===================================
   CONTACT SECTION
=================================== */

.contact-section{
  padding:100px 20px;
  background:
  linear-gradient(
  to bottom,
  #eef6ff,
  white
  );
}

.contact-wrapper{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

.section-tag{
  display:inline-block;
  padding:8px 16px;
  border-radius:999px;
  background:var(--clr-primary-light);
  color:var(--clr-primary);
  font-weight:700;
  margin-bottom:20px;
}

.contact-info h2{
  font-size:48px;
  margin-bottom:15px;
}

.contact-info p{
  color:var(--clr-text-muted);
  line-height:1.8;
}

.contact-card{
  display:flex;
  gap:18px;
  align-items:flex-start;
  padding:24px;
  background:white;
  border-radius:20px;
  margin-top:18px;
  border:1px solid #e2e8f0;
}

.icon-box{
  width:55px;
  height:55px;
  background:var(--clr-primary);
  color:white;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

.contact-card h4{
  margin-bottom:5px;
}




/* ===================================
   FORM
=================================== */

.contact-form-box{
  background:white;
  border-radius:30px;
  padding:40px;
  border:1px solid #dbeafe;
}

.contact-form-box h3{
  font-size:32px;
  margin-bottom:25px;
}

.form-group{
  margin-bottom:18px;
}

.form-group input,
.form-group textarea{
  width:100%;
  border:none;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:14px;
  padding:16px;
  font-size:15px;
}

.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--clr-primary);
}

.submit-btn{
  width:100%;
  border:none;
  padding:18px;
  border-radius:14px;
  background:linear-gradient(
  135deg,
  var(--clr-primary),
  var(--clr-primary-dark)
  );
  color:white;
  font-weight:700;
  cursor:pointer;
  font-size:16px;
}

.submit-btn:hover{
  opacity:.95;
}


/* ===================================
   MOBILE
=================================== */

@media(max-width:991px){

.contact-wrapper{
  grid-template-columns:1fr;
}

.contact-info h2{
  font-size:36px;
}

.contact-form-box{
  padding:30px;
}

.contact-hero{
  min-height:60vh;
}

.contact-hero h1{
  font-size:42px;
}
}


/* ==================== SUCCESS MODAL ==================== */
.rx-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.rx-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.rx-modal-box {
  background: white;
  padding: 45px 35px;
  border-radius: 24px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: scale(0.85) translateY(20px);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rx-modal-overlay.active .rx-modal-box {
  transform: scale(1) translateY(0);
}

.rx-modal-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 18px;
}

.rx-modal-icon circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: rxStroke 0.6s ease forwards;
}

.rx-modal-icon path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: rxStroke 0.4s ease 0.5s forwards;
}

@keyframes rxStroke {
  to { stroke-dashoffset: 0; }
}

.rx-modal-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.rx-modal-text {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.rx-modal-btn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rx-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(59,130,246,0.4);
}







body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: #f8fafc;
            color: #334155;
            overflow-x: hidden;
        }

        /* Full Width Sections */
        .section-full {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }

        .content-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Hero Section */
        .service-hero {
            background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .service-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-image-wrap {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
        }

        .hero-image-wrap img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .hero-image-wrap:hover img {
            transform: scale(1.03);
        }

        .hero-badge {
            display: inline-block;
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary-blue);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 4px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        /* Floating Icon Style (from card) */
        .service-icon-float {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
            margin-bottom: 1.5rem;
        }

        /* Detail Sections - Full Width */
        .detail-section {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            background: #ffffff;
            padding: 60px 0;
            border-bottom: 1px solid rgba(0,0,0,0.04);
        }

        .detail-section:nth-child(even) {
            background: #f8fafc;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-title i {
            color: var(--primary-blue);
            font-size: 1.3rem;
        }

        /* Service Items */
        .service-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
            background: white;
            margin-bottom: 12px;
            border: 1px solid rgba(0,0,0,0.04);
        }

        .service-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-color: rgba(37,99,235,0.2);
        }

        .service-item-icon {
            min-width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .service-item h5 {
            font-size: 1.05rem;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 6px;
        }

        .service-item p {
            font-size: 0.9rem;
            color: #64748b;
            margin: 0;
        }

        /* Brand Tags */
        .brand-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: white;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #475569;
            margin: 6px;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.06);
        }

        .detail-section:nth-child(even) .brand-tag {
            background: #f8fafc;
        }

        .brand-tag:hover {
            background: var(--primary-blue);
            color: rgb(5, 5, 5);
            transform: translateY(-2px);
            border-color: var(--clr-primary-dark);
        }

        /* Process Steps */
        .process-step {
            text-align: center;
            padding: 20px;
            position: relative;
        }

        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 35px;
            right: -30px;
            width: 60px;
            height: 2px;
            background: #e2e8f0;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 16px;
            font-size: 1.2rem;
            box-shadow: 0 8px 20px rgba(37,99,235,0.25);
        }

        /* CTA Buttons */
        .btn-primary-custom {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            border: none;
            color: white;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
            color: white;
        }

        .btn-outline-custom {
            border: 2px solid #0f172a;
            color: #0f172a;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .btn-outline-custom:hover {
            background: #0f172a;
            color: white;
        }

        /* Price Card */
        .price-highlight {
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            border-left: 4px solid var(--primary-blue);
            padding: 28px;
            border-radius: 0 16px 16px 0;
        }


        @media (max-width: 768px) {
            .hero-title { font-size: 1.75rem; }
            .hero-image-wrap img { height: 250px; }
            .process-step:not(:last-child)::after { display: none; }
            .sticky-cta { display: block; }
            .body-content { padding-bottom: 80px; }
            .detail-section { padding: 40px 0; }
            .content-wrap { padding: 0 16px; }
        }