:root {
  --color-primary: #A91E21;
  --color-primary-hover: #A91E21;
  --color-bg-dark: #050505;
  --color-text-light: #ffffff;
  --color-text-muted: #b7b7b7;
  --header-height: 90px;
  --transition-fast: 0.25s ease;
  --container-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #000;
  color: var(--color-text-light);
}

html {
  scroll-behavior: smooth;
}

/* ===== GLOBAL ANIMATION HELPERS ===== */
@keyframes fadeDownSoft {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  animation: fadeUpSoft 0.9s ease 0.25s both;
}

.main-header {
  animation: fadeDownSoft 0.7s ease 0.1s both;
}

/* Initial scroll-reveal (overridden/enhanced later but kept harmless) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Utility container */
.hero-inner,
.top-bar-inner,
.nav-wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.main-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
  color: #000000;
  box-shadow: none;
}

.main-header.main-header--scrolled {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Top bar */
.top-bar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.75rem;
  color: #555555;
  background-color: #f9f9f9;
}

.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding-block: 0.35rem;
}

/* Nav wrapper */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--header-height);
  gap: 1rem;
  position: relative;
  background: #fff;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

/* ===== NAV BASE ===== */
.nav {
  flex: 1;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  background: none;
  border: none;
  color: #000000;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  padding: 0.2rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition-fast), transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-primary);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--color-primary);
}

/* Buttons container */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast), transform .15s ease, box-shadow .15s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .35);
}

.btn-outline {
  background: transparent;
  border-color: rgba(0, 0, 0, .3);
  color: #000;
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ===== HAMBURGER BUTTON ===== */
.nav-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1501;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--color-primary);
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle.nav-toggle--open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.nav-toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.nav-toggle--open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ===== RIGHT-SIDE MOBILE DRAWER ===== */
.ncw-backdrop[hidden] {
  display: none !important;
}

.ncw-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.ncw-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

.ncw-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 82%;
  max-width: 340px;
  background: #ffffff;
  color: #000;
  z-index: 1502;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: -4px 0 25px rgba(0, 0, 0, .35);
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.2rem 1.4rem;
  outline: none;
}

.ncw-drawer.is-open {
  transform: translateX(0);
}

.ncw-drawer-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.ncw-drawer-logo img {
  height: 46px;
  width: auto;
  display: block;
}

.ncw-drawer-close {
  margin-left: auto;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  color: #000;
}

.ncw-drawer-nav {
  margin-top: .25rem;
}

.ncw-drawer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.ncw-drawer-link {
  display: block;
  padding: .75rem .25rem;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.ncw-drawer-link:hover {
  color: var(--color-primary);
}

.ncw-drawer-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.ncw-full {
  width: 100%;
  justify-content: center;
}

/* Prevent body scroll when drawer open */
body.nav-open {
  overflow: hidden;
}

/* ========= DESKTOP ========= */
@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
}

/* ========= MOBILE ========= */
@media (max-width: 768px) {
  .nav-wrapper {
    gap: 0.5rem;
    height: var(--header-height);
  }

  .nav {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
}

/* ===== HERO SECTION WITH SLIDESHOW ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding-top: calc(var(--header-height) + 24px);
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.9s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .7) 35%, rgba(0, 0, 0, .25) 65%, rgba(0, 0, 0, .1) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  width: 100%;
}

.hero-text {
  max-width: 560px;
}

.hero-kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin: 0 0 0.9rem;
}

.hero-title {
  margin: 0 0 1.2rem;
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 700;
}

.hero-subtitle {
  margin: 0 0 1.6rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 480px;
}

.btn-hero {
  background-color: var(--color-primary);
  border-radius: 999px;
  color: #fff;
  font-size: 0.85rem;
  padding-inline: 1.5rem;
}

.btn-hero i {
  margin-left: 0.45rem;
}

/* ===== ABOUT / WHO WE ARE SECTION ===== */
.about-section {
  background-color: #ffffff;
  padding: 5rem 0;
}

.about-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.about-media {
  flex: 1;
  position: relative;
  min-width: 280px;
}

.about-image-main img,
.about-image-secondary img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image-main {
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
  overflow: hidden;
}

.about-image-secondary {
  position: absolute;
  left: 8%;
  bottom: -18%;
  width: 45%;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
  overflow: hidden;
}

.about-media:hover .about-image-main img {
  transform: scale(1.05);
}

.about-media:hover .about-image-secondary img {
  transform: scale(1.08);
}

.about-experience-badge {
  position: absolute;
  right: 6%;
  bottom: 4%;
  background: var(--color-primary);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.about-experience-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-text {
  font-size: 0.8rem;
  opacity: 0.95;
}

.about-content {
  flex: 1;
  color: #111111;
}

.section-kicker {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: #999999;
  margin: 0 0 0.6rem;
}

.section-title {
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  color: #111111;
}

.section-description {
  margin: 0 0 1.8rem;
  font-size: 0.95rem;
  color: #666666;
  max-width: 520px;
}

.about-features {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}

.about-features-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #333333;
}

.about-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f2f2f2;
  color: var(--color-primary);
  font-size: 0.75rem;
}

.btn-about {
  background-color: var(--color-primary);
  color: #fff;
  padding-inline: 1.7rem;
  font-size: 0.85rem;
}

.btn-about:hover {
  background-color: var(--color-primary-hover);
}

/* ===== CONTENT RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .top-bar-inner {
    justify-content: center;
    font-size: 0.7rem;
  }

  .nav-wrapper {
    height: auto;
    padding-block: 0.75rem;
    align-items: center;
  }

  .hero {
    padding-top: calc(var(--header-height) + 40px);
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .about-content {
    text-align: left;
  }

  .about-features {
    gap: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .top-bar {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 20px);
  }

  .about-section {
    padding: 3.5rem 0;
  }

  .about-media {
    max-width: 100%;
  }

  .about-image-secondary {
    left: 6%;
    bottom: -14%;
    width: 48%;
  }

  .about-experience-badge {
    padding: 0.8rem 1.1rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .about-features {
    flex-direction: column;
    gap: 1.2rem;
  }
}

/* ===== PROMO SERVICES STRIP ===== */
.detail-strip {
  background-color: #f5f5f5;
  padding: 2.8rem 0 0;
}

.detail-strip-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.detail-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}

.detail-strip-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #111111;
}

.btn-appointment {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
}

.btn-appointment:hover {
  background-color: var(--color-primary-hover);
}

.detail-strip-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 180px;
  overflow: hidden;
}

.detail-strip-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-strip-card.card-1 {
  background-image: url("../images/VIP-Ceramic-Engine.webp");
}

.detail-strip-card.card-2 {
  background-image: url("../images/wash-vip-cleanning.webp");
}

.detail-strip-card.card-3 {
  background-image: url("../images/offer-8.webp");
}

.detail-strip-card.card-4 {
  background-image: url("../images/offer-2.webp");
}

.detail-strip-card-overlay {
  position: relative;
  height: 100%;
  padding: 1.4rem 1.5rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.6) 45%,
      rgba(0, 0, 0, 0.2) 100%);
}

.detail-strip-card-accent {
  display: none;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background-color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.detail-strip-card-title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
}

.detail-strip-card-text {
  margin: 0 0 0.9rem;
  font-size: 0.85rem;
  color: #e3e3e3;
  max-width: 260px;
}

.detail-strip-card-link {
  font-size: 0.8rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.detail-strip-card-link:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .detail-strip-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-strip-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-strip-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .detail-strip {
    padding-top: 2.2rem;
  }

  .detail-strip-services {
    grid-template-columns: 1fr;
  }

  .detail-strip-card-overlay {
    padding: 1.2rem 1.1rem;
  }

  .detail-strip-title {
    font-size: 1.1rem;
  }
}

/* ===== WHAT WE OFFER SECTION ===== */
.offer-section {
  background-color: #ffffff;
  padding: 4.5rem 0;
}

.offer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.offer-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.8rem;
}

.offer-title {
  margin: 0 0 0.7rem;
  font-size: 2rem;
  font-weight: 700;
  color: #111111;
}

.offer-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: #777777;
  line-height: 1.6;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.offer-card {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card-1 {
  background-image: url("../images/offer-1.webp");
}

.offer-card-2 {
  background-image: url("../images/offer-2.webp");
}

.offer-card-3 {
  background-image: url("../images/offer-3.webp");
}

.offer-card-4 {
  background-image: url("../images/offer-4.webp");
}

.offer-card-5 {
  background-image: url("../images/offer-5.webp");
}

.offer-card-6 {
  background-image: url("../images/offer-6.webp");
}

.offer-card-7 {
  background-image: url("../images/offer-7.webp");
}

.offer-card-8 {
  background-image: url("../images/offer-8.webp");
}

.offer-card-9 {
  background-image: url("../images/offer-9.webp");
}

.offer-card-overlay {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem 1.4rem;
  color: #ffffff;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.65) 45%,
      rgba(0, 0, 0, 0.2) 100%);
}

.offer-card-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
}

.offer-card-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg,
      var(--color-primary),
      var(--color-primary-hover));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover .offer-card-icon {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.offer-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.offer-card-text {
  margin: 0;
  font-size: 0.8rem;
  color: #ececec;
  max-width: 280px;
}

.offer-card:hover .offer-card-title {
  transform: translateY(-1px);
  transition: transform 0.25s ease;
}

@media (max-width: 991.98px) {
  .offer-title {
    font-size: 1.8rem;
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .offer-section {
    padding: 3.5rem 0;
  }

  .offer-title {
    font-size: 1.5rem;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card-overlay {
    padding: 1.1rem 1.1rem;
  }
}

/* ===== SERVICE CTA BANNER ===== */
.service-banner {
  position: relative;
  background: url("../images/service-banner.avif") center center / cover no-repeat;
  min-height: 260px;
  display: flex;
  align-items: stretch;
}

.service-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.72) 35%,
      rgba(0, 0, 0, 0.35) 60%,
      rgba(0, 0, 0, 0.1) 100%);
  z-index: 0;
}

.service-banner-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 2.8rem 1.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.service-banner-content {
  max-width: 480px;
  color: #ffffff;
}

.service-banner-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: white;
}

.service-banner-title {
  margin: 0 0 0.9rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-banner-text {
  margin: 0 0 1.4rem;
  font-size: 0.9rem;
  color: #e1e1e1;
  max-width: 430px;
}

.btn-service-banner {
  background-color: var(--color-primary);
  color: #fff;
  padding-inline: 1.6rem;
  font-size: 0.85rem;
}

.btn-service-banner:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

/* ===== SERVICE BADGES STRIP ===== */
.service-badges {
  background-color: #f5f5f5;
  padding: 1.8rem 0 2.1rem;
}

.service-badges-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

.service-badges-inner::before,
.service-badges-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18%;
  height: 1px;
  background-color: #dddddd;
  transform: translateY(-50%);
}

.service-badges-inner::before {
  left: 0;
}

.service-badges-inner::after {
  right: 0;
}

.service-badge {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-badge-img {
  max-height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

.service-badge-img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-3px);
}

@media (max-width: 991.98px) {
  .service-banner-inner {
    padding: 2.4rem 1.5rem;
  }

  .service-banner-title {
    font-size: 1.7rem;
  }

  .service-badges-inner {
    justify-content: center;
    flex-wrap: wrap;
  }

  .service-badges-inner::before,
  .service-badges-inner::after {
    display: none;
  }

  .service-badge-img {
    max-height: 48px;
    margin: 0.25rem 0;
  }
}

@media (max-width: 575.98px) {
  .service-banner {
    min-height: 230px;
  }

  .service-banner-inner {
    padding: 2.2rem 1.3rem;
  }

  .service-banner-title {
    font-size: 1.5rem;
  }

  .service-banner-text {
    font-size: 0.85rem;
  }

  .service-badges {
    padding: 1.4rem 0 1.8rem;
  }

  .service-badges-inner {
    gap: 1rem;
  }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background-color: #ffffff;
  padding: 4.5rem 0 4rem;
}

.pricing-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.pricing-title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  color: #111111;
}

.pricing-header-text {
  margin: 0;
  font-size: 0.9rem;
  color: #777777;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.pricing-card {
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  opacity: 0;
  animation: pricingFadeUp 0.7s ease forwards;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform, opacity;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.05s;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.35s;
}

.pricing-card-header {
  padding: 1.1rem 1.4rem;
  color: #ffffff;
}

.pricing-card--blue .pricing-card-header {
  background: linear-gradient(135deg, #1f385b, #12355f);
}

.pricing-card--red .pricing-card-header {
  background: linear-gradient(135deg, var(--color-primary), #ff6a3a);
}

.pricing-card-title {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.pricing-card-subtitle {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.9;
}

.pricing-card-body {
  padding: 1.4rem 1.5rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing-card-price {
  text-align: center;
  margin-bottom: 1rem;
}

.pricing-amount {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ff3b2e;
  margin-bottom: 0.25rem;
}

.pricing-caption {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #999999;
}

.pricing-card-divider {
  border-bottom: 1px dashed #cccccc;
  margin: 0 0 1rem;
}

.pricing-features {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  font-size: 0.85rem;
  color: #555555;
}

.pricing-features li {
  padding: 0.35rem 0;
  border-bottom: 1px solid #f1f1f1;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.btn-price {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 0.85rem;
  padding-inline: 1.7rem;
  align-self: center;
}

.btn-price:hover {
  background-color: var(--color-primary-hover);
}

.pricing-footnote {
  margin: 0.6rem 0 0;
  font-size: 0.7rem;
  text-align: center;
  color: #999999;
}

.pricing-footer-cta {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.pricing-footer-text {
  font-size: 0.9rem;
  color: #444444;
}

.btn-outline-sales {
  border-radius: 999px;
  border: 1px solid #d3d3d3;
  padding: 0.55rem 1.4rem;
  font-size: 0.8rem;
  color: #333333;
  background-color: #ffffff;
}

.btn-outline-sales:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

@keyframes pricingFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .pricing-header {
    flex-direction: column;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .pricing-section {
    padding: 3.5rem 0 3rem;
  }

  .pricing-title {
    font-size: 1.6rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-body {
    padding: 1.2rem 1.2rem 1rem;
  }

  .pricing-footer-cta {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== PROMO DISCOUNT BANNER ===== */
.promo-banner {
  position: relative;
  background: url("../images/limited-time-offer-cta.webp") center center / cover no-repeat;
  min-height: 260px;
  display: flex;
  align-items: center;
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 0;
}

.promo-banner-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 2.8rem 1.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-banner-panel {
  max-width: 720px;
  width: 100%;
  padding: 2rem 2.4rem;
  background: rgba(0, 0, 0, 0.68);
  color: #ffffff;
  text-align: center;
  border-radius: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-banner-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.4);
}

.promo-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f2f2f2;
}

.promo-title {
  margin: 0 0 0.8rem;
  font-size: 1.9rem;
  line-height: 1.25;
  font-weight: 700;
}

.promo-text {
  margin: 0 0 1.4rem;
  font-size: 0.9rem;
  color: #e4e4e4;
}

.btn-promo {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 0.85rem;
  padding-inline: 1.7rem;
}

.btn-promo:hover {
  background-color: var(--color-primary-hover);
}

@media (max-width: 991.98px) {
  .promo-banner-inner {
    padding: 2.4rem 1.5rem;
  }

  .promo-banner-panel {
    max-width: 90%;
  }

  .promo-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 575.98px) {
  .promo-banner {
    min-height: 230px;
  }

  .promo-banner-inner {
    padding: 2.1rem 1.2rem;
  }

  .promo-banner-panel {
    padding: 1.6rem 1.4rem;
  }

  .promo-title {
    font-size: 1.4rem;
  }

  .promo-text {
    font-size: 0.85rem;
  }
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-section {
  background-color: #f7f7f7;
  padding: 4.5rem 0;
}

.why-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.why-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.why-title {
  margin: 0 0 0.6rem;
  font-size: 2rem;
  font-weight: 700;
  color: #111111;
}

.why-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: #777777;
  line-height: 1.6;
}

.why-grid {
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #f0f0f0;
}

.why-card {
  padding: 1.7rem 1.8rem;
  border-right: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background-color: #ffffff;
  transition: background-color 0.25s ease, transform 0.2s ease,
    box-shadow 0.25s ease;
}

.why-card:nth-child(3n) {
  border-right: none;
}

.why-card:nth-last-child(-n + 3) {
  border-bottom: none;
}

.why-card:hover {
  background-color: #fff9f6;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 75, 31, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.why-card-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: #222222;
}

.why-card-text {
  margin: 0;
  font-size: 0.85rem;
  color: #777777;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-card:nth-child(3n) {
    border-right: 1px solid #f0f0f0;
  }

  .why-card:nth-child(2n) {
    border-right: none;
  }

  .why-card:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (max-width: 575.98px) {
  .why-section {
    padding: 3.5rem 0;
  }

  .why-title {
    font-size: 1.6rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    border-right: none;
  }

  .why-card:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
  }
}

/* ===== EVENT / PROMO BANNER WITH CIRCLE ===== */
.event-banner {
  position: relative;
  background: url("../images/bring-your-car-cta.webp") center center / cover no-repeat;
  min-height: 320px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.event-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(169, 30, 33, 0.60) 65%,
      rgba(169, 30, 33, 0.30) 100%);
  z-index: 0;
}

.event-banner-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.event-banner-content {
  max-width: 520px;
}

.event-banner-title {
  margin: 0 0 0.8rem;
  font-size: 2.1rem;
  line-height: 1.2;
  font-weight: 700;
}

.event-banner-text {
  margin: 0 0 1.4rem;
  font-size: 0.95rem;
  color: #e6e6f8;
  max-width: 440px;
}

.event-banner-btn {
  background-color: #ffffff;
  color: #A91E21;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.7rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-banner-btn:hover {
  background-color: #A91E21;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

@media (max-width: 991.98px) {
  .event-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .event-banner-media {
    align-self: center;
  }

  .event-banner-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 575.98px) {
  .event-banner {
    min-height: 280px;
  }

  .event-banner-inner {
    padding: 2.4rem 1.3rem;
  }

  .event-banner-title {
    font-size: 1.6rem;
  }

  .event-banner-text {
    font-size: 0.9rem;
  }

  .event-play-btn {
    width: 90px;
    height: 90px;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background-color: #ffffff;
  padding: 4.5rem 0;
}

.testimonials-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.testimonials-image {
  flex: 0 0 32%;
  max-width: 340px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.testimonials-image:hover img {
  transform: scale(1.06);
}

.testimonials-content {
  flex: 1;
}

.testimonials-title {
  margin: 0 0 0.7rem;
  font-size: 2rem;
  font-weight: 700;
  color: #111111;
}

.testimonials-subtitle {
  margin: 0 0 1.8rem;
  font-size: 0.95rem;
  color: #777777;
  max-width: 560px;
}

.testimonials-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 1.4rem 1.5rem 1.3rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid #f2f2f2;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
  color: #ffc531;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.testimonial-text {
  margin: 0;
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.7;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #222222;
}

.testimonial-role {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-primary);
}

@media (max-width: 991.98px) {
  .testimonials-inner {
    flex-direction: column;
  }

  .testimonials-image {
    flex: none;
    max-width: 280px;
    margin-bottom: 1.5rem;
  }

  .testimonials-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .testimonials-section {
    padding: 3.5rem 0;
  }

  .testimonials-title {
    font-size: 1.6rem;
  }

  .testimonial-card {
    padding: 1.2rem 1.2rem 1.1rem;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  flex-shrink: 0;
}

.footer-main {
  width: 100%;
  background: #ffffff;
  padding: 3rem 0 2.5rem;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) repeat(3, minmax(0, 1.2fr));
  gap: 2.5rem;
}

.footer-col-brand .footer-logo img {
  display: block;
  max-width: 250px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-text {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: #333333;
  line-height: 1.6;
}

.footer-support-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666666;
  margin-bottom: 0.4rem;
}

.footer-support-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background-color: #f0f0f0;
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color var(--transition-fast);
}

.footer-support-phone:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.footer-support-phone i {
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.footer-support-phone:hover i {
  color: #ffffff;
}

.footer-heading {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}

.footer-links li+li {
  margin-top: 0.35rem;
}

.footer-links a {
  color: #333333;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.15s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
  transform: translateX(2px);
}

.footer-contact {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.85rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  color: #333333;
}

.footer-contact i {
  margin-top: 0.1rem;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.footer-contact a {
  color: #333333;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--color-primary);
}

.footer-social {
  display: flex;
  gap: 0.4rem;
}

.footer-social-link {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background-color: #e0e0e0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #000000;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease,
    box-shadow 0.15s ease, color 0.2s ease;
}

.footer-social-link:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Bottom bar */
.footer-bottom {
  width: 100%;
  background-color: var(--color-primary);
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: #ffffff;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
}

.footer-bottom-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #f0f0f0;
}

.footer-bottom-separator {
  color: #f0f0f0;
}

@media (max-width: 991.98px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .footer-main {
    padding: 2.7rem 0 2.3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== WHATSAPP FLOATING WIDGET ===== */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.whatsapp-widget img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.whatsapp-widget:hover,
.whatsapp-widget:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  outline: none;
}

.whatsapp-widget:after {
  content: "WhatsApp Us";
  position: absolute;
  right: 100%;
  bottom: 50%;
  transform: translateY(50%);
  padding: 6px 12px;
  margin-right: 10px;
  background-color: #A91E21;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.whatsapp-widget:hover:after,
.whatsapp-widget:focus-visible:after {
  opacity: 1;
  visibility: visible;
  transform: translateY(calc(50% - 3px));
}

@media (max-width: 480px) {
  .whatsapp-widget {
    width: 50px;
    height: 50px;
    bottom: 16px;
  }

  .whatsapp-widget:after {
    content: none;
  }
}

/* ===== WELCOME POPUP ===== */
/* ===== WELCOME POPUP ===== */
.welcome-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 1.5rem;
}

.welcome-popup-overlay.is-visible {
  display: flex;
}

.welcome-popup {
  position: relative;
  max-width: 760px;
  width: 100%;
  padding: 2.1rem 2.4rem 2.3rem;
  border-radius: 1.4rem;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  color: #000000;
}

.welcome-popup-media {
  width: 100%;
  max-height: 300px;
  border-radius: 1.1rem;
  overflow: hidden;
  margin-bottom: 1.4rem;
  background: #000;              /* background behind letterboxing */
  display: flex;                 /* center image box */
  align-items: center;
  justify-content: center;
}

.welcome-popup-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;           /* show whole image */
  object-position: center center;/* center inside box */
  margin: 0 auto;
}

.welcome-popup-inner {
  text-align: left;
}

.welcome-popup-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.welcome-popup-title {
  margin: 0 0 0.9rem;
  font-size: 1.9rem;
  line-height: 1.25;
  color: #000000;
}

.welcome-popup-title span {
  color: var(--color-primary);
}

.welcome-popup-text {
  margin: 0 0 1.6rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444444;
}

.welcome-popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-primary);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  transition: background-color var(--transition-fast),
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.welcome-popup-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

/* Small screens / short viewports: allow scroll if needed */
@media (max-width: 600px), (max-height: 600px) {
  .welcome-popup-overlay {
    padding: 1rem;
  }

  .welcome-popup {
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 1.2rem;
  }

  .welcome-popup-title {
    font-size: 1.6rem;
  }

  .welcome-popup-text {
    font-size: 0.88rem;
  }
}




/* ======================================================= */
/* ========== ENHANCED CATCHY HOVER / ENTRY FX ========== */
/* ======================================================= */

/* Optimized scroll-reveal: smaller move, no scale, shorter duration */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease-out,
    transform 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fancy underline + pop for nav links */
.nav-link,
.dropdown-toggle {
  position: relative;
  overflow: hidden;
}

.nav-link::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(120deg,
      var(--color-primary),
      #ff6a3a);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.dropdown-toggle:hover::after,
.dropdown-toggle:focus-visible::after {
  width: 100%;
}

.nav-link:hover,
.nav-link:focus-visible,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
  transform: translateY(-2px) scale(1.03);
}

/* Highlight active nav more */
.nav-link.active {
  font-weight: 600;
  transform: translateY(-1px);
}

/* Button shine animation */
@keyframes btnShineSweep {
  0% {
    transform: translateX(-150%) skewX(-20deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(150%) skewX(-20deg);
    opacity: 0;
  }
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.55) 50%,
      transparent 100%);
  transform: translateX(-150%) skewX(-20deg);
  opacity: 0;
  pointer-events: none;
}

.btn:hover::before,
.btn:focus-visible::before {
  animation: btnShineSweep 0.75s ease;
}

/* Stronger "pop" for all buttons */
.btn:hover,
.btn:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.btn-hero {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

.btn-hero:hover {
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.65);
}

/* Card hover upgrades: toned down for performance */
.detail-strip-card,
.offer-card,
.pricing-card,
.why-card,
.testimonial-card {
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.detail-strip-card:hover,
.offer-card:hover,
.pricing-card:hover,
.why-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

/* Service badges: more dramatic hover */
.service-badge-img:hover {
  transform: translateY(-6px) scale(1.12);
  opacity: 1;
  filter: grayscale(0);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

/* Testimonials image pop */
.testimonials-image:hover img {
  transform: scale(1.08);
}

/* WhatsApp button fun bounce */
@keyframes chatBounce {
  0% {
    transform: translateY(0) scale(1);
  }

  30% {
    transform: translateY(-4px) scale(1.06);
  }

  60% {
    transform: translateY(1px) scale(1.02);
  }

  100% {
    transform: translateY(-2px) scale(1.03);
  }
}

.whatsapp-widget:hover,
.whatsapp-widget:focus-visible {
  animation: chatBounce 0.55s ease-out;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

/* Footer social icons: bigger hover */
.footer-social-link:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

/* Welcome popup button extra pop */
.welcome-popup-btn:hover {
  transform: translateY(-4px) scale(1.03);
}

.pricing-card:nth-child(2) {
  transform: translateY(10px);
}

.pricing-card:nth-child(2):hover {
  transform: translateY(-14px) scale(1.04);
}

.pricing-amount {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.currency-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}

/* ===== PERFORMANCE: content-visibility for heavy sections ===== */
.detail-strip,
.offer-section,
.why-section,
.testimonials-section {
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

/* ===== MOBILE: soften heavy card hovers for smoother scrolling ===== */
@media (max-width: 768px) {
  .detail-strip-card:hover,
  .offer-card:hover,
  .pricing-card:hover,
  .why-card:hover,
  .testimonial-card:hover {
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  }
}
