:root {
  --primary: #0e3d2b;
  --secondary: #145c3e;
  --gold: #e8b84b;
  --topbar-text: #c9e8b8;
  --white: #ffffff;
  --light: #f4faf1;
  --dark: #14251b;
  --success: #43aa8b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
}

.text-accent {
  color: var(--secondary);
}
.text-gold {
  color: var(--gold);
}

/* Global CSS */

#globalFireworksCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* Top Bar  */

.top-bar {
  background: var(--primary);
  color: var(--topbar-text);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 0;
}

.top-bar marquee {
  color: var(--topbar-text);
}

/* Navbar Section */

.custom-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
  background: var(--secondary);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}

.custom-navbar.navbar-scrolled {
  padding: 8px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.custom-navbar .container {
  position: relative;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-brand img {
  height: 100px;
  width: auto;
  border-radius: 100%;
}

.navbar-brand:hover img {
  animation: wiggle1 0.4s ease;
  filter: drop-shadow(0 0 8px #e8b84b);
}

@keyframes wiggle1 {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-10deg);
  }
  40% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(-8deg);
  }
  80% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.brand-name {
  font-size: 32px;
  font-weight: 800;
  color: #e8b84b;
  text-shadow:
    0 1px 0 #fff4c2,
    0 2px 0 #d4a017,
    0 4px 10px rgba(0, 0, 0, 0.35);
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  border: none;
  background: transparent;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  background: var(--gold);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 15px;
  margin: 0;
  padding: 5px;
  background: var(--primary);
  border-radius: 24px;
  white-space: nowrap;
}

.nav-menu .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--topbar-text) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 7px 16px !important;
  border-radius: 20px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.nav-menu .nav-link i {
  font-size: 0.8rem;
}

.nav-menu .nav-link:hover {
  background: rgba(232, 184, 75, 0.18);
  color: var(--gold) !important;
  animation: wiggle 0.4s ease;
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-4deg);
  }
  75% {
    transform: rotate(4deg);
  }
}

.nav-menu .nav-link.active {
  background: var(--gold);
  color: var(--primary) !important;
  font-weight: 700;
}

.price-btn {
  background: var(--gold);
  color: var(--primary) !important;
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 24px;
  border: none;
  box-shadow: 0 6px 16px rgba(14, 61, 43, 0.3);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.price-btn:hover {
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(14, 61, 43, 0.4);
}

@media (max-width: 991px) {
  .custom-navbar .container {
    flex-wrap: wrap;
  }

  .navbar-brand img {
    height: 85px;
  }

  .brand-name {
    font-size: 22px;
  }

  .mobile-toggle {
    display: flex;
    order: 2;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 3;
    margin-top: 12px;
    gap: 6px;
    background: var(--primary);
    border-radius: 16px;
    padding: 14px;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu .nav-link {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.95rem;
    padding: 10px 16px !important;
  }

  .nav-menu li.nav-item {
    width: 100%;
  }

  .nav-menu li.ms-lg-3 {
    margin: 6px 0 0 0 !important;
  }

  .price-btn {
    display: block;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 85px;
  }

  .brand-name {
    font-size: 19px;
  }
}

@media (max-width: 576px) {
  .custom-navbar {
    padding: 8px 0;
  }

  .navbar-brand img {
    height: 85px;
  }

  .navbar-brand {
    gap: 6px;
  }

  .brand-name {
    font-size: 16px;
  }

  .nav-menu {
    padding: 10px;
    border-radius: 12px;
  }

  .nav-menu .nav-link {
    font-size: 0.88rem;
    padding: 9px 14px !important;
  }

  .nav-menu .nav-link i {
    font-size: 0.78rem;
    width: 16px;
  }
}

@media (max-width: 360px) {
  .brand-name {
    font-size: 14px;
  }

  .navbar-brand img {
    height: 60px;
  }
}

/* Reveal Action */

.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom {
  opacity: 0;
  transition:
    opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal {
  transform: translateY(70px);
}

.reveal-left {
  transform: translateX(-110px);
}

.reveal-right {
  transform: translateX(110px);
}

.reveal-zoom {
  transform: scale(0.82);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.reveal-stagger > *,
.reveal-grid > * {
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.active > *,
.reveal-grid.active > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom,
  .reveal-stagger > *,
  .reveal-grid > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Floating Icon */

.floating-contact-wrap {
  position: fixed;
  left: 20px;
  bottom: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation: floatPulse 2.2s ease-in-out infinite;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.call-btn {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  padding: 0;
}

.call-img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.whatsapp-btn {
  background: #25d366;
  padding: 0;
}

.whatsapp-img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

@keyframes floatPulse {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow: 0 4px 22px rgba(37, 211, 102, 0.45);
  }
}

@media (max-width: 576px) {
  .float-btn {
    width: 50px;
    height: 50px;
  }
  .floating-contact-wrap {
    left: 14px;
    bottom: 18px;
  }
}

/* Quick Purchase */

.quick-purchase-btn {
  position: fixed;
  right: 10px;
  top: 85%;
  transform: translateY(-50%);
  z-index: 998;
  width: 90px;
  display: block;
  animation: quickBlink 1.4s ease-in-out infinite;
}

.quick-purchase-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

.quick-purchase-btn:hover {
  animation-play-state: paused;
  transform: translateY(-50%) scale(1.08);
}

@keyframes quickBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@media (max-width: 991px) {
  .quick-purchase-btn {
    width: 75px;
    top: 82%;
    right: 16px;
  }
}

@media (max-width: 576px) {
  .quick-purchase-btn {
    width: 60px;
    top: 78%;
    right: 12px;
  }
}

@media (max-width: 380px) {
  .quick-purchase-btn {
    width: 50px;
    top: 76%;
    right: 10px;
  }
}

/* Top Scroll Button */

.scroll-top-btn {
  position: fixed;
  right: 20px;
  bottom: 25px;
  width: 54px;
  height: 54px;
  z-index: 997;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.scroll-top-btn.show {
  display: flex;
}

.scroll-top-btn i {
  position: absolute;
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring-bg {
  fill: rgba(255, 255, 255, 0.6);
  stroke: rgba(0, 0, 0, 0.08);
  stroke-width: 5;
}

.progress-ring-fill {
  fill: none;
  stroke: url(#scrollGradient);
  stroke-width: 3px;
  stroke-linecap: round;
  stroke-dasharray: 144.5;
  stroke-dashoffset: 144.5;
  transition: stroke-dashoffset 0.1s linear;
}

@media (max-width: 576px) {
  .scroll-top-btn {
    width: 46px;
    height: 46px;
    right: 14px;
    bottom: 18px;
  }
  .progress-ring-bg,
  .progress-ring-fill {
    stroke-width: 4;
  }
  .progress-ring-fill {
    stroke-dasharray: 125.6;
    stroke-dashoffset: 125.6;
  }
  .scroll-top-btn i {
    font-size: 1.4rem;
  }
}

/* Modal close button (Bootstrap 5 CSS dropped .close styling in favor of
   .btn-close, but markup/JS across the site still use the old .close pattern) */

.modal-header .close {
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  opacity: 0.5;
  cursor: pointer;
}

.modal-header .close:hover,
.modal-header .close:focus {
  color: #000;
  opacity: 0.85;
  outline: none;
}

/* Hero Banner Section */

.hero-banner-section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 0;
}

.hero-overlay-content {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  padding: 0 8%;
  color: #000;
}

.hero-overlay-content.text-left,
.hero-overlay-content.text-center,
.hero-overlay-content.text-right {
  text-align: center;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  text-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 1.2rem;
  opacity: 0.95;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
  backdrop-filter: blur(3px);
}

.hero-badge-kids {
  background: rgba(255, 180, 0, 0.25);
  border: 1px solid var(--gold);
  color: var(--gold);
}

.hero-badge-family {
  background: rgba(255, 111, 97, 0.25);
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.hero-badge-festival {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #fff;
  color: #fff;
}

.hero-offer-tag {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-size: 1.1rem;
  padding: 3px 14px;
  border-radius: 6px;
  margin-left: 0;
  vertical-align: middle;
  box-shadow: 0 4px 12px rgba(255, 111, 97, 0.4);
  white-space: nowrap;
}

.hero-btn {
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}

.hero-btn-kids {
  background: var(--gold);
  color: var(--primary);
}
.hero-btn-kids:hover {
  box-shadow: 0 6px 18px rgba(255, 180, 0, 0.45);
}

.hero-btn-family {
  background: var(--secondary);
  color: #fff;
}
.hero-btn-family:hover {
  box-shadow: 0 6px 18px rgba(255, 111, 97, 0.45);
}

.hero-btn-festival {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--gold);
}
.hero-btn-festival:hover {
  box-shadow: 0 6px 18px rgba(92, 39, 81, 0.55);
}

.carousel-indicators {
  list-style: none;
}

.carousel-indicators li {
  list-style: none;
  background-color: var(--gold);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.6;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: var(--secondary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(92, 39, 81, 0.6);
  border-radius: 50%;
  padding: 18px;
  background-size: 55%;
}

@media (max-width: 991px) {
  .hero-img {
    width: calc(100% - 40px);
    height: auto;
    margin: 0 auto;
    border-radius: 14px;
  }

  .hero-title {
    font-size: 2.1rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-badge {
    font-size: 0.9rem;
    padding: 5px 14px;
  }
  .hero-btn {
    padding: 9px 22px;
    font-size: 0.9rem;
  }
  .hero-offer-tag {
    font-size: 1rem;
    padding: 3px 12px;
  }
}

@media (max-width: 768px) {
  .hero-img {
    width: calc(100% - 32px);
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
  }

  .hero-title {
    font-size: 1.4rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .hero-overlay-content {
    padding: 0 6%;
  }
  .hero-badge {
    font-size: 0.8rem;
    padding: 4px 12px;
    margin-bottom: 0.6rem;
  }
  .hero-btn {
    padding: 8px 18px;
    font-size: 0.82rem;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 12px;
  }
}

@media (max-width: 576px) {
  .hero-img {
    width: calc(100% - 20px);
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
  }

  .hero-subtitle {
    font-size: 0.78rem;
    margin-bottom: 0.8rem;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 3px 10px;
  }
  .hero-btn {
    padding: 7px 16px;
    font-size: 0.75rem;
  }
  .hero-title {
    font-size: 1.1rem;
    line-height: 1.3;
    gap: 5px;
  }

  .hero-offer-tag {
    display: inline-block;
    margin: 0;
    width: auto;
    font-size: 0.65rem;
    padding: 2px 8px;
  }
  .carousel-indicators li {
    width: 7px;
    height: 7px;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 8px;
  }
}

@media (max-width: 380px) {
  .hero-img {
    width: calc(100% - 16px);
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
  }

  .hero-title {
    font-size: 0.85rem;
    gap: 4px;
  }

  .hero-subtitle {
    display: none;
  }

  .hero-offer-tag {
    font-size: 0.58rem;
    padding: 2px 6px;
  }
}

/* Welcome Section */

.welcome-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.welcome-subtitle {
  color: var(--secondary);
  font-size: 1rem;
  letter-spacing: 1px;
}

.welcome-title {
  color: var(--dark);
  font-size: 3.4rem;
  line-height: 1.3;
}

.text-highlight {
  background: linear-gradient(90deg, var(--primary), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-desc {
  color: #5a4d44;
  font-size: 1rem;
  line-height: 1.7;
}

.check-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.hero-btn {
  background: linear-gradient(90deg, var(--gold), var(--orange));
  color: var(--dark);
  border-radius: 50px;
  border: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 112, 67, 0.4);
  color: var(--dark);
}

.hero-img-col {
  padding-right: 40px;
}

.hero-text-col {
  padding-left: 40px;
}

.hero-img-wrap {
  position: relative;
  display: inline-block;
  animation: heroWrapMotion 6s ease-in-out infinite;
}

.hero-img-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  border: 3px dashed var(--gold);
  opacity: 0.55;
  animation: heroRingMorph 10s linear infinite;
  z-index: -1;
}

.hero-img-wrap::after {
  content: "";
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.25) 0%,
    transparent 70%
  );
  z-index: -2;
  animation: heroAuraPulse 3.5s ease-in-out infinite;
}

.welcome-img {
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  animation: heroImageBreathe 5s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes heroWrapMotion {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1.5deg);
  }
  50% {
    transform: translateY(-16px) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) rotate(-1.5deg);
  }
}

@keyframes heroRingMorph {
  0% {
    transform: rotate(0deg);
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  }
  50% {
    border-radius: 60% 40% 45% 55% / 45% 55% 50% 50%;
  }
  100% {
    transform: rotate(360deg);
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  }
}

@keyframes heroAuraPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.12);
  }
}

@keyframes heroImageBreathe {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.3));
  }
  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 0 32px rgba(255, 112, 67, 0.55));
  }
}

.hero-text > * {
  opacity: 0;
  transform: translateX(40px);
  animation: heroSlideIn 0.8s ease forwards;
}

.hero-subtitle {
  animation-delay: 0.1s;
}
.hero-title {
  animation-delay: 0.3s;
}
.hero-desc {
  animation-delay: 0.5s;
}
.hero-checklist {
  animation-delay: 0.7s;
}
.hero-btn {
  animation-delay: 1.3s;
}

.hero-checklist li {
  opacity: 0;
  transform: translateX(40px);
  animation: heroSlideIn 0.8s ease forwards;
}

.hero-checklist li:nth-child(1) {
  animation-delay: 0.8s;
}
.hero-checklist li:nth-child(2) {
  animation-delay: 0.95s;
}
.hero-checklist li:nth-child(3) {
  animation-delay: 1.1s;
}
.hero-checklist li:nth-child(4) {
  animation-delay: 1.25s;
}

@keyframes heroSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .welcome-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .welcome-title {
    font-size: 2.5rem;
  }

  .welcome-desc {
    font-size: 0.95rem;
  }

  .welcome-img {
    max-width: 320px;
  }
  .hero-img-col {
    padding-right: 25px;
  }
  .hero-text-col {
    padding-left: 25px;
  }
}

@media (max-width: 768px) {
  .welcome-section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    text-align: center;
  }

  .welcome-title {
    font-size: 2rem;
  }

  .welcome-subtitle {
    font-size: 0.9rem;
  }

  .welcome-desc {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .hero-img-col {
    padding-right: 15px;
    padding-left: 15px;
  }
  .hero-text-col {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 25px;
  }

  .hero-checklist li {
    justify-content: center;
  }

  .welcome-img {
    max-width: 260px;
  }

  .hero-img-wrap::before {
    inset: -12px;
  }

  .hero-img-wrap::after {
    inset: -20px;
  }
}

@media (max-width: 576px) {
  .welcome-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .welcome-title {
    font-size: 1.6rem;
    line-height: 1.35;
  }

  .welcome-subtitle {
    font-size: 0.8rem;
  }

  .welcome-desc {
    font-size: 0.85rem;
  }

  .check-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    font-size: 0.65rem;
  }

  .hero-checklist li span:not(.check-icon) {
    font-size: 0.85rem;
  }

  .hero-btn {
    font-size: 0.85rem;
    padding: 8px 20px !important;
  }

  .welcome-img {
    max-width: 200px;
  }

  .hero-img-wrap::before {
    inset: -8px;
  }

  .hero-img-wrap::after {
    inset: -14px;
  }
}

@media (max-width: 380px) {
  .welcome-title {
    font-size: 1.35rem;
  }

  .welcome-desc {
    font-size: 0.8rem;
  }

  .welcome-img {
    max-width: 170px;
  }
}

/* Category Section */

.cat-section {
  background: linear-gradient(
    160deg,
    var(--dark),
    var(--primary) 55%,
    var(--secondary)
  );
  padding: 90px;
}

.premium-section {
  padding: 60px 15px 40px;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-weight: 800;
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.section-heading h2 .highlight {
  background: linear-gradient(90deg, #e03a5b, #f0973b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading .spark-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #7b3fa0, #3a1f6d);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 75px;
}

.text-highlight-demo {
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2rem;
}

.section-heading p {
  color: #8a7d85;
  font-size: 0.95rem;
  margin: 0;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 2.4rem;
  color: var(--white);
  margin: 8px 0 0;
  font-weight: 800;
}

.bento-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 180px 140px;
  gap: 18px;
}

.bento-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--gold);
  cursor: pointer;
  isolation: isolate;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.bento-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(92, 39, 81, 0.28);
}

.bento-item .bg-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-item:hover .bg-img {
  transform: scale(1.08);
}

.bento-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.bento-1 .bg {
  background-image: linear-gradient(135deg, #ffb400, #ff6f61);
}
.bento-2 .bg {
  background-image: linear-gradient(135deg, #5c2751, #8a3f6c);
}
.bento-3 .bg {
  background-image: linear-gradient(135deg, #ff6f61, #5c2751);
}
.bento-4 .bg {
  background-image: linear-gradient(135deg, #241019, #5c2751);
}

.bento-1 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}
.bento-2 {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
}
.bento-3 {
  grid-column: 1 / 2;
  grid-row: 2 / 10;
}
.bento-4 {
  grid-column: 2 / 5;
  grid-row: 2 / 10;
}

.bento-content {
  position: relative;
  z-index: 1;
  padding: 20px 22px;
  color: #fff;
  width: 100%;
}

.bento-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.bento-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0;
}

.bento-sub {
  font-size: 0.82rem;
  opacity: 0.9;
  margin-top: 2px;
}

@media (max-width: 991px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 160px;
  }
  .bento-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .bento-2 {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
  .bento-3 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .bento-4 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }
}

@media (max-width: 576px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }
  .bento-1,
  .bento-2,
  .bento-3,
  .bento-4 {
    grid-column: 1 / 2;
    grid-row: auto;
    height: 200px;
  }
  .bento-title {
    font-size: 1.15rem;
  }
}

/* Product Section */

.product-section {
  position: relative;
  padding: 80px 20px;
  background-image: url("../images/product-bg.png");
  background-size: 100% 100%;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-head span {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.85rem;
}

.section-head h2 {
  font-size: 2.4rem;
  color: var(--white);
  margin: 10px 0 14px;
  font-weight: 800;
}

.section-head p {
  color: var(--topbar-text);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.product-carousel-wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.product-viewport {
  overflow: hidden;
}

.product-track {
  display: flex;
  will-change: transform;
}

.product-card {
  flex: 0 0 calc(25% - 18px);
  margin-right: 18px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(14, 61, 43, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(14, 61, 43, 0.16);
}

.product-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--light);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-info {
  padding: 35px;
  background: linear-gradient(
    160deg,
    var(--dark),
    var(--primary) 55%,
    var(--secondary)
  );
}

.product-name {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 6px;
}

.product-price {
  color: var(--secondary);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.product-price span {
  color: #999;
  font-weight: 400;
  font-size: 0.85rem;
  text-decoration: line-through;
  margin-left: 6px;
}

.product-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  padding: 15px 0;
  border-radius: 30px;
  border: none;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.25s ease;
}

.product-desc {
  color: var(--topbar-text);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 14px;
  min-height: 40px;
}

.product-btn:hover {
  background: var(--gold);
  color: #fff;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(232, 184, 75, 0.4);
  backdrop-filter: blur(4px);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  z-index: 5;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.carousel-arrow:hover {
  background: var(--gold);
  color: var(--dark);
}

.carousel-arrow.prev {
  left: -22px;
}
.carousel-arrow.next {
  right: -22px;
}

@media (max-width: 991px) {
  .product-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

@media (max-width: 768px) {
  .product-card {
    flex: 0 0 calc(50% - 14px);
  }
  .carousel-arrow {
    width: 38px;
    height: 38px;
  }
  .carousel-arrow.prev {
    left: -10px;
  }
  .carousel-arrow.next {
    right: -10px;
  }
}

@media (max-width: 480px) {
  .product-card {
    flex: 0 0 calc(100% - 10px);
  }
}

/* Commit Section */

.why-section {
  padding: 80px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.why-eyebrow {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.why-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--dark);
  margin: 10px 0 40px;
  line-height: 1.25;
}

.why-title span {
  color: var(--secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  background: var(--light);
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 28px 24px;
  border-color: var(--gold);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(14, 61, 43, 0.12);
  border-color: var(--secondary);
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--secondary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.why-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
}

.why-card-desc {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 850px) {
  .why-title {
    font-size: 2.1rem;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-section {
    padding: 55px 16px;
  }
  .why-title {
    font-size: 1.6rem;
    margin-bottom: 28px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-card {
    padding: 22px 20px;
  }
}

/* Page Banner */

.page-banner-section {
  width: 100%;
  overflow: hidden;
}

.page-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .page-banner-img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .page-banner-img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .page-banner-img {
    height: 140px;
  }
}

@media (max-width: 380px) {
  .page-banner-img {
    height: 135px;
  }
}

/* Contact Page */

.contact-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 55px;
  padding: 70px 20px 0;
}

.contact-eyebrow {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.contact-head h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin: 10px 0 14px;
}

.contact-head h2 span {
  color: var(--secondary);
}

.contact-head p {
  color: #6b6b6b;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 80px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: var(--light);
  border: 1px solid #e6ede2;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.contact-info-card:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 24px rgba(14, 61, 43, 0.1);
  border-left-color: var(--secondary);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.contact-info-title {
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
  margin: 0 0 4px;
}

.contact-info-text {
  color: #6b6b6b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.contact-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e6ede2;
  box-shadow: 0 10px 26px rgba(14, 61, 43, 0.08);
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.contact-form-section {
  background: var(--primary);
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-form-head {
  text-align: center;
  margin-bottom: 36px;
}

.contact-form-head span {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.contact-form-head h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  margin: 8px 0 10px;
}

.contact-form-head p {
  color: var(--topbar-text);
  font-size: 0.95rem;
  margin: 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-grid .full-width {
  grid-column: 1 / 3;
}

.contact-form-grid input,
.contact-form-grid textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.92rem;
  font-family: inherit;
}

.contact-form-grid input::placeholder,
.contact-form-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.contact-form-grid textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding: 14px 0;
  border: none;
  border-radius: 30px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.contact-submit-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.contact-form-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border: 2px dashed rgba(232, 184, 75, 0.25);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .contact-main {
    grid-template-columns: 1fr;
  }
  .contact-map-wrap iframe {
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .contact-head h2 {
    font-size: 1.7rem;
  }
  .contact-head {
    padding-top: 50px;
    margin-bottom: 40px;
  }
  .contact-info-card {
    padding: 16px 18px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-grid .full-width {
    grid-column: 1 / 2;
  }
  .contact-form-head h3 {
    font-size: 1.5rem;
  }
}

/* Safety Tips Page */

.safety-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
  padding-top: 70px;
}

.safety-eyebrow {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.safety-head h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  margin: 10px 0 12px;
}

.safety-head h2 span {
  color: var(--secondary);
}

.safety-head p {
  color: #6b6b6b;
  font-size: 1rem;
  line-height: 1.6;
}

.safety-section-do {
  background: #eaf7ea;
  padding: 70px 20px;
}

.safety-section-avoid {
  background: #fceceb;
  padding: 70px 20px;
}

.safety-group-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 45px;
}

.safety-group-heading .highlight-do {
  color: #2f9e44;
}

.safety-group-heading .highlight-avoid {
  color: #d9403f;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.safety-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 34px 26px;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.safety-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.safety-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
}

.safety-section-do .safety-icon-circle {
  background: #7cc48b;
}

.safety-section-avoid .safety-icon-circle {
  background: #e19a97;
}

.safety-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
}

.safety-card-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

.emergency-strip {
  background: var(--primary);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.emergency-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.emergency-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  animation: pulseRing 1.8s ease-in-out infinite;
}

@keyframes pulseRing {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 184, 75, 0.5);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(232, 184, 75, 0);
  }
}

.emergency-left h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0 0 4px;
}

.emergency-left p {
  color: var(--topbar-text);
  font-size: 0.88rem;
  margin: 0;
}

.emergency-btn {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.emergency-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}

.emergency-strip-wrap {
  padding: 60px 20px;
}

@media (max-width: 991px) {
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .safety-head {
    padding-top: 50px;
  }
  .safety-head h2 {
    font-size: 1.7rem;
  }
  .safety-section-do,
  .safety-section-avoid {
    padding: 50px 16px;
  }
  .safety-group-heading {
    font-size: 1.6rem;
  }
  .safety-grid {
    grid-template-columns: 1fr;
  }
  .emergency-strip {
    flex-direction: column;
    text-align: center;
  }
  .emergency-left {
    flex-direction: column;
  }
  .emergency-btn {
    width: 100%;
    text-align: center;
  }
}

/* About Section */

.journey-section {
  padding: 90px 0;
  background: var(--white);
}

.journey-collage {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}

.journey-collage img {
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(14, 61, 43, 0.18);
  border-radius: 100%;
}

.journey-img-back {
  width: 100%;
  margin-left: 10%;
}

.journey-img-front {
  position: absolute;
  left: -75px;
  bottom: -80px;
  width: 60%;
  border: 5px solid var(--white);
}

.journey-eyebrow {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.journey-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin: 12px 0 18px;
}

.journey-title span {
  color: var(--secondary);
}

.journey-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.journey-stat {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--light);
  border-radius: 14px;
  padding: 16px 24px;
  margin-top: 20px;
}

.journey-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.journey-stat-number small {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  margin-top: 3px;
}

.journey-stat-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}

.journey-stat-text span {
  display: block;
  font-weight: 400;
  color: #777;
  font-size: 0.8rem;
  margin-top: 3px;
}

.pillars-section {
  padding: 90px 0;
  text-align: center;
}

.pillars-eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.pillars-title {
  color: var(--dark);
  font-size: 2.2rem;
  font-weight: 800;
  margin: 10px 0 45px;
}

.pillars-title span {
  color: var(--gold);
}

.pillar-card {
  background: radial-gradient(
    circle at 50% 30%,
    var(--secondary) 0%,
    var(--primary) 50%,
    var(--dark) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 26px;
  text-align: left;
  height: 100%;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border: 2px solid var(--gold);
}

.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.pillar-1 .pillar-icon {
  background: var(--secondary);
}
.pillar-2 .pillar-icon {
  background: var(--gold);
  color: var(--dark);
}
.pillar-3 .pillar-icon {
  background: var(--success);
}

.pillar-title {
  color: var(--light);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pillar-desc {
  color: var(--topbar-text);
  font-size: 0.87rem;
  line-height: 1.6;
  margin: 0;
}

.mvp-section {
  background: radial-gradient(
    circle at 50% 40%,
    var(--secondary) 0%,
    var(--primary) 55%,
    var(--dark) 100%
  );
  padding: 90px 0;
  position: relative;
}

.mvp-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(232, 184, 75, 0.5) 1.5px,
    transparent 1.5px
  );
  background-size: 90px 90px;
  opacity: 0.35;
  pointer-events: none;
}

.mvp-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 45px 30px;
  text-align: center;
  height: 100%;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.mvp-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(232, 184, 75, 0.4);
}

.mvp-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  border-radius: 16px;
  background: rgba(232, 184, 75, 0.12);
  border: 1px solid rgba(232, 184, 75, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
}

.mvp-title {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.mvp-desc {
  color: var(--topbar-text);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

.cta-section {
  padding: 90px 0;
  text-align: center;
}

.cta-tag {
  display: inline-block;
  background: rgba(232, 184, 75, 0.15);
  border: 1px solid rgba(232, 184, 75, 0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.cta-title {
  color: var(--dark);
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-title span {
  color: var(--gold);
}

.cta-desc {
  color: var(--dark);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-btn {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cta-btn:hover {
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(232, 184, 75, 0.35);
}

.stats-section {
  background: linear-gradient(120deg, #dcefd3 0%, #bfe0b0 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(14, 61, 43, 0.15) 1.5px,
    transparent 1.5px
  );
  background-size: 80px 80px;
  opacity: 0.4;
  pointer-events: none;
}

.stats-title {
  position: relative;
  z-index: 2;
  color: var(--dark);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.stats-title span {
  color: var(--secondary);
}

.stats-subtitle {
  position: relative;
  z-index: 2;
  color: #3d5544;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.stat-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(14, 61, 43, 0.12);
  border-radius: 16px;
  padding: 40px 24px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(14, 61, 43, 0.08);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 28px rgba(14, 61, 43, 0.14);
}

.stat-number {
  color: var(--secondary);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  color: #b8860b;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.stat-desc {
  color: #4a5c50;
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 991px) {
  .journey-title {
    font-size: 1.9rem;
  }
  .pillars-title {
    font-size: 1.9rem;
  }
  .mv-col {
    padding: 60px 30px;
  }
}

@media (max-width: 767px) {
  .journey-section {
    padding: 60px 0;
    text-align: center;
  }
  .journey-collage {
    margin-bottom: 40px;
  }
  .journey-stat {
    display: flex;
  }

  .pillars-section {
    padding: 60px 0;
  }
  .pillar-card {
    margin-bottom: 20px;
  }

  .mv-col {
    padding: 50px 24px;
    text-align: center;
  }
  .mv-desc {
    margin: 0 auto;
  }
  .mv-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .mvp-section {
    padding: 60px 0;
  }
  .mvp-card {
    margin-bottom: 20px;
  }

  .cta-section {
    padding: 60px 0;
  }
  .cta-title {
    font-size: 1.7rem;
  }

  .stats-section {
    padding: 60px 0;
  }
  .stats-title {
    font-size: 1.7rem;
  }
  .stat-card {
    margin-bottom: 20px;
  }
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .journey-title {
    font-size: 1.6rem;
  }
  .pillars-title {
    font-size: 1.5rem;
  }
  .cta-title {
    font-size: 1.4rem;
  }
  .journey-img-front {
    bottom: -20px;
  }
}

/* Footer Section */

.site-footer {
  position: relative;
  background: linear-gradient(
    160deg,
    var(--dark),
    var(--primary) 55%,
    var(--secondary)
  );
  padding-top: 90px;
  padding-bottom: 0;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 70px;
  display: block;
}

.footer-brand-name {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand-name span {
  color: var(--gold);
}

.footer-desc {
  color: var(--topbar-text);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 320px;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(232, 184, 75, 0.12);
  border: 1px solid rgba(232, 184, 75, 0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  position: relative;
}

.footer-heading::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin-top: 8px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--topbar-text);
  text-decoration: none;
  font-size: 0.92rem;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--topbar-text);
  font-size: 0.92rem;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 55px;
  padding: 20px 0;
  text-align: center;
  color: rgba(201, 232, 184, 0.75);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom i {
  color: #ff6b6b;
}

.float-btn-group {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  animation: floatPulse 2.4s ease-in-out infinite;
}

.float-btn.call {
  background: var(--secondary);
}
.float-btn.whatsapp {
  background: #25d366;
  animation-delay: 0.3s;
}

.float-btn i {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 2px;
}

@keyframes floatPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 60px;
  }
  .footer-col {
    margin-bottom: 32px;
    text-align: center;
  }
  .footer-heading::after {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-contact li {
    justify-content: center;
    text-align: left;
  }
}
