: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);
}

/* smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* simple fade for header on load */
@keyframes fadeDownSoft {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-header {
  animation: fadeDownSoft 0.7s ease 0.1s both;
}

/* 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;           /* desktop: logo left, links centered, actions right */
  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; }                        /* owns the middle space */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; align-items: center; gap: 2rem;
  justify-content: center;               /* center the links on desktop */
}
.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;                     /* actions to the far right */
}

.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;                          /* remove border */
  background-color: transparent;         /* no button background */
  padding: 0; margin: 0; cursor: pointer;
  display: none;                         /* hidden on desktop (shown via media query) */
  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; }        /* hide desktop links in mobile */
  .nav-actions { display: none; }      /* hide desktop buttons in mobile */
  .nav-toggle { display: flex; margin-left: auto; } /* push burger to right */
}


/* ===== ABOUT HERO BANNER ===== */

.about-hero {
  position: relative;
  min-height: 80vh;
  background: url("../images/pricing-and-servicing-page-banner.avif") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.75) 35%,
      rgba(0, 0, 0, 0.35) 70%,
      rgba(0, 0, 0, 0.15) 100%);
  z-index: 0;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  padding: 3rem 1rem 4rem;
}

.about-hero-title {
  margin: 0 0 1rem;
  font-size: 2.8rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-subtitle {
  margin: 0;
  font-size: 0.98rem;
  color: #f1f1f1;
}

/* Responsive hero text */
@media (max-width: 768px) {
  .about-hero {
    min-height: 70vh;
  }

  .about-hero-title {
    font-size: 2.2rem;
  }

  .about-hero-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 65vh;
  }

  .about-hero-title {
    font-size: 1.9rem;
  }
}

/* ===== OUR EXPERTISE SECTION (below banner) ===== */

.about-expertise-section {
  background-color: #ffffff;
  padding: 4.5rem 0;
}

.about-expertise-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/* Left column - text */

.about-expertise-content {
  flex: 1;
  color: #111111;
}

.about-expertise-heading {
  margin: 0 0 1.1rem;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-expertise-heading-prefix {
  text-transform: uppercase;
}

.about-expertise-heading-main {
  text-transform: uppercase;
  color: var(--color-primary);
  margin-left: 0.35rem;
}

.about-expertise-text {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.7;
  max-width: 520px;
}

/* icon row */

.about-expertise-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 1.4rem;
}

.expertise-icon-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: #333333;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e2e2e2;
  background-color: #fafafa;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease, background-color 0.2s ease;
}

.expertise-icon-item i {
  color: var(--color-primary);
  font-size: 0.9rem;
}

.expertise-icon-item:hover {
  transform: translateY(-3px);
  border-color: rgba(169, 30, 33, 0.3);
  background-color: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

/* Right column - image */

.about-expertise-media {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.about-expertise-image {
  max-width: 520px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.about-expertise-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-expertise-image:hover img {
  transform: scale(1.06);
}

/* ===== RESPONSIVE FOR EXPERTISE SECTION ===== */

@media (max-width: 991.98px) {
  .about-expertise-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .about-expertise-media {
    justify-content: center;
    width: 100%;
  }

  .about-expertise-image {
    max-width: 580px;
  }
}

@media (max-width: 575.98px) {
  .about-expertise-section {
    padding: 3.5rem 0;
  }

  .about-expertise-heading {
    font-size: 1.7rem;
  }

  .about-expertise-icons {
    gap: 0.8rem;
  }

  .expertise-icon-item {
    font-size: 0.8rem;
    padding: 0.45rem 0.8rem;
  }
}

/* ===================================== */
/* PRICING SECTION */
/* ===================================== */

.pricing-page-section {
  padding: 4rem 1.5rem 4.5rem;
  background-color: #f7f7f7;
}

.pricing-page-inner {
  max-width: var(--container-width, 1140px);
  margin: 0 auto;
}

/* Heading similar style to contact page heading screenshot */

.pricing-heading {
  margin-bottom: 2.5rem;
}

.pricing-heading-title {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111111;
  margin: 0 0 0.4rem;
}

.pricing-heading-underline {
  display: inline-block;
  width: 60px;
  height: 3px;
  background-color: #A91E21;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

.pricing-heading-text {
  max-width: 520px;
  font-size: 0.98rem;
  color: #555555;
}

/* Service cards grid */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

/* Center last card when there's 1 card in the final row (3-column layout) */
.service-grid .service-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.service-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 1.8rem 1.6rem 1.6rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* Light highlight like the reference card */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(169, 30, 33, 0.10),
      rgba(169, 30, 33, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  border-color: rgba(169, 30, 33, 0.45);
}

.service-card:hover::before {
  opacity: 1;
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.service-tagline {
  font-size: 0.9rem;
  color: #A91E21;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.service-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: #444444;
}

.service-details li+li {
  margin-top: 0.4rem;
}

.service-select-label {
  font-size: 0.86rem;
  color: #333333;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-vehicle-select {
  border-radius: 999px;
  border: 1px solid #dddddd;
  padding: 0.45rem 0.9rem;
  font-size: 0.86rem;
  outline: none;
}

.service-vehicle-select:focus {
  border-color: #A91E21;
}

/* WhatsApp button */

.btn-whatsapp-price {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  background-color: #A91E21;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-whatsapp-price i {
  font-size: 1.05rem;
}

.btn-whatsapp-price:hover {
  background-color: #7d1517;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(169, 30, 33, 0.45);
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .inner-page-banner.pricing-banner {
    padding: 3.5rem 1.4rem;
  }

  .pricing-page-section {
    padding: 3rem 1.25rem 3.5rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.6rem 1.4rem;
  }

  .pricing-heading-title {
    font-size: 1.4rem;
  }

  /* reset centering rule on single-column layout */
  .service-grid .service-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }
}

/* ===== FOOTER ===== */

/* ===== 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; /* Center the copyright text */
  gap: 1rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: #ffffff;
}

/* These remain but are unused after removing links - safe to keep */
.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; /* Center on mobile as well */
  }
}


/* ===== 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;
    right: 16px;
  }

  .whatsapp-widget:after {
    content: none;
  }
}

/* ===================================== */
/* POPULAR PACKAGES / TESTIMONIAL STYLE */
/* ===================================== */

.packages-section {
  background-color: #ffffff;
  padding: 4rem 1.5rem 4.5rem;
}

.packages-inner {
  max-width: var(--container-width, 1140px);
  margin: 0 auto;
}

/* reuse .pricing-heading for the title – already defined */

/* Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

/* Card */
.package-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 1.8rem 1.6rem 1.6rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right,
      rgba(169, 30, 33, 0.18),
      transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(169, 30, 33, 0.35);
}

.package-card:hover::before {
  opacity: 1;
}

/* Image */
.package-image-wrap {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.1rem;
}

.package-image-wrap img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-image-wrap img {
  transform: scale(1.05);
}

/* Text */
.package-title {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
}

.package-meta {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: #777777;
}

/* Rating */
.package-rating {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.6rem;
  color: #ffb24a;
  font-size: 0.85rem;
}

/* Description & points */
.package-desc {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: #444444;
}

.package-points {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  font-size: 0.86rem;
  color: #444444;
}

.package-points li + li {
  margin-top: 0.35rem;
}

/* Actions */
.package-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Buttons reuse .btn base */
.btn-view-details {
  background-color: #ffffff;
  border: 1px solid #d0d0d0;
  color: #111111;
}

.btn-view-details:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.btn-product-whatsapp {
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
}

.btn-product-whatsapp:hover {
  background-color: #7d1517;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(169, 30, 33, 0.45);
}

/* Responsive */
@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .packages-section {
    padding: 3rem 1.25rem 3.5rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    padding: 1.6rem 1.4rem;
  }
}
