/* ===================================================
   STAR CLEANING SERVICES — Master Stylesheet
   Color Palette:
     Deep Navy:   #0D1B2A
     Mid Navy:    #1A2E4A
     Bright Orange: #F97316
     Light Orange: #FB923C
     Sky Blue:    #38BDF8
     Light Blue:  #E0F2FE
     White:       #FFFFFF
   =================================================== */

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

:root {
  --navy:        #0D1B2A;
  --navy-mid:    #1A2E4A;
  --navy-light:  #243B55;
  --orange:      #F97316;
  --orange-lt:   #FB923C;
  --sky:         #38BDF8;
  --sky-lt:      #BAE6FD;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --gray:        #546478;
  --gray-lt:     #E2E8F0;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 2px 12px rgba(13,27,42,.08);
  --shadow-md:   0 8px 32px rgba(13,27,42,.14);
  --shadow-lg:   0 20px 60px rgba(13,27,42,.20);
  --transition:  0.35s cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

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

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-lt) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(249,115,22,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,.50);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 38px; font-size: 0.9rem; }
.btn-block { width: 100%; justify-content: center; padding: 18px; font-size: 0.95rem; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 18px 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

.navbar.scrolled {
  background: rgba(13,27,42,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.logo-star {
  font-size: 1.5rem;
  color: var(--orange);
  display: inline-block;
  animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}
.logo-text { font-size: 1.2rem; }
.logo-accent { font-size: 0.85rem; letter-spacing: 0.15em; color: var(--orange); text-transform: uppercase; font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  color: rgba(255,255,255,.8);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  transition: color .3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width .3s;
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  position: relative;
}

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

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,.88) 0%,
    rgba(13,27,42,.70) 50%,
    rgba(26,46,74,.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 60px 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
  background: rgba(249,115,22,.12);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(249,115,22,.3);
  white-space: nowrap;
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.accent-text { color: var(--orange); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.80);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.9);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-icon { font-size: 0.9rem; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 28px; height: 46px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { top: 8px; opacity: 1; }
  80%       { top: 26px; opacity: 0; }
}

/* ---------- SECTION HEADERS ---------- */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }

.section-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- SERVICES ---------- */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--off-white);
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--orange), var(--sky)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(56,189,248,.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
}

.service-icon {
  font-size: 2rem;
  display: inline-block;
  animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(249,115,22,0)); transform: scale(1); }
  50%       { filter: drop-shadow(0 0 10px rgba(249,115,22,.7)); transform: scale(1.12); }
}

.service-title {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-desc {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  flex-grow: 1;
}

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

.testimonials-track-wrapper {
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.testimonials-track {
  display: flex;
  gap: 28px;
  animation: testimonial-scroll 40s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}
.testimonials-track:active {
  cursor: grabbing;
}

@keyframes testimonial-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 380px;
  background: var(--white);
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: var(--transition);
  cursor: default;
  backface-visibility: hidden;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(249,115,22,.3);
  }
}

.testimonial-stars {
  color: var(--orange);
  font-size: 1.15rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial-quote {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: .03em;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .testimonial-card { width: 300px; padding: 28px 22px; }
}

/* ---------- WHY CHOOSE US ---------- */
.why-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

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

.why-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
}

.why-img-bg {
  width: 100%; height: 100%;
  background-image: url('why-us.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.9);
  transition: transform 8s ease;
}

.why-img-card:hover .why-img-bg { transform: scale(1.05); }

.why-stat-pill {
  position: absolute;
  bottom: 24px; right: -20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  color: var(--white);
  padding: 18px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.why-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.why-stat-label { font-size: 0.78rem; opacity: .85; font-weight: 600; }

.why-content-col .section-title { color: var(--white); }
.why-content-col .section-eyebrow { color: var(--sky); }

.why-desc {
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  line-height: 1.75;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}

.why-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.98rem;
}

.why-item p { color: rgba(255,255,255,.65); font-size: 0.88rem; }

/* ---------- CONTACT ---------- */
.contact-section { background: var(--off-white); }
.contact-section .section-title { color: var(--navy); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-lt);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--off-white);
  border: 1.5px solid var(--gray-lt);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--navy);
  transition: border-color .3s, box-shadow .3s;
  outline: none;
  width: 100%;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249,115,22,.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.78rem;
  margin-top: 14px;
}

.form-success {
  display: none;
  background: linear-gradient(135deg, rgba(56,189,248,.1), rgba(249,115,22,.08));
  border: 1.5px solid var(--sky);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 16px;
}

.form-success.show { display: block; animation: fade-down .5s ease; }

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Contact Info Card */
.contact-info-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.contact-info-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-icon { font-size: 1.3rem; margin-top: 2px; }

.detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sky);
  margin-bottom: 3px;
}

.detail-value { font-size: 0.95rem; font-weight: 600; color: var(--white); }

.detail-link { color: rgba(255,255,255,.85); transition: color .3s; }
.detail-link:hover { color: var(--orange); }

.contact-hours {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.contact-hours h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sky);
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-hours p { font-size: 0.88rem; color: rgba(255,255,255,.7); margin-bottom: 4px; }

/* ---------- FOOTER BAR ---------- */
.footer-bar {
  background: rgba(7,14,22,1);
  color: rgba(255,255,255,.55);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo .logo-star { font-size: 1rem; color: var(--orange); animation: spin-slow 8s linear infinite; }

.footer-copy { font-size: 0.8rem; text-align: center; flex: 1; }

.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,.5); transition: color .3s; }
.footer-links a:hover { color: var(--orange); }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for grid children */
.services-grid .service-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.services-grid .service-card.reveal:nth-child(3) { transition-delay: 0.19s; }
.services-grid .service-card.reveal:nth-child(4) { transition-delay: 0.26s; }
.services-grid .service-card.reveal:nth-child(5) { transition-delay: 0.33s; }
.services-grid .service-card.reveal:nth-child(6) { transition-delay: 0.40s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-badges { justify-content: center; margin-top: 15px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 50px; }
  .why-image-col { display: none; }
  .why-content-col { max-width: 680px; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 27, 42, 0.98);
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 998;
    overflow-y: auto;
  }

  .nav-links.open .nav-link {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-links.open + .nav-cta {
    display: block;
    position: fixed;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 999;
  }

  .hero-content {
    padding: 100px 24px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-eyebrow {
    white-space: normal;
    text-align: center;
  }
  .hero-sub {
    text-align: center;
  }
  .hero-btns {
    width: 100%;
    align-items: center;
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    text-align: center; justify-content: center;
  }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 24px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  .why-stat-pill { right: 12px; bottom: 12px; }
  .hero-scroll-indicator { display: none; }
  .badge { font-size: 0.7rem; padding: 5px 12px; }
  .badge-icon { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .hero-eyebrow {
    font-size: 0.7rem;
    padding: 5px 12px;
    letter-spacing: .06em;
    white-space: normal;
    text-align: center;
  }
  .hero-headline { font-size: 2rem; }
  .hero-badges { justify-content: center; gap: 8px; flex-wrap: wrap; }
  .badge { padding: 5px 10px; font-size: 0.68rem; gap: 4px; }
  .badge-icon { font-size: 0.78rem; }
  .services-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.7rem; }
}

/* ---------- ACCESSIBILITY ---------- */
.btn:focus-visible,
.nav-link:focus-visible,
.footer-links a:focus-visible,
.detail-link:focus-visible,
.logo:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto !important; }
  .testimonials-track { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
