/* Fresh lower-homepage theme: Why Choose Us through footer */
.page-home {
  --home-ink: #07151d;
  --home-muted: #5f6d76;
  --home-soft: #f4f9fb;
  --home-line: rgba(7, 21, 29, 0.09);
  --home-cyan: #00c2ff;
  --home-cyan-dark: #008fbd;
  --home-radius: 24px;
  --home-shadow: 0 18px 55px rgba(11, 37, 50, 0.09);
}

.page-home .section {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
}

.page-home .section-header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 48px;
}

.page-home .section-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin: 0 auto 14px;
  padding: 7px 13px;
  border: 1px solid rgba(0, 194, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 194, 255, 0.09);
  color: var(--home-cyan-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.page-home .section-header .section-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-cyan);
  box-shadow: 0 0 0 5px rgba(0, 194, 255, 0.12);
}

.page-home .section-header h2 {
  color: var(--home-ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.page-home .section-header p {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* Why choose */
.page-home .features {
  background:
    radial-gradient(circle at 8% 15%, rgba(0, 194, 255, 0.13), transparent 27%),
    radial-gradient(circle at 92% 84%, rgba(0, 194, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f7fbfd 100%);
}

.page-home .features::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 90px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(0, 194, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 36px rgba(0, 194, 255, 0.035),
    0 0 0 72px rgba(0, 194, 255, 0.02);
}

.page-home .features-grid {
  position: relative;
  z-index: 2;
  gap: 18px;
}

.page-home .feature-item {
  position: relative;
  min-height: 100%;
  padding: 30px 24px 28px;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 35px rgba(11, 37, 50, 0.06);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-home .feature-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--home-cyan), transparent 78%);
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.page-home .feature-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 194, 255, 0.3);
  box-shadow: var(--home-shadow);
}

.page-home .feature-item:hover::before {
  transform: scaleX(1);
}

.page-home .feature-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border-radius: 19px;
  background: linear-gradient(145deg, #e6f9ff, #fff);
  box-shadow: inset 0 0 0 1px rgba(0, 194, 255, 0.17);
}

.page-home .feature-item h3 {
  margin-bottom: 10px;
  color: var(--home-ink);
  font-size: 1.03rem;
}

.page-home .feature-item p {
  color: var(--home-muted);
  line-height: 1.7;
}

/* Services */
.page-home .home-services {
  padding: 108px 0;
}

.page-home .home-services-header .section-tag {
  color: #83e5ff;
  border-color: rgba(131, 229, 255, 0.22);
  background: rgba(0, 194, 255, 0.1);
}

.page-home .home-services-header h2 {
  color: #fff;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.page-home .home-services-header p {
  color: rgba(255, 255, 255, 0.76);
}

.page-home .home-service-card {
  border-radius: 22px;
}

/* Inventory */
.page-home .inventory {
  background:
    linear-gradient(rgba(7, 21, 29, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 21, 29, 0.025) 1px, transparent 1px),
    #fff;
  background-size: 34px 34px;
}

.page-home .inventory-grid {
  gap: 22px;
}

.page-home .car-card {
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(11, 37, 50, 0.07);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.page-home .car-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 24px 54px rgba(11, 37, 50, 0.14);
}

.page-home .car-img {
  overflow: hidden;
}

.page-home .car-img img {
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.page-home .car-card:hover .car-img img {
  transform: scale(1.055);
}

.page-home .car-body {
  padding: 22px;
}

.page-home .car-actions .btn {
  width: 100%;
  justify-content: center;
  border-radius: 11px;
}

/* Brand strip */
.page-home .brand-bar {
  position: relative;
  padding: 34px 0;
  overflow: hidden;
  background: #f4f9fb;
}

.page-home .brand-bar-panel {
  border: 1px solid var(--home-line);
  border-radius: 24px;
  box-shadow: 0 16px 45px rgba(11, 37, 50, 0.07);
}

/* Galleries and reviews */
.page-home .happy-customers {
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 194, 255, 0.1), transparent 25%),
    #fff;
}

.page-home .happy-customers-grid {
  gap: 16px;
}

.page-home .happy-customers-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(11, 37, 50, 0.09);
}

.page-home .happy-customers-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 21, 29, 0.45));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-home .happy-customers-item img {
  transition: transform 0.55s ease;
}

.page-home .happy-customers-item:hover img {
  transform: scale(1.06);
}

.page-home .happy-customers-item:hover::after {
  opacity: 1;
}

.page-home .customer-reviews {
  background: var(--home-soft);
}

.page-home .review-card {
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 20px;
  box-shadow: 0 13px 38px rgba(11, 37, 50, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-home .review-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--home-shadow);
}

/* CTA */
.page-home .home-cta {
  position: relative;
  padding: 82px 0;
  overflow: hidden;
  background: #07151d;
}

.page-home .home-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(0, 194, 255, 0.24), transparent 34%),
    linear-gradient(120deg, transparent 56%, rgba(255, 255, 255, 0.035) 56%);
}

.page-home .home-cta-inner {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(9px);
}

/* FAQ */
.page-home .faq {
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 194, 255, 0.09), transparent 24%),
    linear-gradient(180deg, #fff, #f8fbfc);
}

.page-home .faq .container {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.page-home .faq .section-header {
  position: sticky;
  top: 110px;
  max-width: 420px;
  margin: 0;
  text-align: left;
}

.page-home .faq .section-header .section-tag {
  margin: 0 0 16px;
}

.page-home .faq .section-header h2 {
  font-size: clamp(2.1rem, 3.7vw, 3.15rem);
}

.page-home .faq .section-header .faq-intro {
  margin: 18px 0 0;
  color: var(--home-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.page-home .faq-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--home-ink);
  font-size: 0.85rem;
  font-weight: 700;
}

.page-home .faq-contact-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--home-cyan);
  transition: transform 0.2s ease;
}

.page-home .faq-contact-link:hover span {
  transform: translateX(4px);
}

.page-home .faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  margin: 0;
  gap: 13px;
}

.page-home .faq-item {
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(11, 37, 50, 0.045);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.page-home .faq-item:hover {
  transform: translateX(4px);
  border-color: rgba(0, 194, 255, 0.24);
}

.page-home .faq-item.open {
  border-color: rgba(0, 194, 255, 0.38);
  box-shadow: 0 15px 36px rgba(11, 37, 50, 0.08);
}

.page-home .faq-question {
  min-height: 66px;
  padding: 20px 22px;
  color: var(--home-ink);
  font-size: 0.94rem;
  line-height: 1.45;
}

.page-home .faq-question::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 194, 255, 0.09);
  font-size: 1.05rem;
}

.page-home .faq-item.open .faq-question {
  padding-bottom: 15px;
}

.page-home .faq-answer p {
  margin: 0;
  padding: 0 60px 22px 22px;
  color: var(--home-muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* Tools */
.page-home .tools {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(0, 194, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #f4f9fb, #edf6f9);
}

.page-home .tools .section-header {
  max-width: 580px;
  margin-bottom: 32px;
}

.page-home .tools .section-header h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.page-home .tools .section-header p {
  margin-top: 12px;
  font-size: 0.92rem;
  line-height: 1.65;
}

.page-home .tools-grid {
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.page-home .tool-card {
  overflow: hidden;
  border: 1px solid rgba(0, 194, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(11, 37, 50, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.page-home .tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 255, 0.24);
  box-shadow: 0 14px 38px rgba(11, 37, 50, 0.09);
}

.page-home .tool-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  overflow: hidden;
  border-bottom: 1px solid var(--home-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), #fff);
  color: var(--home-ink);
}

.page-home .tool-header::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 194, 255, 0.07);
}

.page-home .tool-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  color: #07151d;
  background: linear-gradient(145deg, #00c2ff, #7ae2ff);
  box-shadow: 0 6px 16px rgba(0, 194, 255, 0.28);
  font-size: inherit;
}

.page-home .tool-icon svg {
  width: 22px;
  height: 22px;
}

.page-home .tool-header h3 {
  color: var(--home-ink);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
}

.page-home .tool-header p {
  margin-top: 2px;
  color: var(--home-muted);
  font-size: 0.76rem;
  opacity: 1;
  line-height: 1.4;
}

.page-home .tool-body {
  padding: 18px 18px 20px;
}

.page-home .tool-intro {
  margin: 0 0 14px;
  color: var(--home-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.page-home .tool-body .form-group {
  margin-bottom: 12px;
}

.page-home .tool-body .form-group:last-of-type {
  margin-bottom: 14px;
}

.page-home .tool-body label {
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.page-home .tool-body input,
.page-home .tool-body select {
  padding: 10px 12px;
  border: 1px solid rgba(7, 21, 29, 0.1);
  border-radius: 10px;
  font-size: 0.88rem;
}

.page-home .tool-body input:focus,
.page-home .tool-body select:focus {
  border-color: rgba(0, 194, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.12);
}

.page-home .tool-body .form-row {
  gap: 12px;
}

.page-home .tool-submit {
  width: 100%;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.page-home .calc-result {
  margin-top: 4px;
  padding: 14px;
  border: 1px solid rgba(0, 194, 255, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 194, 255, 0.06), rgba(255, 255, 255, 0.9));
}

.page-home .calc-result .label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.page-home .calc-result .amount {
  margin-top: 2px;
  font-size: 1.55rem;
  line-height: 1.15;
  color: var(--home-cyan-dark);
}

.page-home .calc-details {
  gap: 8px;
  margin-top: 12px;
}

.page-home .calc-detail {
  padding: 8px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.page-home .calc-detail strong {
  font-size: 0.82rem;
  line-height: 1.3;
}

.page-home .calc-detail span {
  margin-top: 2px;
  font-size: 0.68rem;
}

/* Blog */
.page-home .home-blog {
  background: #fff;
}

.page-home .blog-grid {
  gap: 22px;
}

.page-home .blog-grid:has(.blog-card:only-child) {
  grid-template-columns: minmax(280px, 480px);
  justify-content: center;
}

.page-home .blog-card {
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 22px;
  box-shadow: 0 12px 36px rgba(11, 37, 50, 0.065);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.page-home .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--home-shadow);
}

.page-home .blog-card-image {
  overflow: hidden;
}

.page-home .blog-card-image img {
  transition: transform 0.55s ease;
}

.page-home .blog-card:hover .blog-card-image img {
  transform: scale(1.055);
}

/* Shared CTA buttons */
.page-home .section-view-all .btn,
.page-home .inventory > .container > div:last-child .btn {
  border-radius: 999px;
  padding-inline: 24px;
}

/* Footer */
.page-home .footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #050d12;
}

.page-home .footer::before {
  content: "";
  position: absolute;
  top: -230px;
  left: 50%;
  width: 720px;
  height: 420px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0, 194, 255, 0.12);
  filter: blur(90px);
  pointer-events: none;
}

.page-home .footer-accent-line {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--home-cyan) 28%, #72e4ff 50%, var(--home-cyan) 72%, transparent);
}

.page-home .footer-main {
  position: relative;
  padding: 74px 0 34px;
}

.page-home .footer-grid {
  grid-template-columns: minmax(260px, 1.7fr) 1fr 1fr minmax(220px, 1.25fr);
  gap: 48px;
}

.page-home .footer-brand img {
  height: 70px;
  max-width: 210px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
}

.page-home .footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 194, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 194, 255, 0.08);
  color: #9befff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-user-select: none;
  user-select: none;
}

.page-home .footer-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-cyan);
  box-shadow: 0 0 0 4px rgba(0, 194, 255, 0.15);
}

.page-home .footer-brand p {
  max-width: 410px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.61);
  line-height: 1.8;
}

.page-home .footer-col h4 {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 12px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.page-home .footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--home-cyan);
}

.page-home .footer-col a {
  position: relative;
  width: max-content;
  max-width: 100%;
  padding: 5px 0 5px 16px;
  color: rgba(255, 255, 255, 0.63);
  transition: color 0.2s ease, transform 0.2s ease;
}

.page-home .footer-col a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 194, 255, 0.55);
  transform: translateY(-50%);
}

.page-home .footer-col a:hover {
  color: #fff;
  transform: translateX(4px);
}

.page-home .footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .footer-contact-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  line-height: 1.55;
}

.page-home .footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 194, 255, 0.2);
  border-radius: 11px;
  background: rgba(0, 194, 255, 0.075);
  color: #82e9ff;
  font-size: 1rem;
}

.page-home .footer-contact-item a,
.page-home .footer-contact-item span {
  align-self: center;
  padding: 0;
}

.page-home .footer-contact-item a::before {
  display: none;
}

.page-home .footer-contact-item a:hover {
  transform: none;
  color: #fff;
}

.page-home .footer-social-link {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.page-home .footer-social-link:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 255, 0.52);
  background: var(--home-cyan);
}

.page-home .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.page-home .footer-bottom p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
}

.page-home .footer-back-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 600;
}

.page-home .footer-back-top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 194, 255, 0.12);
  color: #8ceaff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.page-home .footer-back-top:hover span {
  transform: translateY(-3px);
  background: rgba(0, 194, 255, 0.23);
}

/* Reveal choreography */
.page-home [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.72s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: calc(var(--reveal-order, 0) * 70ms);
}

.page-home [data-reveal="left"] {
  transform: translateX(-34px);
}

.page-home [data-reveal="right"] {
  transform: translateX(34px);
}

.page-home [data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1024px) {
  .page-home .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .page-home .footer-contact-col {
    grid-column: 1 / -1;
  }

  .page-home .footer-contact-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-home .section,
  .page-home .tools {
    padding: 64px 0 72px;
  }

  .page-home .section-header {
    margin-bottom: 34px;
  }

  .page-home .section-header h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .page-home .faq .container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .page-home .faq .section-header {
    position: static;
    max-width: 620px;
  }

  .page-home .faq .section-header h2 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .page-home .faq-item:hover {
    transform: none;
  }

  .page-home .faq-answer p {
    padding-right: 22px;
  }

  .page-home .feature-item:hover,
  .page-home .car-card:hover,
  .page-home .review-card:hover,
  .page-home .tool-card:hover,
  .page-home .blog-card:hover {
    transform: none;
  }

  .page-home .footer-main {
    padding-top: 58px;
  }

  .page-home .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 26px;
  }

  .page-home .footer-brand,
  .page-home .footer-contact-col {
    grid-column: 1 / -1;
  }

  .page-home .footer-contact-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .page-home .feature-item {
    padding: 25px 20px;
  }

  .page-home .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-home .footer-brand,
  .page-home .footer-contact-col {
    grid-column: auto;
  }

  .page-home .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home {
    scroll-behavior: auto;
  }

  .page-home [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-home .feature-icon-flip,
  .page-home .feature-item,
  .page-home .car-card,
  .page-home .car-img img,
  .page-home .happy-customers-item img,
  .page-home .review-card,
  .page-home .tool-card,
  .page-home .blog-card,
  .page-home .blog-card-image img,
  .page-home .footer-social-link {
    animation: none;
    transition: none;
  }
}
