* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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);
}

:root {
  --bg-deep: #1a0906;
  --bg-mid: #3a1310;
  --bg-mid2: #5c1c14;
  --primary-color: #ffcc00;
  --primary-hover: #ffdb4d;
  --dark-bg: #1a1a1a;
  --gold: #e6b84f;
  --dark-bg: #1a1a1a;
  --topbar-bg: #b30000;
  --gold-soft: #f3d78a;
  --ember: #ff7a45;
  --cream: #f7ead6;
  --cream-dim: #d8c3a8;
  --text-light: #f2f2f2;
  --text-white: #ffffff;
  --line: rgba(230, 184, 79, 0.22);
}

/* ---- 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;
}
/* ---- 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;
  transition: color 0.25s ease;
}
.nav-link i {
  font-size: 0.85rem;
  opacity: 0.85;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 4px,
    transparent 4px 8px
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    background-position 0.6s ease;
}
.nav-link::before {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 8px 2px var(--ember);
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.5s ease;
  transform: translateX(6px) scale(0.4);
}
.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 {
  opacity: 1;
  background-position: 0 0;
}
.nav-link:hover::before,
.nav-link:focus-visible::before,
.nav-link.active::before {
  opacity: 1;
  transform: translateX(0) scale(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;
}

@media (max-width: 991px) {
  body {
    padding-top: 102px; 
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 92px; 
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 80px; 
  }
}

@media (max-width: 991px) {
  .custom-navbar {
    height: 100px;
  }

  .navbar-brand img {
    top: 30%;
  }

  .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: 1000;
  }
  .nav-menu.show {
    display: flex;
  }

  .navbar-brand img {
    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;
  }
}

.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);
}

/* 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;
  }
  .nav-menu.show {
    display: flex;
    z-index: 1045;
  }
}

@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;
}

.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;
  }
}

/* Global CSS */

#globalFireworksCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* Hero Banner */

.banner-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(26, 9, 6, 0.85) 0%,
    rgba(26, 9, 6, 0.35) 60%,
    transparent 100%
  );
  z-index: 1;
}

.slide-caption {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 500px;
  color: var(--cream);
}

.slide-caption h2 {
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--cream);
}

.slide-caption p {
  font-size: 1.1rem;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(247, 234, 214, 0.4);
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--ember);
}

@media (max-width: 767px) {
  .banner-slider {
    height: 320px;
  }
  .slide-caption {
    left: 5%;
    max-width: 90%;
  }
  .slide-caption h2 {
    font-size: 1.6rem;
  }
  .slide-caption p {
    font-size: 0.9rem;
  }
}

.exclusive-img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.exclusive-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.exclusive-img-wrap:hover .exclusive-img {
  transform: scale(1.08);
}

.exclusive-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1.1rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(26, 9, 6, 0.85) 100%
  );
}

.exclusive-overlay h4 {
  color: var(--cream);
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
}

.exclusive-overlay p {
  color: var(--cream-dim);
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 767px) {
  .exclusive-img-wrap {
    height: 220px;
  }
}

.section-title-pro {
  color: var(--dark-bg);
  font-weight: 700;
  font-style: italic;
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.section-subtitle-pro {
  color: var(--dark-bg);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.exclusive-row {
  row-gap: 2rem !important;
}

.view-product-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.4rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 999px;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.view-product-btn:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

.exclusive-overlay {
  padding: 1.5rem 1.25rem 1.25rem;
}

.premium-collections {
  background: var(--bg-deep);
}

.section-tag {
  display: inline-block;
  color: var(--ember);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  color: var(--cream);
  font-weight: 700;
  font-style: italic;
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--cream-dim);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.collection-card-mini {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.collection-card-mini:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px -10px rgba(255, 122, 69, 0.35);
  border-color: var(--gold);
}

.mini-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.mini-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: kenBurns 8s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translateX(0);
  }
  100% {
    transform: scale(1.15) translateX(-3%);
  }
}

.mini-img-wrap .badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
}

.mini-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.mini-body h3 {
  color: var(--cream);
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  margin: 0 0 0.6rem;
}

.mini-body p {
  color: var(--cream-dim);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.badge-tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-value {
  background: rgba(255, 122, 69, 0.9);
  color: var(--bg-deep);
}

.badge-family {
  background: rgba(230, 184, 79, 0.9);
  color: var(--bg-deep);
}

.badge-premium {
  background: rgba(247, 234, 214, 0.9);
  color: var(--bg-deep);
}

.mini-feature-list {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
}

.mini-feature-list li {
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mini-feature-list li i {
  color: var(--gold);
  font-size: 0.75rem;
}

.price-btn.btn-sm {
  padding: 0.4rem 1.1rem;
  font-size: 0.8rem;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 1.6rem;
  }
  .mini-img-wrap {
    height: 160px;
  }
  .mini-img {
    animation: none;
  }
}

.welcome-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
  background:
    radial-gradient(
      120% 150% at 50% 0%,
      rgba(255, 122, 69, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-title em {
  font-style: italic;
}

.hero-subtitle {
  color: var(--cream-dim);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn-outline {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--cream);
  font-weight: 800;
  font-size: 0.9rem;
  background: transparent;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.hero-btn-outline:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

.hero-fade-1,
.hero-fade-2,
.hero-fade-3,
.hero-fade-4,
.hero-fade-5 {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.8s ease forwards;
}

.hero-fade-1 {
  animation-delay: 0.1s;
}
.hero-fade-2 {
  animation-delay: 0.3s;
}
.hero-fade-3 {
  animation-delay: 0.5s;
}
.hero-fade-4 {
  animation-delay: 0.7s;
}
.hero-fade-5 {
  animation-delay: 0.9s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px 2px var(--ember);
  opacity: 0;
  animation: sparkRise 6s ease-in infinite;
}

.hero-particles span:nth-child(1) {
  left: 8%;
  animation-delay: 0s;
}
.hero-particles span:nth-child(2) {
  left: 20%;
  animation-delay: 1.2s;
}
.hero-particles span:nth-child(3) {
  left: 35%;
  animation-delay: 2.4s;
}
.hero-particles span:nth-child(4) {
  left: 55%;
  animation-delay: 0.6s;
}
.hero-particles span:nth-child(5) {
  left: 68%;
  animation-delay: 3s;
}
.hero-particles span:nth-child(6) {
  left: 80%;
  animation-delay: 1.8s;
}
.hero-particles span:nth-child(7) {
  left: 92%;
  animation-delay: 4s;
}

@keyframes sparkRise {
  0% {
    bottom: -5%;
    opacity: 0;
    transform: scale(0.6);
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 0.8;
  }
  100% {
    bottom: 105%;
    opacity: 0;
    transform: scale(1.1);
  }
}

@media (max-width: 767px) {
  .welcome-hero {
    padding: 3.5rem 0 4rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero-particles span {
    display: none;
  }
}
.welcome-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background:
    radial-gradient(
      120% 150% at 10% 20%,
      rgba(255, 122, 69, 0.12),
      transparent 55%
    ),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
}

.hero-row {
  min-height: 460px;
}

.hero-tag {
  display: inline-block;
  color: var(--ember);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-accent {
  font-style: italic;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--cream-dim);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn-outline {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--cream);
  font-weight: 800;
  font-size: 0.9rem;
  background: transparent;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.hero-btn-outline:hover {
  background: var(--gold);
  color: var(--bg-deep);
}
.hero-fade-1,
.hero-fade-2,
.hero-fade-3,
.hero-fade-4 {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.8s ease forwards;
}
.hero-fade-1 {
  animation-delay: 0.1s;
}
.hero-fade-2 {
  animation-delay: 0.3s;
}
.hero-fade-3 {
  animation-delay: 0.5s;
}
.hero-fade-4 {
  animation-delay: 0.7s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image-col {
  display: flex;
  justify-content: center;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
}

.hero-img-glow {
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  background: conic-gradient(
    from 0deg,
    var(--ember),
    var(--gold),
    transparent 35%,
    transparent 65%,
    var(--ember)
  );
  animation: rotateGlow 6s linear infinite;
  opacity: 0.9;
}

@keyframes rotateGlow {
  to {
    transform: rotate(360deg);
  }
}

.hero-img-wrap {
  position: absolute;
  inset: 6px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px 3px var(--ember);
  opacity: 0;
  animation: heroSparkPulse 4s ease-in-out infinite;
}
.hero-spark-1 {
  top: 20%;
  right: 15%;
  animation-delay: 0.5s;
}
.hero-spark-2 {
  bottom: 25%;
  left: 12%;
  animation-delay: 2.3s;
}

@keyframes heroSparkPulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.6);
  }
  15% {
    opacity: 1;
    transform: scale(1.3);
  }
  40% {
    opacity: 0.7;
    transform: scale(1);
  }
  60% {
    opacity: 0;
    transform: scale(0.6);
  }
}

@media (max-width: 991px) {
  .hero-content {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .hero-img-glow {
    animation: none;
  }
  .hero-spark {
    display: none;
  }
}

.how-it-works {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.hiw-tag {
  display: inline-block;
  background: rgba(255, 122, 69, 0.1);
  color: var(--ember);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hiw-title {
  font-weight: 800;
  font-size: 2.6rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.hiw-accent {
  color: var(--gold);
}

.hiw-subtitle {
  color: #6b6b6b;
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}

.hiw-step {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.hiw-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.75rem;
}

.hiw-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(179, 0, 0, 0.06);
  border: 1.5px solid #b30000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #b30000;
}

.hiw-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-step h3 {
  font-weight: 800;
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.hiw-step p {
  color: #6b6b6b;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

.hiw-burst {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}

.hiw-burst img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .hiw-title {
    font-size: 1.8rem;
  }
  .hiw-step {
    margin-bottom: 2.5rem;
  }
  .hiw-icon {
    width: 75px;
    height: 75px;
    font-size: 1.5rem;
  }
}

/* Footer Section */

.site-footer {
  position: relative;
  background: var(--bg-deep);
  color: var(--cream-dim);
  overflow: hidden;
}

.footer-wave {
  display: block;
  width: 100%;
  height: 70px;
  fill: var(--bg-mid);
}

.footer-cta {
  background:
    radial-gradient(
      120% 200% at 85% 0%,
      rgba(255, 122, 69, 0.18),
      transparent 60%
    ),
    linear-gradient(90deg, var(--bg-mid2), var(--bg-mid) 60%, var(--bg-deep));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.2rem 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-cta-text h3 {
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
}
.footer-cta-text p {
  margin: 0;
  color: var(--cream-dim);
  font-size: 0.92rem;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--ember), #d94e1f);
  color: var(--bg-deep);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  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;
}
.footer-cta-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);
}

.footer-top {
  position: relative;
  background: var(--bg-mid);
  padding: 3.5rem 0 2.5rem;
}
.footer-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 80% at 10% 0%,
    rgba(230, 184, 79, 0.1),
    transparent 60%
  );
  pointer-events: none;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr auto 1fr auto 1fr auto 1.2fr;
  gap: 2rem;
  align-items: start;
}

.footer-divider {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-logo img {
  height: 30px;
  width: auto;
}
.footer-logo span {
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--cream);
}
.footer-about p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--cream-dim);
  margin: 0 0 1.25rem;
}
.footer-socials {
  display: flex;
  gap: 0.7rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 0.85rem;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}
.footer-socials a:hover {
  background: linear-gradient(135deg, var(--ember), #d94e1f);
  border-color: transparent;
  color: var(--bg-deep);
  transform: translateY(-2px);
}

.footer-col h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--gold);
  margin: 0 0 1.1rem;
  letter-spacing: 0.01em;
}
.footer-col h4 i {
  color: var(--ember);
  font-size: 0.85rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  position: relative;
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}
.footer-links a::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ember);
  opacity: 0;
  transform: translateY(-50%) scale(0.4);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.footer-links a:hover {
  color: var(--cream);
  padding-left: 14px;
}
.footer-links a:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.5;
}
.footer-contact-list i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  width: 14px;
  text-align: center;
}

.footer-bottom {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--cream-dim);
}
.footer-note {
  color: var(--gold-soft) !important;
  opacity: 0.85;
}

@media (max-width: 991px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.5rem;
  }
  .footer-divider {
    display: none;
  }
  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Safety Section */

.page-banner-section {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.page-banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.safety-head {
  text-align: center;
  max-width: 700px;
  margin: 50px auto 30px;
  padding: 0 20px;
}

.safety-eyebrow {
  display: inline-block;
  color: #b30000;
  background: rgba(179, 0, 0, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.safety-head h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.safety-head h2 span {
  color: var(--gold-dark);
}

.safety-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.safety-group-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  margin: 50px 0 30px;
  color: var(--dark);
  position: relative;
  z-index: 2;
}

.highlight-do,
.highlight-avoid {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 8px;
  font-weight: 800;
}

.highlight-do {
  background: var(--gold);
  color: var(--dark);
}

.highlight-avoid {
  background: var(--red);
  color: #fff;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1150px;
  margin: 0 auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.safety-card {
  background: var(--card-bg);
  border-radius: 60px;
  padding: 60px 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-top: 4px solid transparent;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.safety-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.safety-section-do .safety-icon-circle {
  background: rgba(255, 204, 0, 0.15);
  color: var(--dark-bg);
  border: 2px solid var(--primary-color);
}

.safety-section-avoid .safety-icon-circle {
  background: rgba(179, 0, 0, 0.08);
  color: var(--topbar-bg);
  border: 2px solid var(--topbar-bg);
}

.safety-icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.safety-card:hover .safety-icon-circle {
  transform: scale(1.1) rotate(-6deg);
}

.safety-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.safety-card-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.safety-section-do {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  /* background-color: #eaf7e8; */
}

.safety-section-do .safety-card {
  border-top-color: var(--gold);
}

.safety-section-avoid {
  padding: 20px 0 50px;
  position: relative;
  overflow: hidden;
  /* background-color: #fceceb; */
}

.safety-section-avoid .safety-card {
  border-top-color: var(--red);
}

.emergency-strip-wrap {
  max-width: 1150px;
  margin: 0 auto 70px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.emergency-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: linear-gradient(135deg, #7a3b12, #a8531c);
  border-radius: 18px;
  padding: 28px 35px;
  color: #fff;
}

.emergency-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.emergency-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.emergency-left h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}

.emergency-left p {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.emergency-btn {
  background: #fff;
  color: #7a3b12;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.emergency-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  color: #7a3b12;
}

@media (max-width: 640px) {
  .page-banner-section {
    height: 220px;
  }
  .safety-head h2 {
    font-size: 1.7rem;
  }
  .safety-card {
    flex-direction: column;
    text-align: center;
    border-radius: 40px;
    padding: 28px 22px;
  }
  .emergency-strip {
    flex-direction: column;
    text-align: center;
    border-radius: 40px;
  }
  .emergency-left {
    flex-direction: column;
  }
}

/* Contact Page */

.contact-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 55px;
  padding: 70px 20px 0;
}

.contact-eyebrow {
  color: var(--topbar-bg);
  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-bg);
  margin: 10px 0 14px;
}

.contact-head h2 span {
  color: var(--topbar-bg);
}

.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(--card-bg);
  border: 1px solid #e6ede2;
  border-left: 4px solid var(--primary-color);
  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 var(--shadow-color);
  border-left-color: var(--topbar-bg);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--dark-bg);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.contact-info-title {
  font-weight: 700;
  color: var(--dark-bg);
  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 var(--shadow-color);
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.contact-form-section {
  background: var(--dark-bg);
  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(--primary-color);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.contact-form-head h3 {
  color: var(--text-white);
  font-size: 2rem;
  font-weight: 800;
  margin: 8px 0 10px;
}

.contact-form-head p {
  color: var(--text-light);
  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(--text-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(--primary-color);
  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: linear-gradient(135deg, var(--ember), #d94e1f);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 6px 18px -6px rgba(255, 122, 69, 0.65);
  color: var(--dark-bg);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.contact-submit-btn:hover {
  background: var(--text-white);
  transform: translateY(-2px);
}

.contact-form-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border: 2px dashed rgba(255, 204, 0, 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;
  }
}

/* About Section */

.about-eyebrow {
  display: inline-block;
  color: var(--gold);
  background: rgba(230, 184, 79, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.about-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin: 14px 0 18px;
  line-height: 1.3;
}

.about-heading span {
  color: var(--gold);
}

.about-text {
  color: #5c5c5c;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.pillar-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 32px 22px;
  text-align: center;
  height: 100%;
  border-bottom: 4px solid transparent;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  border-bottom-color: var(--gold);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: var(--bg-deep);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  transform: rotate(-8deg) scale(1.06);
}

.pillar-card h4 {
  font-weight: 700;
  color: var(--dark-bg);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.pillar-card p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.about-counters {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.counters-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 340px;
  background: radial-gradient(
    ellipse at center,
    rgba(230, 184, 79, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.counters-heading {
  color: var(--text-white);
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.counters-heading span {
  color: var(--gold);
}

.counters-subtext {
  color: var(--text-light);
  opacity: 0.75;
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.counter-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(230, 184, 79, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.counter-num {
  color: var(--gold);
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0;
}

.counter-box p {
  color: var(--text-white);
  font-weight: 700;
  margin: 4px 0 6px;
  font-size: 0.95rem;
}

.counter-desc {
  color: var(--text-light);
  opacity: 0.65;
  font-size: 0.8rem;
  line-height: 1.5;
  display: block;
}

.counter-box {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-6px);
  background: rgba(230, 184, 79, 0.06);
  border-color: var(--gold);
}

@media (max-width: 576px) {
  .counter-box {
    max-width: 170px;
    padding: 14px;
  }
}

.about-certs {
  background: var(--cream);
}

.cert-badge {
  padding: 10px 12px 26px;
  position: relative;
  transition: transform 0.3s ease;
}

.cert-badge:hover {
  transform: translateY(-6px);
}

.cert-seal {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--text-white);
  border: 2px dashed var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.35s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.cert-seal::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--bg-deep);
}

.cert-badge:hover .cert-seal {
  transform: rotate(10deg) scale(1.08);
  border-color: var(--ember);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.cert-icon {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-size: 1.6rem;
}

.cert-ribbon {
  width: 30px;
  height: 26px;
  margin: -8px auto 14px;
  position: relative;
  z-index: 0;
}

.cert-ribbon::before,
.cert-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 14px;
  height: 26px;
  background: var(--ember);
}

.cert-ribbon::before {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  transform: rotate(-8deg);
}

.cert-ribbon::after {
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  transform: rotate(8deg);
}

.cert-badge h5 {
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 6px;
  font-size: 1rem;
}

.cert-badge p {
  color: #5c5c5c;
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 576px) {
  .cert-seal {
    width: 78px;
    height: 78px;
  }
  .cert-icon {
    font-size: 1.3rem;
  }
}

.about-cta {
  background: var(--bg-deep);
}

.cta-box {
  padding: 20px;
}

.cta-heading {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 14px;
}

.cta-heading span {
  color: var(--gold);
}

.cta-text {
  color: var(--text-light);
  opacity: 0.85;
  font-size: 1rem;
  margin-bottom: 24px;
}

.cta-btn {
  background: var(--gold);
  color: var(--dark-bg);
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 30px;
  border: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(230, 184, 79, 0.35);
  color: var(--dark-bg);
}

@media (max-width: 767px) {
  .about-heading {
    font-size: 1.7rem;
  }
  .counters-heading {
    font-size: 1.5rem;
  }
  .counter-num {
    font-size: 1.9rem;
  }
}

.mvp-section {
  padding: 80px 0;
}

.mvp-badge {
  display: inline-block;
  background: var(--cream);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.mvp-heading {
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: var(--dark-bg);
  margin-bottom: 50px;
}

.mvp-heading span {
  color: var(--gold);
}

.mvp-item {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.mvp-item:last-child {
  border-bottom: none;
}

.mvp-title {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mvp-title::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23e6b84f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3 3 7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65%;
}

.mvp-desc {
  color: #6c6c6c;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
}

.mvp-number {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  user-select: none;
  z-index: 0;
}

.mvp-item > .row {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .mvp-number {
    position: static;
    transform: none;
    margin-top: 10px;
    font-size: 3rem;
    text-align: left;
  }
  .mvp-section {
    padding: 50px 0;
  }
}

.opt3-section {
  background: linear-gradient(
    135deg,
    var(--bg-deep),
    var(--bg-mid) 60%,
    var(--bg-mid2)
  );
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.opt3-bignum {
  position: absolute;
  top: -40px;
  left: -20px;
  font-size: 14rem;
  font-weight: 800;
  color: rgba(230, 184, 79, 0.06);
  line-height: 1;
  user-select: none;
  z-index: 0;
}

.opt3-eyebrow {
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.opt3-heading {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 22px;
}
.opt3-heading em {
  font-style: normal;
  color: var(--gold);
  border-bottom: 3px solid var(--ember);
  padding-bottom: 2px;
}
.opt3-text {
  color: var(--cream-dim);
  font-size: 1.03rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.opt3-timeline {
  margin-top: 30px;
  border-left: 2px solid var(--line);
  padding-left: 24px;
}
.opt3-timeline .step {
  margin-bottom: 22px;
  position: relative;
}
.opt3-timeline .step::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(230, 184, 79, 0.15);
}
.opt3-timeline .step h6 {
  color: var(--text-white);
  font-weight: 700;
  margin-bottom: 4px;
}
.opt3-timeline .step p {
  color: var(--cream-dim);
  font-size: 0.92rem;
  margin: 0;
}

.opt3-imgcard {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}
.opt3-imgcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
}
.opt3-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--dark-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 22px;
  text-align: center;
}
.opt3-badge .num {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
}
.opt3-badge .lbl {
  color: var(--cream-dim);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

@media (max-width: 991px) {
  .opt3-bignum {
    font-size: 8rem;
  }
  .opt3-section {
    padding: 60px 0;
  }
}

/* Reveal Class */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-zoom.active {
  opacity: 1;
  transform: scale(1);
}

.reveal-blur {
  opacity: 0;
  filter: blur(12px);
  transition:
    opacity 0.8s ease,
    filter 0.8s ease;
}
.reveal-blur.active {
  opacity: 1;
  filter: blur(0);
}

.reveal-flip {
  opacity: 0;
  transform: perspective(800px) rotateY(90deg);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-flip.active {
  opacity: 1;
  transform: perspective(800px) rotateY(0deg);
}

.reveal-rotate {
  opacity: 0;
  transform: rotate(-15deg) scale(0.9);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-rotate.active {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.reveal-bounce {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.6s ease,
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-bounce.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-clip {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 0.5s ease,
    clip-path 0.9s ease;
}
.reveal-clip.active {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.reveal-line {
  position: relative;
  overflow: hidden;
}
.reveal-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-deep);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.9s ease;
}
.reveal-line.active::after {
  transform: scaleX(0);
}

.reveal-stagger > *,
.reveal-grid > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-stagger.active > *,
.reveal-grid.active > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom,
  .reveal-blur,
  .reveal-flip,
  .reveal-rotate,
  .reveal-bounce,
  .reveal-clip,
  .reveal-line,
  .reveal-stagger > *,
  .reveal-grid > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
}
