/* ==========================================================================
   HI POWER SPORTS — MAIN STYLESHEET
   Premium Black + Gold Industrial Theme
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --grey-dark: #1c1c1c;
  --grey-light: #f5f4f1;
  --grey-mid: #7c7c7c;
  --white: #ffffff;
  --gold-1: #ffd700;
  --gold-2: #d4af37;
  --gold-3: #b8860b;
  --gold-gradient: linear-gradient(
    135deg,
    var(--gold-1) 0%,
    var(--gold-2) 50%,
    var(--gold-3) 100%
  );
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius: 14px;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.35);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  display: block;
}
.section-padding {
  padding: 100px 0;
}
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-3);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold-gradient);
  display: inline-block;
}
.text-center .section-eyebrow {
  justify-content: center;
}
.section-title {
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--black);
}

/* Buttons */
.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: var(--black);
  font-weight: 700;
  font-family: var(--font-head);
  padding: 15px 34px;
  border-radius: 50px;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}
.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.5);
  color: var(--black);
}
.btn-premium .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple 0.6s linear;
}
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-outline-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--gold-2);
  color: var(--white);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  transition: var(--transition);
}
.btn-outline-premium:hover {
  background: var(--gold-gradient);
  color: var(--black);
  border-color: transparent;
  transform: translateY(-3px);
}

/* ============ PAGE LOADER ============ */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}
.loader-inner {
  text-align: center;
}
.loader-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 22px;
  border-radius: 5px;
  overflow: hidden;
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  animation: loading 1.4s ease-in-out forwards;
}
@keyframes loading {
  to {
    width: 100%;
  }
}

/* ============ SCROLL PROGRESS ============ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--gold-gradient);
  z-index: 2000;
  transition: width 0.1s ease;
}

/* ============ HEADER ============ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background:#000;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.main-header.shrink {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}
.navbar {
  padding: 18px 0;
  transition: var(--transition);
}
.main-header.shrink .navbar {
  padding: 10px 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--black);
  font-size: 18px;
  box-shadow: var(--shadow-gold);
}
.brand-text {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
}
.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 14.5px;
  margin: 0 12px;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold-1) !important;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.btn-quote {
  background: var(--gold-gradient);
  color: var(--black) !important;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}
.btn-quote:hover {
  transform: translateY(-2px);
}
.navbar-toggler {
  border: none;
  background: transparent;
  width: 34px;
  height: 26px;
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001; /* Above navbar-collapse */
}
.navbar-toggler span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold-1);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar-toggler.open span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
.navbar-toggler.open span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler.open span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

/* ============ HERO ============ */
.hero-section {
  position: relative;
  height: 800px;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  padding-top: 85px; /* Added margin for fixed navbar */
}
.hero-swiper,
.hero-swiper .swiper-slide {
  height: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.slide-1 .hero-bg {
  background-image: url('../images/hero/1.jpg');
}
.slide-2 .hero-bg {
  background-image: url('../images/hero/2.jpg');
}
.swiper-slide-active .hero-bg {
  /* animation: heroZoom 8s ease-in-out forwards; */
}
@keyframes heroZoom {
  from {
    transform: scale(1.15);
  }
  to {
    transform: scale(1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.92) 5%,
    rgba(10, 10, 10, 0.65) 50%,
    rgba(10, 10, 10, 0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  padding-top: 70px;
}
.hero-eyebrow {
  color: var(--gold-1);
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero-title {
  font-size: 3.6rem;
  line-height: 1.2;
  max-width: 750px;
  margin-bottom: 20px;
  font-weight: 800;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-1);
  border-radius: 50%;
  opacity: 0.6;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  from {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  to {
    transform: translateY(-100vh);
    opacity: 0;
  }
}

.scroll-down-indicator {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.scroll-down-indicator span {
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--gold-1), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.hero-swiper .swiper-pagination {
  bottom: 30px !important;
  z-index: 5;
}
.hero-swiper .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
  width: 10px;
  height: 10px;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--gold-1);
  opacity: 1;
  width: 28px;
  border-radius: 6px;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: var(--gold-1);
  background: rgba(255, 255, 255, 0.08);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition);
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: var(--gold-gradient);
  color: var(--black);
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 18px;
}

/* ============ ABOUT ============ */
.about-section {
  background: var(--white);
}
.about-img-wrap {
  position: relative;
}
.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 568px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--gold-gradient);
  color: var(--black);
  padding: 22px 26px;
  border-radius: 14px;
  box-shadow: var(--shadow-gold);
  text-align: center;
  animation: floatY 3.5s ease-in-out infinite;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.badge-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}
.about-text {
  color: var(--grey-mid);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-points {
  margin: 22px 0;
}
.about-points li {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-points i {
  color: var(--gold-3);
}

.counter-row {
  border-top: 1px solid #eee;
}
.counter-box {
  text-align: center;
  padding: 20px 10px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.counter-box:hover {
  background: var(--grey-light);
  transform: translateY(-5px);
}
.counter-box h3 {
  font-size: 2.6rem;
  color: var(--black);
  font-weight: 800;
}
.counter-box h3 span.counter {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.counter-box p {
  color: var(--grey-mid);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ============ PRODUCTS ============ */
.products-section {
  background: var(--grey-light);
}
.products-swiper {
  padding-bottom: 70px;
}
.product-card {
  display: flex;
  flex-direction: row;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  height: 340px;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
}
.product-img {
  flex: 0 0 45%;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.08);
}
.product-info {
  flex: 1;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-tag {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--black);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  width: fit-content;
}
.product-info h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--black);
}
.product-info p {
  color: var(--grey-mid);
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.read-more {
  color: var(--gold-3);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.read-more:hover {
  gap: 14px;
  color: var(--gold-1);
}
.products-swiper .swiper-pagination-bullet {
  background: var(--black);
  opacity: 0.3;
}
.products-swiper .swiper-pagination-bullet-active {
  background: var(--gold-2);
  opacity: 1;
}
.products-next,
.products-prev {
  color: var(--black);
  background: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}
.products-next::after,
.products-prev::after {
  font-size: 16px;
}

/* ============ GALLERY ============ */
.gallery-section {
  background: var(--white);
}
.masonry-grid {
  column-count: 3;
  column-gap: 20px;
}
.masonry-item {
  position: relative;
  margin-bottom: 20px;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.masonry-item.tall img {
  height: 543px;
}
.masonry-item:not(.tall) img {
  height: 260px;
}
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.75), transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.masonry-overlay i {
  color: var(--gold-1);
  font-size: 20px;
  background: rgba(255, 255, 255, 0.12);
  padding: 12px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
}
.masonry-item:hover .masonry-overlay {
  opacity: 1;
}
.masonry-item:hover img {
  transform: scale(1.1);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.94);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: 26px;
  right: 36px;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
}

/*============================*/

.industries-section {
  background: #0b0b0b;

  overflow: hidden;
}

.industry-list {
  display: flex;

  flex-direction: column;

  gap: 35px;

  max-width: 900px;

  margin: auto;

  position: relative;
}

/* center line */

.industry-list::before {
  content: "";

  position: absolute;

  left: 50%;

  top: 0;

  width: 2px;

  height: 100%;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(212, 175, 55, 0.6),
    transparent
  );

  transform: translateX(-50%);
}

.industry-item {
  display: flex;

  width: 100%;
}

.industry-item.left {
  justify-content: flex-start;

  padding-right: 80px;
}

.industry-item.right {
  justify-content: flex-end;

  padding-left: 80px;
}

.industry-card {
  width: 360px;

  background: #161616;

  border: 1px solid rgba(212, 175, 55, 0.18);

  border-radius: 18px;

  padding: 35px;

  display: flex;

  align-items: center;

  gap: 22px;

  transition: 0.45s;

  position: relative;

  overflow: hidden;
}

.industry-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 4px;

  height: 100%;

  background: linear-gradient(var(--gold-1), var(--gold-2));

  transition: 0.4s;
}

.industry-card i {
  font-size: 32px;

  color: var(--gold-1);

  transition: 0.4s;

  min-width: 45px;

  text-align: center;
}

.industry-card h4 {
  margin: 0;

  font-size: 1.1rem;

  line-height: 1.5;

  font-weight: 600;

  color: #fff;
}

.industry-card:hover {
  transform: translateY(-8px) scale(1.03);

  border-color: var(--gold-2);

  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.18);
}

.industry-card:hover i {
  transform: rotate(10deg) scale(1.15);
}

.industry-card:hover::before {
  width: 100%;

  opacity: 0.08;
}

/* Mobile */

@media (max-width: 768px) {
  .industry-list::before {
    display: none;
  }

  .industry-item.left,
  .industry-item.right {
    padding: 0;

    justify-content: center;
  }

  .industry-card {
    width: 100%;
  }
}

/* ============ PROCESS ============ */
.process-section {
  background: var(--grey-light);
}
.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}
.process-line {
  position: absolute;
  top: 38px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #ddd;
  z-index: 0;
}
.process-line-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
}
.process-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid var(--gold-2);
  transition: var(--transition);
}
.process-icon i {
  font-size: 1.6rem;
  color: var(--gold-3);
}
.process-step:hover .process-icon {
  background: var(--gold-gradient);
  transform: scale(1.1);
}
.process-step:hover .process-icon i {
  color: var(--black);
}
.process-step h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.process-step p {
  color: var(--grey-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============ STRENGTHS ============ */
.strengths-section {
  background: var(--white);
}
.strength-card {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  border: 1px solid transparent;
}
.strength-card i {
  font-size: 1.7rem;
  color: var(--gold-3);
  margin-bottom: 14px;
  display: inline-block;
}
.strength-card p {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--black);
  line-height: 1.4;
}
.strength-card:hover {
  background: var(--white);
  border-color: var(--gold-2);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

/* ============ WHY US ============ */
.why-us-section {
  background: var(--black);
}
.why-us-section .section-eyebrow {
  color: var(--gold-1);
}
.why-us-section .section-title {
  color: var(--white);
}
.why-card {
  background: var(--black-soft);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1.5px;
  background: var(--gold-gradient);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover::before {
  opacity: 1;
}
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon i {
  font-size: 1.4rem;
  color: var(--black);
}
.why-card h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.why-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-size: 0.92rem;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

/* ============ VISION MISSION COMMITMENT ============ */
/*==========================*/

.vmc-section {
  background: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.vmc-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.vmc-card {
  position: relative;

  flex: 1;
  min-width: 280px;
  max-width: 360px;

  background: #fff;

  border-radius: 22px;

  padding: 35px 30px;

  border: 1px solid rgba(212, 175, 55, 0.18);

  transition: 0.45s;

  overflow: hidden;
}

.vmc-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
}

.vmc-card.active {
  transform: translateY(-35px);

  border-color: var(--gold-2);

  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.18);
}

.icon-box {
  width: 75px;
  height: 75px;

  border-radius: 50%;

  background: linear-gradient(135deg, #fff9eb, #fff);

  border: 2px solid rgba(212, 175, 55, 0.35);

  display: flex;
  align-items: center;
  justify-content: center;

  margin: auto auto 22px;

  transition: 0.4s;
}

.icon-box i {
  font-size: 30px;

  color: var(--gold-1);
}

.vmc-card h4 {
  text-align: center;

  margin-bottom: 15px;

  font-size: 1.35rem;
}

.vmc-card p {
  text-align: center;

  color: #666;

  line-height: 1.8;
}

.vmc-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
}

.vmc-card:hover .icon-box {
  transform: rotate(360deg) scale(1.08);

  background: var(--gold-gradient);
}

.vmc-card:hover .icon-box i {
  color: #111;
}

/*========================*/

@media (max-width: 992px) {
  .vmc-wrapper {
    flex-direction: column;
  }

  .vmc-card.active {
    transform: none;
  }

  .vmc-card {
    max-width: 100%;
  }
}
/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: var(--white);
}
.testimonial-swiper {
  padding-bottom: 60px;
}
.testimonial-card {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 38px 32px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.testimonial-card .stars {
  color: var(--gold-2);
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-card p {
  color: var(--black);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  min-height: 110px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-head);
}
.testimonial-author h5 {
  font-size: 1rem;
  margin: 0;
}
.testimonial-swiper .swiper-pagination-bullet {
  background: var(--black);
  opacity: 0.3;
}
.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--gold-2);
  opacity: 1;
}

/* ============ FAQ ============ */
.faq-section {
  background: var(--grey-light);
}
.faq-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  animation: faqFloat 5s ease-in-out infinite;
}
@keyframes faqFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.faq-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.4), transparent 40%);
}

.premium-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px !important;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.premium-accordion .accordion-item:hover {
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-2);
}
.premium-accordion .accordion-button {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--black);
  background: transparent;
  padding: 20px 24px;
  font-size: 1rem;
  box-shadow: none;
}
.premium-accordion .accordion-button:not(.collapsed) {
  color: var(--gold-3);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), transparent);
  box-shadow: inset 3px 0 0 var(--gold-2);
}
.premium-accordion .accordion-button::after {
  background-image: none;
  content: "\002B";
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-3);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.premium-accordion .accordion-button:not(.collapsed)::after {
  content: "\2212";
  transform: rotate(180deg);
}
.premium-accordion .accordion-body {
  color: var(--grey-mid);
  line-height: 1.8;
  padding: 0 24px 22px;
}

/* ============ CONTACT ============ */
.contact-section {
  background: var(--white);
}
.contact-info-card {
  background: var(--black);
  border-radius: var(--radius);
  padding: 38px 32px;
  height: 100%;
}
.contact-info-card h4 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 1.3rem;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
.contact-list i {
  color: var(--gold-2);
  font-size: 1.1rem;
  margin-top: 3px;
}
.contact-map {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.contact-form {
  background: #cecdca8a;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.contact-form .form-control {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px 14px;
  background: var(--white);
}
.contact-form .form-control:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.form-floating > label {
  color: var(--grey-mid);
}
.form-success {
  display: none;
  color: #1a7a3d;
  font-weight: 600;
  margin-top: 14px;
  text-align: center;
}
.form-success.show {
  display: block;
}

/* ============ FOOTER ============ */
.main-footer {
  background: var(--black);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-gradient);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-about {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold-gradient);
  color: var(--black);
  transform: translateY(-4px);
}
.main-footer h5 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: 1.05rem;
  position: relative;
  padding-bottom: 10px;
}
.main-footer h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-gradient);
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold-1);
  padding-left: 5px;
}
.footer-newsletter {
  display: flex;
  gap: 8px;
}
.footer-newsletter input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: var(--black-soft);
  color: var(--white);
}
.footer-newsletter button {
  width: 46px;
  border-radius: 8px;
  border: none;
  background: var(--gold-gradient);
  color: var(--black);
  cursor: pointer;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}
.footer-bottom i {
  color: var(--gold-2);
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--black);
  border: none;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
  cursor: pointer;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover {
  transform: translateY(-5px);
}

/* AOS override tweak */
[data-aos] {
  transition-property: transform, opacity;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}
