:root {
  --primary-color: #ffcc00;
  --primary-hover: #ffdb4d;
  --dark-bg: #1a1a1a;
  --topbar-bg: #b30000;
  --text-light: #f2f2f2;
  --text-white: #ffffff;
  --link-hover-bg: rgba(255, 204, 0, 0.12);
  --shadow-color: rgba(0, 0, 0, 0.15);
  --shadow-color-dark: rgba(0, 0, 0, 0.3);
  --card-bg: #f7f7f2;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

.text-accent {
  color: var(--secondary);
}
.text-gold {
  color: var(--gold);
}

/* Top Bar */

.top-bar {
  background: var(--topbar-bg);
  color: var(--text-white);
  padding: 6px 0;
  font-size: 14px;
  font-weight: 500;
}

.top-bar marquee {
  width: 100%;
}

/* Navbar Section */

.custom-navbar {
  background: var(--dark-bg);
  padding: 6px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.custom-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.custom-navbar .navbar-brand img {
  height: 100px;
  width: auto;
  transition: transform 0.4s ease;
}

.custom-navbar .navbar-brand:hover img {
  transform: rotate(-8deg) scale(1.1);
}

.custom-navbar .brand-name {
  color: var(--primary-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  transition:
    letter-spacing 0.3s ease,
    text-shadow 0.3s ease;
}

.custom-navbar .navbar-brand:hover .brand-name {
  letter-spacing: 1.5px;
  text-shadow: 0 0 12px rgba(255, 204, 0, 0.6);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.nav-item .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-item .nav-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.nav-item .nav-link:hover {
  background: var(--link-hover-bg);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.nav-item .nav-link:hover::after {
  transform: scaleX(1);
}

.nav-item .nav-link:hover i {
  transform: scale(1.2) rotate(-8deg);
}

.nav-item .nav-link.active {
  background: var(--primary-color);
  color: var(--dark-bg);
  font-weight: 600;
}

.nav-item .nav-link.active::after {
  display: none;
}

.price-btn {
  background: var(--primary-color);
  color: var(--dark-bg) !important;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.price-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--primary-color);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}
@media (max-width: 991px) {
  .mobile-toggle {
    display: flex;
  }

  .custom-navbar {
    position: sticky;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;
    height: auto;

    background: var(--dark-bg);

    flex-direction: column;
    align-items: flex-start;
    gap: 4px;

    padding: 0 20px;

    box-shadow: 0 6px 12px var(--shadow-color-dark);

    /* Hidden state */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;

    transition:
      max-height 0.35s ease,
      opacity 0.3s ease,
      padding 0.35s ease;
  }

  .nav-menu.show {
    max-height: 500px;
    padding: 15px 20px 20px;

    opacity: 1;
    visibility: visible;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item .nav-link {
    width: 100%;
    padding: 12px 10px;
  }

  .nav-item.ms-lg-3 {
    margin-top: 10px;
    width: 100%;
  }

  .price-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}

/* 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;
  }
}

/* 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: 420px;
  overflow: hidden;
}

.banner-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

@media (max-width: 768px) {
  .banner-slider {
    height: 220px;
  }
}

.banner-slider .slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.banner-slider .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.banner-slider .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.banner-slider .dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.brands-section {
  background: var(--dark-bg);
  padding: 60px 20px;
}

.brands-header {
  text-align: center;
  margin-bottom: 40px;
}

.brands-header h2 {
  color: var(--text-white);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
}

.brands-header p {
  color: var(--text-light);
  font-size: 15px;
  opacity: 0.85;
  margin: 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 10px var(--shadow-color);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  border: 2px solid transparent;
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px var(--shadow-color-dark);
  border-color: var(--primary-color);
}

.brand-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.brand-img-wrap img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.brand-card:hover .brand-img-wrap img {
  transform: scale(1.08);
}

.brand-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-bg);
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
  .brands-header h2 {
    font-size: 22px;
  }
}

/* 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: var(--primary-color);
  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;
  }
}

/* Safety Page */

.safety-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 20px 20px;
}

.safety-eyebrow {
  display: inline-block;
  color: var(--topbar-bg);
  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: 2.4rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin: 16px 0 12px;
}

.safety-head h2 span {
  color: var(--primary-color);
  -webkit-text-stroke: 1px var(--dark-bg);
}

.safety-head p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}

.safety-group-heading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin: 50px 0 34px;
}

.highlight-do {
  color: var(--dark-bg);
  background: var(--primary-color);
  padding: 2px 14px;
  border-radius: 8px;
}

.highlight-avoid {
  color: var(--text-white);
  background: var(--topbar-bg);
  padding: 2px 14px;
  border-radius: 8px;
}

.safety-section-do,
.safety-section-avoid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.safety-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 14px var(--shadow-color);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.safety-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px var(--shadow-color-dark);
}

.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-text {
  color: var(--white) !important;
}

.safety-card:hover .safety-icon-circle {
  transform: rotate(-8deg) scale(1.08);
}

.safety-section-do .safety-card {
  border-top: 4px solid var(--primary-color);
}

.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-card {
  border-top: 4px solid var(--topbar-bg);
}

.safety-section-avoid .safety-icon-circle {
  background: rgba(179, 0, 0, 0.08);
  color: var(--topbar-bg);
  border: 2px solid var(--topbar-bg);
}

.safety-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin: 0 0 10px;
}

.safety-card-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.emergency-strip-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px 70px;
}

.emergency-strip {
  background: linear-gradient(120deg, var(--topbar-bg), #7a0000);
  border-radius: 16px;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px var(--shadow-color-dark);
}

.emergency-strip::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(255, 204, 0, 0.3);
  border-radius: 50%;
}

.emergency-left {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.emergency-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.emergency-left h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.emergency-left p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin: 0;
}

.emergency-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: var(--dark-bg);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.emergency-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .page-banner-img {
    height: 200px;
  }
  .safety-head h2 {
    font-size: 1.8rem;
  }
  .safety-group-heading {
    font-size: 1.4rem;
  }
  .safety-grid {
    grid-template-columns: 1fr;
  }
  .emergency-strip {
    flex-direction: column;
    text-align: center;
    padding: 26px 22px;
  }
  .emergency-left {
    flex-direction: column;
    text-align: center;
  }
}

/* Reveal Action */

.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom {
  opacity: 0;
  transition:
    opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal {
  transform: translateY(70px);
}

.reveal-left {
  transform: translateX(-110px);
}

.reveal-right {
  transform: translateX(110px);
}

.reveal-zoom {
  transform: scale(0.82);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.reveal-stagger > *,
.reveal-grid > * {
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.active > *,
.reveal-grid.active > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-blur {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(30px);
  transition:
    opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.reveal-blur.active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.reveal-flip {
  opacity: 0;
  transform: perspective(1200px) rotateX(35deg);
  transform-origin: top center;
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-flip.active {
  opacity: 1;
  transform: perspective(1200px) rotateX(0deg);
}

.reveal-rotate {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-rotate.active {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.reveal-bounce {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition:
    opacity 1s ease-out,
    transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: opacity, transform;
}

.reveal-bounce.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-clip {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 0.4s ease,
    clip-path 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: clip-path;
}

.reveal-clip.active {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom,
  .reveal-stagger > *,
  .reveal-grid > *,
  .reveal-blur,
  .reveal-flip,
  .reveal-rotate,
  .reveal-bounce,
  .reveal-clip {
    transition: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    clip-path: none !important;
    animation: forceShowFallback 0.01s 3s forwards;
  }
  .reveal-line::after {
    transform: scaleX(1) !important;
    transition: none !important;
  }
}

@keyframes forceShowFallback {
  to {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
}

/* About Section */

.about-eyebrow {
  display: inline-block;
  color: var(--primary-color);
  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;
}

.about-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin: 14px 0 18px;
  line-height: 1.3;
}

.about-heading span {
  color: var(--primary-color);
}

.about-text {
  color: #5c5c5c;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.journey-highlight-card {
  background: var(--dark-bg);
  border-radius: 18px;
  padding: 46px 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 34px var(--shadow-color-dark);
}

.journey-highlight-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border: 2px dashed rgba(255, 204, 0, 0.25);
  border-radius: 50%;
}

.journey-years {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.journey-years span {
  font-size: 2rem;
}

.journey-highlight-card h4 {
  color: var(--text-white);
  font-weight: 700;
  margin: 12px 0 10px;
  position: relative;
  z-index: 1;
}

.journey-highlight-card p {
  color: var(--text-light);
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

.about-mvp {
  background-image: url("../images/bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 50%;
}

.mvp-card {
  background: var(--text-white);
  border-radius: 16px;
  padding: 36px 26px;
  text-align: center;
  height: 100%;
  box-shadow: 0 6px 18px var(--shadow-color);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.mvp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px var(--shadow-color-dark);
  background: var(--primary-color);
}

.mvp-card:hover .mvp-icon {
  background: var(--dark-bg);
  color: var(--primary-color);
}

.mvp-card:hover p {
  color: var(--dark-bg);
}

.mvp-card-featured p,
.mvp-card-featured h4 {
  color: var(--dark-bg);
}

/* .mvp-card-featured .mvp-icon {
  background: var(--dark-bg);
  color: var(--primary-color);
} */

.mvp-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255, 204, 0, 0.15);
  color: var(--topbar-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.mvp-card h4 {
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 10px;
}

.mvp-card p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.about-counters {
  background: var(--dark-bg);
  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(255, 204, 0, 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(--primary-color);
}

.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(255, 204, 0, 0.12);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.counter-num {
  color: var(--primary-color);
  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 {
  padding: 100px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 204, 0, 0.18);
  border-radius: 50% / 30%; /* oval shape */
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 204, 0, 0.06);
  border-color: var(--primary-color);
}

@media (max-width: 576px) {
  .counter-box {
    border-radius: 50% / 22%;
    padding: 26px 14px;
  }
}

.pillar-card {
  background: var(--card-bg);
  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 var(--shadow-color);
  border-bottom-color: var(--primary-color);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: var(--dark-bg);
  color: var(--primary-color);
  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-certs {
  background: var(--card-bg);
}

.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(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 24px var(--shadow-color);
  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(--dark-bg);
}

.cert-badge:hover .cert-seal {
  transform: rotate(10deg) scale(1.08);
  border-color: var(--topbar-bg);
  box-shadow: 0 16px 30px var(--shadow-color-dark);
}

.cert-icon {
  position: relative;
  z-index: 1;
  color: var(--primary-color);
  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(--topbar-bg);
}

.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(--dark-bg);
}

.cta-box {
  padding: 20px;
}

.cta-heading {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 14px;
}

.cta-heading span {
  color: var(--primary-color);
}

.cta-text {
  color: var(--text-light);
  opacity: 0.85;
  font-size: 1rem;
  margin-bottom: 24px;
}

.cta-btn {
  background: var(--primary-color);
  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(255, 204, 0, 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;
  }
}

/* Home Page */

.home-hero {
  background: var(--dark-bg);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-fireworks-left,
.hero-fireworks-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  background-repeat: no-repeat;
  opacity: 0.7;
  pointer-events: none;
}

.hero-fireworks-left {
  left: 0;
  background-position: left center;
}
.hero-fireworks-right {
  right: 0;
  background-position: right center;
}

.hero-title {
  font-family: var(--font-voice, serif);
  font-size: 3.4rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--primary-color);
  margin: 0;
  position: relative;
  z-index: 1;
}

.hero-title span {
  color: var(--text-white);
}

.home-welcome {
  position: relative;
  background: var(--card-bg);
  overflow: hidden;
}

.welcome-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 26px;
}

.welcome-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5c5c5c;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.welcome-list li i {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: var(--dark-bg);
  background: var(--primary-color);
  border-radius: 6px;
}

.welcome-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--topbar-bg);
  color: var(--text-white);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}

.welcome-btn i {
  transition: transform 0.3s ease;
}

.welcome-btn:hover {
  background: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px var(--shadow-color-dark);
  color: var(--primary-color);
}

.welcome-btn:hover i {
  transform: translateX(4px);
}

.welcome-media-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 30px;
}

.welcome-blob {
  position: absolute;
  top: 0;
  right: 5%;
  width: 78%;
  height: 100%;
  background: linear-gradient(160deg, var(--dark-bg) 0%, var(--topbar-bg) 100%);
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
  z-index: 0;
}

.welcome-logo-img {
  position: relative;
  z-index: 1;
  max-width: 300px;
  width: 100%;
  border-radius: 14px;
  transform: rotate(-3deg);
  box-shadow: 0 20px 45px var(--shadow-color-dark);
  border: 6px solid var(--text-white);
}

.welcome-years-card {
  position: absolute;
  top: 6%;
  right: 6%;
  z-index: 2;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 26px var(--shadow-color-dark);
  border: 4px solid var(--text-white);
  transform: rotate(6deg);
}

.welcome-years-card .journey-years {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark-bg);
  line-height: 1;
}

.welcome-years-card .journey-years span {
  font-size: 1rem;
}

.welcome-years-card h4 {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin: 2px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

@media (max-width: 991px) {
  .welcome-media-wrap {
    min-height: 300px;
    margin-top: 30px;
    padding: 20px;
  }

  .welcome-blob {
    width: 70%;
    right: 8%;
  }

  .welcome-logo-img {
    max-width: 220px;
    transform: rotate(-2deg);
  }

  .welcome-years-card {
    width: 95px;
    height: 95px;
    top: 4%;
    right: 4%;
  }

  .welcome-years-card .journey-years {
    font-size: 1.3rem;
  }

  .welcome-years-card h4 {
    font-size: 0.55rem;
  }

  .collection-photo-frame {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .collection-photo-frame::before {
    width: 55%;
    height: 55%;
    opacity: 0.55;
  }

  .collection-photo-frame img {
    width: 82%;
  }
}

@media (max-width: 767px) {
  .welcome-media-wrap {
    min-height: 260px;
    padding: 15px 10px;
  }

  .welcome-blob {
    width: 75%;
    right: 6%;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  }

  .welcome-logo-img {
    max-width: 180px;
    border-width: 4px;
    transform: rotate(0deg);
  }

  .welcome-years-card {
    width: 78px;
    height: 78px;
    top: 2%;
    right: 2%;
    border-width: 3px;
    transform: rotate(0deg);
  }

  .welcome-years-card .journey-years {
    font-size: 1.05rem;
  }

  .welcome-years-card .journey-years span {
    font-size: 0.75rem;
  }

  .welcome-years-card h4 {
    font-size: 0.48rem;
    letter-spacing: 0;
  }

  .welcome-list li {
    font-size: 0.88rem;
  }

  .welcome-btn {
    padding: 11px 22px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .collection-photo-frame {
    padding: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .collection-photo-frame::before {
    width: 42%;
    height: 42%;
    border-radius: 12px;
    opacity: 0.45;
  }

  .collection-photo-frame img {
    width: 74%;
    border-radius: 12px;
  }

  .collection-photo-frame:hover img {
    transform: none;
  }
}
@media (max-width: 480px) {
  .welcome-media-wrap {
    min-height: 220px;
  }

  .welcome-logo-img {
    max-width: 150px;
  }

  .welcome-years-card {
    width: 66px;
    height: 66px;
  }

  .welcome-years-card .journey-years {
    font-size: 0.9rem;
  }

  .welcome-years-card h4 {
    font-size: 0.42rem;
  }

  .collection-photo-frame {
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .collection-photo-frame::before {
    width: 38%;
    height: 38%;
    opacity: 0.4;
  }

  .collection-photo-frame img {
    width: 70%;
  }
}

.home-premium {
  background: linear-gradient(135deg, var(--topbar-bg), var(--dark-bg));
  position: relative;
}

.premium-photo-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 34px var(--shadow-color-dark);
}

.premium-photo-frame img {
  width: 100%;
  display: block;
}

.premium-item-card {
  background: var(--text-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px var(--shadow-color-dark);
  transition: transform 0.3s ease;
}

.premium-item-card:hover {
  transform: translateY(-6px);
}

.premium-item-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.premium-item-info {
  padding: 18px;
  text-align: center;
}

.premium-item-info h5 {
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 4px;
}

.premium-item-info p {
  color: #777;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.premium-view-btn {
  background: var(--primary-color);
  color: var(--dark-bg);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 22px;
  border-radius: 20px;
}

.premium-view-btn:hover {
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.premium-carousel {
  position: relative;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--text-white);
  color: var(--dark-bg);
  border: none;
  z-index: 2;
  box-shadow: 0 6px 16px var(--shadow-color-dark);
}

.carousel-arrow-left {
  left: -20px;
}
.carousel-arrow-right {
  right: -20px;
}

.collection-photo-frame {
  position: relative;
  z-index: 1;
  padding: 20px;
  overflow: hidden;
}

.collection-photo-frame::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  height: 78%;
  background: linear-gradient(135deg, var(--primary-color), var(--topbar-bg));
  border-radius: 20px;
  z-index: -1;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.5s ease;
}

.collection-photo-frame:hover::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.collection-photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 35px var(--shadow-color-dark);
  transition: transform 0.4s ease;
}

.collection-photo-frame:hover img {
  transform: translateY(-8px);
}

.collection-frame-tilt {
  transform: rotate(-2deg);
}

.collection-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.badge-coral {
  background: rgba(179, 0, 0, 0.1);
  color: var(--topbar-bg);
}
.badge-green {
  background: rgba(46, 139, 87, 0.12);
  color: #2e8b57;
}
.badge-gold {
  background: rgba(255, 204, 0, 0.15);
  color: #a67c00;
}

.collection-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin-bottom: 14px;
}

.collection-check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 26px;
}

.collection-check-list li {
  color: #5c5c5c;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.collection-check-list li i {
  color: #2e8b57;
  margin-right: 10px;
}

.collection-btn {
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  color: var(--text-white);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-coral {
  background: var(--topbar-bg);
}
.btn-green {
  background: #2e8b57;
}
.btn-gold {
  background: var(--primary-color);
  color: var(--dark-bg);
}

.collection-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px var(--shadow-color-dark);
  color: inherit;
}

.home-safety {
  background: var(--dark-bg);
}

.safety-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  height: 100%;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.safety-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

.safety-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 204, 0, 0.12);
  color: var(--primary-color);
  font-size: 1.5rem;
}

.safety-card h4 {
  color: var(--dark-bg);
  font-weight: 700;
  margin-bottom: 12px;
}

.safety-card p {
  color: var(--dark-bg);
  opacity: 0.75;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.how-step {
  position: relative;
  padding: 20px;
}

.how-step-num {
  position: absolute;
  top: 0;
  right: 30%;
  width: 26px;
  height: 26px;
  background: var(--dark-bg);
  color: var(--text-white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--topbar-bg);
  color: var(--topbar-bg);
  font-size: 1.8rem;
  background: rgba(179, 0, 0, 0.05);
}

.how-step h4 {
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 10px;
}

.how-step p {
  color: #5c5c5c;
  font-size: 0.9rem;
  line-height: 1.7;
}

.home-cta {
  background: linear-gradient(135deg, var(--topbar-bg), var(--dark-bg));
}

/* 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;
  }
}

/* Footer Section */

.site-footer {
  background: var(--dark-bg);
  color: var(--text-light);
  font-size: 0.92rem;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-cta {
  background: var(--topbar-bg);
  background: linear-gradient(120deg, var(--topbar-bg), #8a0000);
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 30px 24px;
}

.footer-cta-text h3 {
  color: var(--text-white);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 4px;
}

.footer-cta-text p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.9rem;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: var(--dark-bg);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.footer-cta-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-top {
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 320px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 204, 0, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.footer-top-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr auto 0.85fr auto 0.85fr auto 1.15fr;
  gap: 28px;
  align-items: start;
}

.footer-divider {
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.14),
    transparent
  );
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo img {
  height: 42px;
  width: auto;
}

.footer-logo span {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
}

.footer-about p {
  line-height: 1.7;
  color: var(--text-light);
  opacity: 0.85;
  margin: 0 0 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.35s ease,
    border-color 0.25s ease;
}

.footer-socials a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-3px) rotate(8deg);
}

.footer-col h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-white);
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 20px;
}

.footer-col h4 i {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 8px;
  background: rgba(255, 204, 0, 0.12);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  position: relative;
  color: var(--text-light);
  opacity: 0.8;
  text-decoration: none;
  padding-left: 14px;
  transition:
    color 0.25s ease,
    opacity 0.25s ease,
    padding-left 0.25s ease;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.5;
  transition: opacity 0.25s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  opacity: 1;
  padding-left: 18px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-list i {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: rgba(255, 204, 0, 0.12);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 2px;
}

.footer-contact-list span {
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.5;
  padding-top: 5px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom-inner p {
  margin: 0;
  color: var(--text-light);
  opacity: 0.65;
  font-size: 0.82rem;
}

.footer-note {
  text-align: right;
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .footer-divider {
    display: none;
  }
  .footer-about {
    grid-column: 1 / 3;
  }
}

@media (max-width: 576px) {
  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-about {
    grid-column: 1;
  }
  .footer-top {
    padding: 45px 0 30px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-note {
    text-align: center;
  }
}
