* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-deep: #050b24;
  --bg-mid: #0a1640;
  --bg-mid2: #10245c;

  --primary-color: #35d0ff;
  --primary-hover: #6cdeff;

  --dark-bg: #030719;
  --gold: #ffc857;
  --topbar-bg: #020615;

  --gold-soft: #ffe3a0;
  --ember: #ff6b8b;

  --cream: #eef8ff;
  --cream-dim: #aebfd0;

  --text-light: #e5f3ff;
  --text-white: #ffffff;

  --line: rgba(53, 208, 255, 0.25);

  --do-bg: #eaf6ec;
  --do-accent: #2fa84f;
  --avoid-bg: #fcebec;
  --avoid-accent: #e14b5a;

  --paper: #ffffff;
  --ink: var(--bg-mid);
  --muted: rgba(10, 22, 64, 0.58);
  --radius: 16px;

  --primary: #7a1f2b;
  --secondary: var(--gold);
  --dark: var(--ink);
  --white: #ffffff;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  padding-top: 122px;
}

.text-accent {
  color: var(--secondary);
}
.text-gold {
  color: var(--gold);
}

/* ---- Top bar / marquee ---- */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: linear-gradient(
    90deg,
    var(--bg-deep),
    var(--bg-mid2) 50%,
    var(--bg-deep)
  );
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 0;
}
.top-bar marquee {
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- Navbar ---- */

.custom-navbar {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 1040;
  background:
    radial-gradient(
      120% 180% at 15% 0%,
      rgba(255, 122, 69, 0.12),
      transparent 55%
    ),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%) !important;
  border-bottom: 1px solid var(--line);
  height: 120px;
  padding: 0;
  overflow: visible;
  display: flex;
  align-items: center;
}

.navbar-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  height: 100%;
}

.navbar-brand img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold, #ffcc00);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-40%);
  z-index: 10;
  background: #fff;
  transition: transform 0.4s ease;
}

.navbar-brand:hover img {
  transform: translateY(-40%) scale(1.08);
}

.brand-name {
  margin-left: 100px;
  font-weight: 700;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--cream);
  white-space: nowrap;
}
.brand-name em {
  color: var(--gold);
  font-style: italic;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  position: relative;
  color: var(--cream-dim) !important;
  font-weight: 800;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.1rem !important;
  overflow: hidden;
  transition: color 0.25s ease;
}
.nav-link i {
  font-size: 0.85rem;
  opacity: 0.85;
}

.nav-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 145, 102, 0.55),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--cream) !important;
}
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  left: 120%;
}
.nav-link:hover::before,
.nav-link:focus-visible::before,
.nav-link.active::before {
  transform: scaleX(1);
}
.price-btn {
  background: linear-gradient(135deg, var(--ember), #d94e1f) !important;
  color: var(--bg-deep) !important;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 6px 18px -6px rgba(255, 122, 69, 0.65);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.price-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 10px 22px -6px rgba(255, 122, 69, 0.85);
  color: var(--bg-deep) !important;
}

/* Mobile toggle (hamburger) */

.mobile-toggle {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: block;
  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);
}

@media (max-width: 991px) {
  body {
    padding-top: 102px;
  }
  .custom-navbar {
    height: 100px;
  }
  .navbar-brand img {
    top: 30%;
    width: 65px;
    height: 65px;
    transform: translateY(-35%);
  }
  .navbar-brand:hover img {
    transform: translateY(-35%) scale(1.08);
  }
  .brand-name {
    margin-left: 75px;
    font-size: 1.1rem;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-deep);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
    display: none;
    z-index: 1045;
  }
  .nav-menu.show {
    display: flex;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 92px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 80px;
  }
}

/* ---- Hero banner slider ----
   Was entirely missing — JS toggles "active" on .slide and .dot but
   there was no positioning/fade CSS at all, so all slides rendered
   stacked with no transition. */

#bannerSlider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#bannerSlider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
  width: 100%;
  height: 100%;
}
#bannerSlider .slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
#bannerSlider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#bannerSlider .slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
#bannerSlider .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
#bannerSlider .dot.active {
  background: var(--gold);
  transform: scale(1.2);
}
@media (max-width: 767px) {
  #bannerSlider .slider-dots {
    bottom: 12px;
  }
  #bannerSlider .dot {
    width: 8px;
    height: 8px;
  }
}

/* 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;
  }
}

/* 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;
  background: var(--paper, #fff);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
 
.scroll-top-btn.show {
  display: flex;
}
 
.scroll-arrow-icon {
  position: absolute;
  z-index: 2;
}
 
.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}
 
.progress-ring-bg {
  fill: none;
  stroke: rgba(0, 0, 0, 0.08);
  stroke-width: 3px;
}
 
.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: 3px;
  }
  .progress-ring-fill {
    stroke-dasharray: 125.6;
    stroke-dashoffset: 125.6;
  }
}

/* Fireworks canvas */

#globalFireworksCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* ---- Footer ---- */

.site-footer {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  background: #fff;
}

.footer-brand-name {
  font-weight: 700;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
}

.footer-brand-name em {
  color: var(--gold);
  font-style: italic;
}

.footer-desc {
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  max-width: 380px;
}

.footer-heading {
  color: var(--cream);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--cream-dim);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  color: var(--cream-dim);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-contact i {
  color: var(--gold);
  font-size: 0.9rem;
  width: 16px;
}

.footer-contact a {
  color: var(--cream-dim);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-mid2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 0.9rem;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom span {
  color: var(--cream-dim);
  font-size: 0.82rem;
}

.footer-bottom-links a {
  color: var(--cream-dim);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

@media (max-width: 767px) {
  .site-footer {
    padding: 2.5rem 0 1.25rem;
  }
  .footer-desc {
    font-size: 0.9rem;
  }
  .footer-heading {
    font-size: 0.95rem;
  }
  .footer-links a,
  .footer-contact li {
    font-size: 0.88rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom span,
  .footer-bottom-links a {
    font-size: 0.78rem;
  }
}

/* Contact Page */

.contact-header {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #4d0010 60%, #2b0009 100%);
  color: var(--white);
  padding: 90px 0 130px;
  text-align: center;
  overflow: hidden;
}
.contact-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--gold) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.12;
}
.contact-header .spark {
  position: absolute;
  color: var(--gold);
  opacity: 0.5;
  font-size: 35px;
  animation: float 5s ease-in-out infinite;
}
.contact-header .spark:nth-child(1) { top: 20%; left: 8%; font-size: 22px; animation-delay: 0s; }
.contact-header .spark:nth-child(2) { top: 60%; left: 15%; font-size: 14px; animation-delay: 1s; }
.contact-header .spark:nth-child(3) { top: 30%; right: 10%; font-size: 26px; animation-delay: 0.5s; }
.contact-header .spark:nth-child(4) { top: 70%; right: 18%; font-size: 16px; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(15deg); }
}
.contact-header h1 {
  font-weight: 800;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  font-size: 2.8rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.contact-header p {
  color: var(--secondary);
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
}
.header-divider {
  width: 70px;
  height: 4px;
  background: var(--gold);
  margin: 18px auto;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
.header-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* ===== Info Cards ===== */
.info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(122, 0, 25, 0.12);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.info-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}
.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(122, 0, 25, 0.22);
}
.info-card .icon-circle {
  width: 75px; height: 75px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), #a3001f);
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(122, 0, 25, 0.35);
  transition: 0.35s;
}
.info-card:hover .icon-circle {
  background: linear-gradient(135deg, var(--gold), var(--secondary));
  color: var(--dark);
  transform: rotate(360deg) scale(1.08);
}
.info-card h5 { font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.info-card p { color: #666; margin: 0; }

/* ===== Form ===== */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  padding: 45px;
  position: relative;
}
.contact-form-wrap::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold), transparent 30%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}
.contact-form-wrap h3 { color: var(--primary); font-weight: 800; margin-bottom: 5px; }
.contact-form-wrap .sub-text { color: #888; margin-bottom: 28px; font-size: 0.95rem; }

.form-label { font-weight: 600; font-size: 0.88rem; color: var(--dark); }
.form-control, .form-select {
  border-radius: 10px;
  border: 1.5px solid #e9e9e9;
  padding: 13px 16px;
  background: #fafafa;
  transition: 0.25s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(122, 0, 25, 0.1);
}
.input-icon-wrap { position: relative; }
.input-icon-wrap i {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  color: var(--primary); opacity: 0.6; z-index: 5;
}
.input-icon-wrap .form-control { padding-left: 42px; }

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), #a3001f);
  color: var(--white);
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(122, 0, 25, 0.35);
  transition: 0.3s;
}
.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--gold), var(--secondary));
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.4);
}

/* ===== Map & Social ===== */
.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  height: 280px;
  border: 4px solid var(--white);
  outline: 2px solid #eee;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(1.1); }

.side-info-card {
  background: linear-gradient(135deg, var(--primary), #3d0010);
  color: var(--white);
  border-radius: 20px;
  padding: 30px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.side-info-card::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 180, 0, 0.25), transparent 70%);
}
.side-info-card h5 { font-weight: 700; color: var(--gold); margin-bottom: 15px; }
.side-info-card .hours-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  font-size: 0.92rem;
}
.side-info-card .hours-row:last-child { border-bottom: none; }

.row.g-4 { row-gap: 2rem !important; }

.social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-right: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: 0.3s;
}
.social-icons a:hover {
  background: var(--gold); color: var(--dark); border-color: var(--gold);
  transform: translateY(-4px);
}

/* Safety tips */
.do-section { background: var(--do-bg); padding: 70px 0; position: relative; overflow: hidden; }
.tips-heading { position: relative; z-index: 2; margin-bottom: 40px; }
.tips-heading h2 { color: var(--dark-bg); font-weight: 800; font-size: 2rem; margin: 0; }
.tips-heading h2 span.do-text { color: var(--do-accent); }
.tips-heading h2 span.avoid-text { color: var(--avoid-accent); }

.tip-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  height: 100%;
  position: relative; z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: .35s ease;
}
.tip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
  border-color: var(--do-accent);
}
.avoid-section .tip-card:hover { border-color: var(--avoid-accent); }
.tip-card .tip-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.4rem;
}
.do-section .tip-icon { background: rgba(47,168,79,0.12); color: var(--do-accent); }
.tip-card h5 { color: var(--dark-bg); font-weight: 700; margin-bottom: 10px; font-size: 1.02rem; }
.tip-card p { color: #5c6b63; font-size: .88rem; margin: 0; line-height: 1.6; }

.avoid-section { background: var(--avoid-bg); padding: 70px 0; position: relative; overflow: hidden; }
.avoid-section .tip-icon { background: rgba(225,75,90,0.12); color: var(--avoid-accent); }
.avoid-section .tip-card p { color: #6b5c5c; }

/* ---------- Section shared (single source of truth — was defined
   twice with conflicting padding: 60px for About page, 90px for
   the homepage. Kept one definition; responsive breakpoints at the
   bottom of this file bring it down at each size, covering both.) */
.section { padding: 90px 0; }
.section-tight { padding: 80px 0; }
.section-light { background: var(--paper); }
.section-tint { background: linear-gradient(180deg, #f4fbff 0%, #eef6ff 100%); }
.section-dark {
  background: linear-gradient(160deg, var(--bg-deep) 0%, var(--bg-mid) 60%, var(--bg-mid2) 100%);
  color: var(--text-light);
}
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: 36px; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
.section-dark .section-head h2 { color: var(--text-white); }
.section-head p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.section-dark .section-head p { color: var(--cream-dim); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: .82rem; letter-spacing: .04em;
  color: var(--primary-hover);
}
.btn-brand {
  background: var(--gold); color: var(--bg-deep); border: none;
  padding: 14px 34px; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 14px 30px -14px rgba(255,200,87,.45);
}
.btn-brand:hover { background: var(--gold-soft); color: var(--bg-deep); transform: translateY(-2px); }
.btn-outline-brand {
  background: transparent; color: var(--text-white); border: 1.5px solid rgba(255,255,255,.4);
  padding: 13px 32px; border-radius: var(--radius); font-weight: 600; font-size: .95rem;
  transition: all .2s ease;
}
.btn-outline-brand:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }

/* ===== HERO (dark, about page) ===== */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  background:
    linear-gradient(180deg, rgba(5,11,36,.6), rgba(5,11,36,.88)),
    url('../images/about-banner.png') center/cover no-repeat;
}
.hero .eyebrow { color: var(--gold); }
.hero h1 {
  color: var(--text-white); font-size: clamp(2.6rem,5vw,4.2rem); letter-spacing: .04em;
  margin: 14px 0 10px;
}
.hero .subhead {
  font-family: 'Playfair Display', serif; font-style: italic; color: var(--primary-hover);
  font-size: clamp(1.15rem,2vw,1.5rem); margin-bottom: 18px;
}
.hero p.supporting { color: var(--cream-dim); max-width: 52ch; font-size: 1.05rem; margin-bottom: 32px; }

/* ===== WHO WE ARE (light) ===== */
.who-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px -30px rgba(10,22,64,.3); }
.who-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 380px; }
.section-title { max-width: 640px; }
.section-title h2 { font-size: clamp(1.9rem,3vw,2.5rem); margin-bottom: 14px; }

/* ===== OUR STORY ===== */
.story { background: var(--paper); }
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 2px; }
.timeline::before {
  content: ""; position: absolute; left: 19px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--line), var(--primary-color), var(--line));
}
.t-item { position: relative; padding-left: 60px; margin-bottom: 44px; }
.t-item:last-child { margin-bottom: 0; }
.t-dot {
  position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--primary-color);
  display: flex; align-items: center; justify-content: center; color: var(--bg-mid); font-size: .95rem;
}
.t-item h4 { font-size: 1.15rem; margin-bottom: 6px; }
.t-item p { font-size: .95rem; max-width: 56ch; }

/* ===== MISSION / VISION ===== */
.mv-card {
  background: var(--paper); border-radius: var(--radius); padding: 44px 36px; height: 100%;
  border: 1px solid var(--line); position: relative; overflow: hidden;
}
.mv-card .mv-icon {
  width: 54px; height: 54px; border-radius: 14px; background: rgba(53,208,255,.1);
  color: var(--bg-mid); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 22px;
}
.mv-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.mv-card p { font-size: .98rem; }

/* ===== PRODUCT QUALITY (about page) ===== */
.quality-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px -30px rgba(10,22,64,.3); }
.quality-img img { width: 50%; height: 50%; object-fit: cover; }
.quality-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.quality-points span {
  font-size: .88rem; font-weight: 600; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
}
.quality-points i { color: var(--primary-color); }

/* ===== SAFETY (about page) ===== */
.safety { background: var(--paper); }
.safety-card {
  background: var(--cream); border-radius: var(--radius); padding: 32px 24px; text-align: center; height: 100%;
  border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease;
}
.safety-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(10,22,64,.2); }
.safety-card i { font-size: 1.6rem; color: var(--bg-mid); margin-bottom: 14px; }
.safety-card h5 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.safety-card p { font-size: .86rem; }

/* ===== CORE VALUES (dark) ===== */
.values { background: var(--bg-deep); }
.values .section-title h2 { color: var(--text-white); }
.values .section-title p { color: var(--cream-dim); }
.value-chip {
  background: var(--bg-mid); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 28px 18px; text-align: center; height: 100%;
}
.value-chip i { color: var(--gold); font-size: 1.4rem; margin-bottom: 12px; }
.value-chip h5 { font-family: 'Inter', sans-serif; color: var(--text-white); font-weight: 600; font-size: .98rem; margin: 0; }

/* ===== HERITAGE (dark overlay) ===== */
.heritage {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 420px;
  display: flex; align-items: center;
  background:
    linear-gradient(90deg, rgba(5,11,36,.92) 45%, rgba(5,11,36,.3)),
    url('https://images.unsplash.com/photo-1509557965875-b88c97052f0e?w=1800&q=80') center/cover no-repeat;
}
.heritage-content { padding: 56px; max-width: 620px; }
.heritage h2 { color: var(--text-white); font-size: clamp(1.8rem,2.8vw,2.3rem); margin-bottom: 16px; }
.heritage p { color: var(--cream-dim); font-size: 1rem; }

/* ===== PROMISE (light) ===== */
.promise { background: var(--paper); text-align: center; }
.promise-inner { max-width: 700px; margin: 0 auto; }
.promise h2 { font-size: clamp(1.9rem,3vw,2.4rem); margin-bottom: 18px; }
.promise p { font-size: 1.05rem; color: var(--muted); }

/* ===== FINAL CTA (dark, about page) ===== */
.final-cta {
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-mid2) 100%);
  border-radius: var(--radius); padding: 76px 40px; text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(53,208,255,.25), transparent 70%);
  top: -160px; right: -120px;
}
.final-cta h2 { color: var(--text-white); font-size: clamp(1.9rem,3.2vw,2.6rem); position: relative; margin-bottom: 14px; }
.final-cta p { color: var(--cream-dim); position: relative; margin-bottom: 30px; font-size: 1.05rem; }
.final-cta .btns { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.occasion-tabs{ display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-bottom:40px; }
.occ-tab{
  background:transparent; border:1.5px solid rgba(10,22,64,.15); color:var(--ink);
  padding:10px 20px; border-radius:999px; font-weight:600; font-size:13.5px;
  cursor:pointer; transition:all .25s ease;
}
.occ-tab:hover{ border-color:var(--primary-color); }
.occ-tab.is-active{
  background:linear-gradient(135deg,var(--bg-deep),var(--bg-mid2)); color:var(--gold);
  border-color:transparent;
}
 
.occ-grid{ display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:20px; }
.occ-card{
  position:relative; border-radius:18px; overflow:hidden; background:var(--paper);
  border:1px solid rgba(10,22,64,.08); box-shadow:0 6px 20px rgba(10,22,64,.07);
  transition:transform .3s ease, box-shadow .3s ease; display:none;
}
.occ-card.is-visible{ display:flex; flex-direction:column; }
.occ-card:hover{ transform:translateY(-6px); box-shadow:0 20px 36px rgba(10,22,64,.15); }
.occ-card.featured{ grid-row:span 2; }
.occ-img{ position:relative; overflow:hidden; }
.occ-card.featured .occ-img{ height:300px; }
.occ-card:not(.featured) .occ-img{ height:380px; }
.occ-img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.occ-card:hover .occ-img img{ transform:scale(1.07); }
.occ-ribbon{
  position:absolute; top:12px; left:12px; padding:5px 12px; border-radius:20px;
  font-size:11px; font-weight:700; letter-spacing:.3px; color:var(--bg-deep);
}
.occ-ribbon.popular{ background:var(--gold); }
.occ-ribbon.new{ background:var(--primary-color); }
.occ-body{ padding:18px 20px 20px; flex:1; display:flex; flex-direction:column; }
.occ-body h4{ font-size:17px; font-weight:700; margin:0 0 8px; color:var(--ink); }
.occ-card.featured .occ-body h4{ font-size:20px; }
.occ-body p{ color:var(--muted); font-size:13.5px; line-height:1.6; margin-bottom:14px; }
.occ-stars{ color:var(--gold); font-size:12px; margin-bottom:12px; }
.occ-stars span{ color:var(--muted); margin-left:4px; }
.occ-link{
  margin-top:auto; color:var(--bg-mid2); font-weight:600; font-size:14px;
  display:inline-flex; align-items:center; gap:6px; text-decoration:none;
}
.occ-link i{ transition:transform .25s ease; color:var(--primary-hover); }
.occ-card:hover .occ-link i{ transform:translateX(5px); }
 
@media (max-width:900px){
  .occ-grid{ grid-template-columns:1fr 1fr; }
  .occ-card.featured{ grid-column:span 2; grid-row:span 1; }
  .occ-card.featured .occ-img{ height:220px; }
}
@media (max-width:576px){
  .occ-grid{ grid-template-columns:1fr; }
  .occ-card.featured{ grid-column:span 1; }
}

/* ---------- Feature cards (single source of truth — was defined
   twice, once for the About page and once for the homepage, with
   different padding/border. Merged into one; about-page callers get
   the .f-icon child, homepage callers get .feature-icon, so no clash there.) ---------- */
.feature-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px; height: 100%; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--primary-color); box-shadow: 0 24px 44px -26px rgba(10,22,64,.22); }
.feature-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(53,208,255,.14), rgba(255,200,87,.14));
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  color: var(--bg-mid2); margin-bottom: 18px;
}
.feature-card .f-icon {
  width: 50px; height: 50px; border-radius: 13px; background: rgba(53,208,255,.1);
  color: var(--bg-mid); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 18px;
}
.feature-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.feature-card h5 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.02rem; margin-bottom: 8px; color: var(--ink); }
.feature-card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0; }


/* ============ SECTION 2: Licensed / Certified trust strip ============ */
.trust-strip{ position:relative; }
.trust-strip::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(circle at 15% 20%,rgba(53,208,255,.12),transparent 50%),
             radial-gradient(circle at 85% 80%,rgba(255,200,87,.1),transparent 50%);
}
.trust-inner{ position:relative; z-index:1; }
.trust-row{
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-bottom:36px;
}
.trust-chip{
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1);
  border-radius:16px; padding:26px 20px; text-align:center;
  transition:transform .25s ease, border-color .25s ease;
}
.trust-chip:hover{ transform:translateY(-4px); border-color:var(--gold); }
.trust-chip i{ font-size:26px; color:var(--gold); margin-bottom:12px; display:block; }
.trust-chip .t-num{ font-size:20px; font-weight:800; color:var(--text-white); margin-bottom:2px; }
.trust-chip .t-lbl{ font-size:12.5px; color:var(--cream-dim); }
.trust-statement{
  max-width:680px; margin:0 auto; text-align:center; color:var(--cream-dim);
  font-size:15.5px; line-height:1.8;
}
.trust-statement strong{ color:var(--gold); font-weight:700; }
@media (max-width:900px){
  .trust-row{ grid-template-columns:1fr 1fr; }
}
@media (max-width:576px){
  .trust-row{ grid-template-columns:1fr 1fr; gap:12px; }
  .trust-chip{ padding:20px 14px; }
}

/* ---------- Testimonials ---------- */
.review-card {
  background: var(--paper); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: 0 6px 20px rgba(10,22,64,.08); border: 1px solid rgba(10,22,64,.06); height: 100%;
}
.review-card .stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.review-card p.quote { color: var(--ink); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.review-card .reviewer { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-color), var(--gold));
  display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--bg-deep); font-size: 14px;
}
.reviewer .name { font-weight: 700; font-size: 14px; color: var(--ink); }
.reviewer .tag { font-size: 12px; color: var(--muted); }

/* ---------- CTA banner (homepage) ---------- */
.cta-banner {
  margin-top: 70px; border-radius: 24px; padding: 60px 50px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-mid2) 100%);
  text-align: center;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(53,208,255,.25), transparent 55%),
              radial-gradient(circle at 85% 70%, rgba(255,200,87,.2), transparent 50%);
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-banner h2 { color: var(--text-white); font-size: 32px; font-weight: 800; margin-bottom: 14px; }
.cta-banner p { color: var(--cream-dim); font-size: 15.5px; margin-bottom: 30px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary-glow {
  background: linear-gradient(135deg, var(--primary-color), var(--gold));
  color: var(--bg-deep); border: none; padding: 14px 36px; border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: .3px;
  box-shadow: 0 10px 28px -8px rgba(53,208,255,.55);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-primary-glow:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -8px rgba(255,200,87,.6); color: var(--bg-deep); }

.btn-outline-light2 {
  background: transparent; color: var(--text-white); border: 1.5px solid rgba(255,255,255,.4);
  padding: 13px 34px; border-radius: 999px; font-weight: 600; font-size: 15px; transition: all .25s ease;
}
.btn-outline-light2:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* ---------- Reveal on scroll ----------
   Fixed: JS adds class "active" (see the DOMContentLoaded script),
   not "in" — every .reveal / .reveal-* rule now targets .active. */
.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom,
.reveal-blur,
.reveal-flip,
.reveal-rotate,
.reveal-bounce,
.reveal-clip,
.reveal-line {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease, filter .7s ease, clip-path .7s ease;
}
.reveal { transform: translateY(28px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-zoom { transform: scale(.9); }
.reveal-blur { filter: blur(8px); }
.reveal-flip { transform: perspective(800px) rotateY(90deg); }
.reveal-rotate { transform: rotate(-8deg) scale(.95); }
.reveal-bounce { transform: translateY(40px); transition-timing-function: cubic-bezier(.34,1.56,.64,1); }
.reveal-clip { clip-path: inset(0 100% 0 0); opacity: 1; }
.reveal-line { transform: scaleX(0); transform-origin: left; opacity: 1; }

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active,
.reveal-rotate.active,
.reveal-bounce.active {
  opacity: 1;
  transform: none;
}
.reveal-blur.active { opacity: 1; filter: blur(0); }
.reveal-flip.active { opacity: 1; transform: perspective(800px) rotateY(0deg); }
.reveal-clip.active { clip-path: inset(0 0 0 0); }
.reveal-line.active { transform: scaleX(1); }

.reveal-stagger > *,
.reveal-grid > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-stagger.active > *,
.reveal-grid.active > * {
  opacity: 1;
  transform: none;
}

/* safety net: if JS fails to load, content still shows */
.no-js .reveal, .no-js [class*="reveal-"] { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, [class*="reveal-"] { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
}

/* Animated counters */
.counter-num { font-weight: 800; }

/* =========================================================
   RESPONSIVE FIXES — applies to .section everywhere (home,
   about, contact, safety pages all share this one class now)
   ========================================================= */
@media (max-width: 991px) {
  .section { padding: 60px 0; }
  .section-head h2 { font-size: 28px; }
  .cta-banner { padding: 46px 30px; }
  .quality-img-wrap { margin-bottom: 28px; }
  .heritage-content { padding: 36px; }
  .final-cta { padding: 56px 24px; }
}
@media (max-width: 767px) {
  .section { padding: 44px 0; }
  .section-head { margin-bottom: 34px; }
  .section-head h2 { font-size: 24px; }
  .section-head p { font-size: 14.5px; }
  .cat-card .cat-img-wrap { height: 170px; }
  .product-img-wrap { height: 160px; }
  .cta-banner { padding: 38px 22px; border-radius: 18px; }
  .cta-banner h2 { font-size: 24px; }
  .cta-btns { flex-direction: column; }
  .btn-primary-glow, .btn-outline-light2 { width: 100%; text-align: center; }
  .stat-chip { position: static; margin-top: 14px; display: inline-block; }
}
@media (max-width: 575px) {
  .feature-card { padding: 24px 18px; }
  .review-card { padding: 24px 20px; }
  .price-now { font-size: 17px; }
  .product-body h4 { font-size: 15.5px; }
}

/* Hero Banner */

.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: 40%;
  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 li {
  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-banner {
  background: linear-gradient(160deg, var(--bg-deep), var(--bg-mid) 55%, var(--bg-mid2));
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
 
.welcome-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}
 
.welcome-tag {
  display: inline-block;
  color: var(--gold);
  background: rgba(255, 200, 87, 0.1);
  border: 1px solid var(--line);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
 
.welcome-title {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 18px;
}
 
.welcome-title span {
  color: var(--primary-color);
  text-shadow: 0 0 24px rgba(53, 208, 255, 0.5);
}
 
.welcome-desc {
  color: var(--cream-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
 
.welcome-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 44px;
}
 
.btn-primary {
  background: var(--primary-color);
  color: var(--dark-bg);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}
 
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 20px rgba(53, 208, 255, 0.4);
}
 
.btn-outline {
  color: var(--text-light);
  border: 1px solid var(--line);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}
 
.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
 
.welcome-stats {
  display: flex;
  gap: 36px;
}
 
.stat-box h3 {
  color: var(--gold-soft);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 4px;
}
 
.stat-box p {
  color: var(--cream-dim);
  font-size: 13px;
}
 
.welcome-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  
}
 
.welcome-image img {
  max-width: 100%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  border-radius: 50%;
}
 
.glow-circle {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(53, 208, 255, 0.25), transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
 
@media (max-width: 900px) {
  .welcome-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .welcome-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .welcome-actions,
  .welcome-stats {
    justify-content: center;
  }
  .welcome-title {
    font-size: 34px;
  }
}