:root {
  --primary: #a3e635;
  --primary-glow: #bef264;
  --primary-dark: #65a30d;
  --secondary: #ef4444;
  --bg-dark: #070707;
  --bg-dark-2: #101010;
  --bg-card: #161616;
  --bg-card-hover: #1d1d1d;
  --border: #262626;
  --text-light: #ffffff;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --font-head: "Bebas Neue", sans-serif;
  --font-body: "Poppins", sans-serif;
  --shadow-green: 0 10px 40px rgba(163, 230, 53, 0.25);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary-dark), var(--primary));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

::selection {
  background: var(--primary);
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  letter-spacing: 1.5px;
  line-height: 1.1;
}
.display-hero {
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  font-weight: 400;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: 3px;
}
.section-pre {
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-pre::before {
  content: "";
  width: 35px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
}
.text-primary-green {
  color: var(--primary) !important;
}
.text-muted-c {
  color: var(--text-muted);
}

/* ---------- Loader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
.preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.cricket-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cricket-scene {
  position: relative;
  width: 480px;
  height: 420px;
}
.bat {
  position: absolute;
  bottom: 150px;
  left: 50%;
  margin-left: 20px;
  width: 120px;
  height: 200px;
  transform-origin: 50% 100%;
  transform: rotate(-90deg);
  animation: bat-anim 2.8s cubic-bezier(0.45, 0, 0.55, 1) forwards;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.65));
}
.ball {
  position: absolute;
  bottom: 340px;
  left: 50%;
  margin-left: -100px;
  width: 38px;
  height: 38px;
  animation: ball-anim 2.8s cubic-bezier(0.45, 0, 0.55, 1) forwards;
  filter: drop-shadow(0 0 18px rgba(163, 230, 53, 0.65));
  will-change: transform, opacity;
}
.preloader-text {
  margin-top: 36px;
  font-family: var(--font-head);
  letter-spacing: 10px;
  color: var(--primary);
  font-size: 1.6rem;
  text-shadow: 0 0 25px rgba(163, 230, 53, 0.6);
  /* animation: text-fade 1.2s ease-in-out infinite; */
}
.preloader-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 6px;
  color: #fff;
  font-size: 0.65rem;
  margin-top: 4px;
}
@keyframes bat-anim {
  0%, 12%  { transform: rotate(-90deg); }
  18%      { transform: rotate(-95deg); animation-timing-function: ease-out; }
  24%, 37% { transform: rotate(-90deg); }
  43%      { transform: rotate(-95deg); animation-timing-function: ease-out; }
  49%      { transform: rotate(-90deg); }
  56%      { transform: rotate(-90deg); animation-timing-function: ease-in; }
  62%      { transform: rotate(-125deg); animation-timing-function: cubic-bezier(0.55, 0, 0.45, 1); }
  72%      { transform: rotate(-25deg); animation-timing-function: ease-out; }
  82%      { transform: rotate(25deg); }
  100%     { transform: rotate(25deg); }
}
@keyframes ball-anim {
  0%   { transform: translate(0, 0) scale(1);            animation-timing-function: ease-in;  }
  18%  { transform: translate(0, 180px) scale(1);         animation-timing-function: ease-out; }
  30%  { transform: translate(0, 0) scale(1);            animation-timing-function: ease-in;  }
  43%  { transform: translate(0, 180px) scale(1);         animation-timing-function: ease-out; }
  55%  { transform: translate(0, 0) scale(1);            animation-timing-function: ease-in;  }
  68%  { transform: translate(0, 180px) scale(1.1);       opacity: 1; }
  74%  { transform: translate(30px, 168px) scale(2.4);    opacity: 1; }
  82%  { transform: translate(60px, 156px) scale(5);      opacity: 0.92; }
  90%  { transform: translate(90px, 146px) scale(9);      opacity: 0.55; }
  100% { transform: translate(90px, 144px) scale(16);     opacity: 0; }
}
@media (max-width: 575.98px) {
  .cricket-scene {
    transform: scale(0.65);
    transform-origin: 50% 50%;
    margin: -73px 0;
  }
}
@keyframes text-fade {
  0%,
  100% {
    opacity: 0.35;
    letter-spacing: 10px;
  }
  50% {
    opacity: 1;
    letter-spacing: 14px;
  }
}

/* ---------- Navbar ---------- */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar-custom.scrolled {
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(163, 230, 53, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.navbar-custom .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-custom .navbar-brand img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(163, 230, 53, 0.4);
  transition: transform 0.4s;
}
.navbar-custom .navbar-brand:hover img {
  transform: rotate(360deg);
}
.navbar-custom .brand-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
}
.navbar-custom .brand-text span {
  color: var(--primary);
  display: block;
  font-size: 0.7rem;
  letter-spacing: 4px;
}
.navbar-custom .nav-link {
  color: #e5e5e5 !important;
  font-weight: 500;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 6px;
  padding: 8px 14px !important;
  position: relative;
}
.navbar-custom .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border: 0;
  transition: all 0.35s ease;
  transform: translateX(-50%);
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary) !important;
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: 70%;
}
.navbar-toggler {
  border: 1px solid var(--primary);
  padding: 6px 10px;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(163, 230, 53, 0.4);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23a3e635' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Navbar Services dropdown */
.navbar-custom .nav-item.dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.navbar-custom .nav-item.dropdown > .nav-link::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.62rem;
  margin-left: 4px;
  order: 2;
  transition: transform 0.3s;
}
.navbar-custom .nav-item.dropdown.show > .nav-link::before,
.navbar-custom .nav-item.dropdown:hover > .nav-link::before {
  transform: rotate(-180deg);
}
.navbar-custom .dropdown-menu {
  background: rgba(7, 7, 7, 0.97);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(163, 230, 53, 0.2);
  border-radius: 14px;
  padding: 8px;
  margin-top: 12px;
  min-width: 230px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}
.navbar-custom .dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.navbar-custom .dropdown-item {
  color: #e5e5e5;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s;
}
.navbar-custom .dropdown-item i {
  width: 22px;
  text-align: center;
  color: var(--primary);
  font-size: 0.95rem;
}
.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item:focus,
.navbar-custom .dropdown-item.active {
  background: rgba(163, 230, 53, 0.12);
  color: var(--primary);
}
.navbar-custom .dropdown-divider {
  border-color: rgba(163, 230, 53, 0.15);
  margin: 6px 4px;
}
@media (min-width: 992px) {
  .navbar-custom .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/* ---------- Buttons ---------- */
.btn-neon {
  background: var(--primary);
  color: #000;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(163, 230, 53, 0.4);
}
.btn-neon:hover {
  background: var(--primary-glow);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(163, 230, 53, 0.6);
}
.btn-neon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}
.btn-neon:hover::before {
  left: 100%;
}
.btn-outline-neon {
  background: transparent;
  color: #fff;
  border: 2px solid var(--primary);
  padding: 12px 34px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.35s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-outline-neon:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-3px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(7, 7, 7, 0.85) 0%,
      rgba(7, 7, 7, 0.55) 50%,
      rgba(7, 7, 7, 0.9) 100%
    ),
    url("../images/gallery8.png") center/cover no-repeat fixed;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(163, 230, 53, 0.15),
    transparent 50%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 60px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(163, 230, 53, 0.4);
  border-radius: 30px;
  background: rgba(163, 230, 53, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(163, 230, 53, 0);
  }
}
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: 0.95;
  margin-bottom: 25px;
}
.hero h1 .accent {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  height: 14px;
  width: 100%;
  background: rgba(163, 230, 53, 0.2);
  z-index: -1;
}
.hero p.lead {
  font-size: 1.15rem;
  color: #fff;
  max-width: 600px;
  margin-bottom: 35px;
  font-weight:400;
}
.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.hero-stats .stat h3 {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0;
}
.hero-stats .stat p {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.hero-visual {
  position: relative;
  height: 550px;
}
.hero-img-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(163, 230, 53, 0.2);
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoom 20s infinite alternate;
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.hero-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 7, 7, 0.9));
}
.floating-card {
  position: absolute;
  background: rgba(22, 22, 22, 0.92);
  border: 1px solid rgba(163, 230, 53, 0.3);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}
.floating-card.fc-1 {
  top: 30px;
  left: -30px;
  animation-delay: 0s;
}
.floating-card.fc-2 {
  bottom: 90px;
  right: -30px;
  animation-delay: 1.5s;
}
.floating-card i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.floating-card h6 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
  color: #fff;
}
.floating-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary);
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-hint .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 14px;
  margin: 8px auto 0;
  position: relative;
}
.scroll-hint .mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: wheel 1.5s infinite;
}
@keyframes wheel {
  0% {
    top: 6px;
    opacity: 1;
  }
  100% {
    top: 24px;
    opacity: 0;
  }
}

/* ---------- Sections ---------- */
section {
  padding: 100px 0;
  position: relative;
}
.section-dark {
  background: var(--bg-dark);
}
.section-darker {
  background: var(--bg-dark-2);
}

/* Page header (used on internal pages) */
.page-header {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(7, 7, 7, 0.85), rgba(7, 7, 7, 0.7)),
    url("../images/gallery6.png") center/cover no-repeat;
  padding-top: 120px;
}
.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 4px;
}
.page-header h1 span {
  color: var(--primary);
}
.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #d4d4d4;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  margin-top: 15px;
}
.breadcrumb-custom a {
  color: var(--primary);
  text-decoration: none;
}

/* ---------- About preview / about page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.about-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-dark);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.about-img:hover img {
  transform: scale(1.08);
}
.about-img.tall {
  grid-row: span 2;
}
.about-feature {
  display: flex;
  gap: 18px;
  margin-top: 25px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.35s;
}
.about-feature:hover {
  border-color: var(--primary);
  transform: translateX(8px);
}
.about-feature .icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: grid;
  place-items: center;
  color: #000;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.about-feature h5 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.about-feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 3;
  background: var(--primary);
  color: #000;
  padding: 20px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow-green);
}
.experience-badge h2 {
  font-family: var(--font-head);
  font-size: 3rem;
  margin: 0;
  color: #000;
}
.experience-badge p {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

/* ---------- Service cards ---------- */
.service-card {
  background: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.45s ease;
  position: relative;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow: 0 25px 60px rgba(163, 230, 53, 0.18);
}
.service-card .card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.service-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .card-img img {
  transform: scale(1.15);
}
.service-card .card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85));
}
.service-card .card-icon {
  position: absolute;
  bottom: 10px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  z-index: 2;
  box-shadow: var(--shadow-green);
}
.service-card .card-body {
  padding: 40px 28px 28px;
}
.service-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #fff;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.service-card .more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card .more i {
  transition: transform 0.3s;
}
.service-card:hover .more i {
  transform: translateX(6px);
}

/* ---------- Why choose / features ---------- */
.feature-box {
  text-align: center;
  padding: 40px 25px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.feature-box:hover {
  transform: translateY(-10px);
  background: var(--bg-card-hover);
  border-color: var(--primary);
}
.feature-box:hover::before {
  transform: scaleX(1);
}
.feature-box .fi {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: transform 0.5s;
}
.feature-box:hover .fi {
  transform: rotateY(360deg);
}
.feature-box h5 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- Counter section ---------- */
.counter-section {
  background:
    linear-gradient(rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.92)),
    url("../images/gallery9.png") center/cover fixed;
  padding: 80px 0;
}
.counter-box {
  text-align: center;
  padding: 20px;
}
.counter-box .num {
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 0 30px rgba(163, 230, 53, 0.5);
}
.counter-box p {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-top: 8px;
}

/* ---------- Owner / Team ---------- */
.owner-card {
  background: var(--bg-card);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: var(--shadow-dark);
}
.owner-card .owner-img {
  height: 435px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0) 60%, rgba(7, 7, 7, 0.6) 100%),
    url("images/owner.jpeg") center top/cover no-repeat;
}
.owner-card .owner-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 100%,
    rgba(163, 230, 53, 0.18),
    transparent 60%
  );
  pointer-events: none;
}

/* ---------- Banner showcase ---------- */
.banner-showcase {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(163, 230, 53, 0.25);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(163, 230, 53, 0.15);
  transition: transform 0.6s ease;
}
.banner-showcase:hover {
  transform: translateY(-8px);
}
.banner-showcase img,
.banner-showcase video {
  width: 100%;
  height: auto;
  display: block;
}

/* Video showcase = behaves like a normal image, sits beside text column */
.video-showcase {
  width: 100%;
  aspect-ratio: 16 / 11;
  background: #000;
}
.video-showcase video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FAQ tall side image (stumps) */
.faq-side-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(163, 230, 53, 0.25);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(163, 230, 53, 0.12);
  margin-top: 24px;
  aspect-ratio: 3 / 4;
  max-height: 520px;
}
.faq-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.faq-side-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 7, 7, 0.55));
  pointer-events: none;
}

/* Testimonial author with no avatar */
.testimonial-card .author.author-text {
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.testimonial-card .author.author-text h6 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.testimonial-card .author.author-text span {
  color: var(--primary);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.banner-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(163, 230, 53, 0) 0%,
    rgba(163, 230, 53, 0.08) 100%
  );
  pointer-events: none;
}

/* ---------- Organizer cards ---------- */
.organizer-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 24px 28px;
  text-align: center;
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
  height: 100%;
  overflow: hidden;
}
.organizer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(163, 230, 53, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.organizer-card:hover {
  border-color: rgba(163, 230, 53, 0.55);
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(163, 230, 53, 0.18);
}
.organizer-card:hover::before {
  opacity: 1;
}
.organizer-card .org-avatar {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  padding: 4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 0 0 1px rgba(163, 230, 53, 0.25), 0 12px 35px rgba(163, 230, 53, 0.28);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.organizer-card .org-avatar::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(163, 230, 53, 0.35);
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.6s ease;
}
.organizer-card:hover .org-avatar {
  transform: scale(1.04);
  box-shadow: 0 0 0 1px rgba(163, 230, 53, 0.45), 0 18px 45px rgba(163, 230, 53, 0.4);
}
.organizer-card:hover .org-avatar::after {
  opacity: 1;
  transform: rotate(25deg);
}
.organizer-card .org-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #0f1416;
}
.organizer-card .org-avatar > i {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0f1416;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  color: var(--primary);
}
.organizer-card h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.organizer-card .role {
  color: var(--primary);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
.organizer-card .org-bio {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0 auto 18px;
  max-width: 260px;
}
.organizer-card .org-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.organizer-card a.phone {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 30px;
  background: rgba(163, 230, 53, 0.12);
  border: 1px solid rgba(163, 230, 53, 0.35);
  transition: all 0.3s;
  font-size: 0.88rem;
}
.organizer-card a.phone:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}
.organizer-card a.org-wa {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #25d366;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  font-size: 1.05rem;
  text-decoration: none;
}
.organizer-card a.org-wa:hover {
  background: #25d366;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}
.owner-card .owner-body {
  padding: 35px;
}
.owner-card .role {
  color: var(--primary);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.owner-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 12px;
}
.owner-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.owner-card .socials {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}
.owner-card .socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.owner-card .socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
}

/* ---------- Gallery ---------- */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-filter button {
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}
.gallery-filter button:hover,
.gallery-filter button.active {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 24px;
  cursor: pointer;
  transition: transform 0.4s;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.gallery-item:hover img {
  transform: scale(1.12);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.85));
  opacity: 0.6;
  transition: opacity 0.4s;
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item .info {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  z-index: 2;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s;
}
.gallery-item:hover .info {
  transform: translateY(0);
  opacity: 1;
}
.gallery-item .info h5 {
  font-family: var(--font-body);
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-size: 1.05rem;
}
.gallery-item .info span {
  color: var(--primary);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gallery-item .zoom {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  display: grid;
  place-items: center;
  transform: scale(0);
  transition: transform 0.4s;
  z-index: 2;
}
.gallery-item:hover .zoom {
  transform: scale(1);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 35px 30px;
  border: 1px solid var(--border);
  position: relative;
  height: 100%;
  transition: all 0.4s;
}
.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
}
.testimonial-card .quote {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
}
.testimonial-card p {
  color: #d4d4d4;
  font-style: italic;
  margin: 18px 0 25px;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-card .author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.testimonial-card .author h6 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  color: #fff;
}
.testimonial-card .author span {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.testimonial-card .rating {
  color: var(--primary);
  margin-top: 8px;
}

/* ---------- Pricing ---------- */
.price-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 40px 30px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s;
  position: relative;
  height: 100%;
}
.price-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(163, 230, 53, 0.18);
}
.price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(163, 230, 53, 0.08), var(--bg-card));
}
.price-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--primary);
  color: #000;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 700;
}
.price-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 6px;
}
.price-card .price {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: var(--primary);
  margin: 18px 0 6px;
  line-height: 1;
}
.price-card .price small {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}
.price-card ul li {
  padding: 8px 0;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--border);
  font-size: 0.92rem;
}
.price-card ul li i {
  color: var(--primary);
  margin-right: 8px;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: var(--primary);
}
.faq-q {
  padding: 20px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s;
}
.faq-q:hover {
  color: var(--primary);
}
.faq-item.open .faq-q {
  color: var(--primary);
}
.faq-q .ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  color: var(--primary);
  display: grid;
  place-items: center;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q .ico {
  transform: rotate(45deg);
  background: var(--primary);
  color: #000;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 26px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 26px 22px;
}
.faq-a p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- Contact ---------- */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s;
}
.contact-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
}
.contact-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
}
.contact-card h5 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}
.contact-card a {
  color: var(--text-muted);
  text-decoration: none;
}
.contact-card a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--bg-card);
  padding: 45px;
  border-radius: 24px;
  border: 1px solid var(--border);
}
.contact-form label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}
.contact-form .form-control,
.contact-form .form-select {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(163, 230, 53, 0.2);
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Map */
.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 450px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.6) contrast(1.05) invert(0.85);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  padding: 90px 0;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(163, 230, 53, 0.92), rgba(101, 163, 13, 0.95)),
    url("../images/gallery4.png") center/cover no-repeat;
}
.cta-banner h2 {
  color: #000;
  font-size: clamp(2rem, 5vw, 4rem);
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
}
.cta-banner p {
  color: #0a0a0a;
  font-size: 1.1rem;
  margin: 20px 0 30px;
  max-width: 700px;
  margin-inline: auto;
}
.cta-banner .btn-dark-neon {
  background: #000;
  color: var(--primary);
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  border: 2px solid #000;
}
.cta-banner .btn-dark-neon:hover {
  background: transparent;
  color: #000;
  border-color: #000;
}

/* ---------- Footer ---------- */
footer {
  background: #040404;
  padding: 70px 0 25px;
  position: relative;
  border-top: 1px solid rgba(163, 230, 53, 0.15);
}
footer h5 {
  font-family: var(--font-body);
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
footer h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary);
}
footer p,
footer li {
  color: var(--text-muted);
  font-size: 0.92rem;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 10px;
}
footer ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
footer ul li a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  transition: transform 0.3s;
}
footer ul li a:hover {
  color: var(--primary);
}
footer ul li a:hover::before {
  transform: translateX(4px);
}
footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
footer .footer-logo img {
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(163, 230, 53, 0.3);
}
footer .footer-logo .name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
}
footer .footer-logo .name span {
  color: var(--primary);
  font-size: 0.7rem;
  letter-spacing: 4px;
  display: block;
}
footer .socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
footer .socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
footer .socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
  transform: translateY(-4px);
}
.contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.contact-line i {
  color: var(--primary);
  margin-top: 4px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.85rem;
}
.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
}

/* ---------- Floating CTA buttons ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
}
.scroll-top {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  border: none;
  font-size: 1rem;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  section {
    padding: 70px 0;
  }
  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: 130px 0 40px;
  }
  .hero-visual {
    height: 380px;
    margin-top: 40px;
  }
  .navbar-custom {
    background: rgba(7, 7, 7, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
  }
  .navbar-custom .navbar-brand img {
    height: 58px;
    width: 58px;
  }
  .navbar-custom .navbar-collapse {
    margin-top: 12px;
    padding: 12px 6px 6px;
    border-top: 1px solid rgba(163, 230, 53, 0.15);
  }
  .navbar-custom .nav-link {
    padding: 10px 14px !important;
    margin: 0;
  }
  .navbar-custom .nav-item.ms-lg-3 {
    margin-top: 10px;
  }
  .navbar-custom .nav-item .btn-neon {
    width: 100%;
    justify-content: center;
  }
  .floating-card.fc-1 {
    left: 10px;
  }
  .floating-card.fc-2 {
    right: 10px;
  }
  .hero-stats {
    gap: 30px;
    margin-top: 40px;
  }
  .hero-stats .stat h3 {
    font-size: 2.3rem;
  }
  .contact-form {
    padding: 30px 22px;
  }
  .owner-card .owner-img {
    height: 420px;
  }
  .owner-card .owner-body {
    padding: 28px 24px;
  }
  .map-wrap {
    min-height: 360px;
  }
  footer .footer-logo img {
    height: 78px;
  }
}
@media (max-width: 767.98px) {
  section {
    padding: 60px 0;
  }
  .page-header {
    min-height: 50vh;
    padding-top: 110px;
  }
  .hero-content {
    padding: 120px 0 30px;
    text-align: center;
  }
  .hero-tag {
    margin-bottom: 18px;
  }
  .hero p.lead {
    margin-inline: auto;
  }
  .hero .d-flex.flex-wrap {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
    text-align: center;
  }
  .section-title {
    letter-spacing: 2px;
  }
  .service-card .card-body {
    padding: 32px 22px 24px;
  }
  .service-card .card-img {
    height: 210px;
  }
  .service-card .card-icon {
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
    right: 20px;
  }
  .feature-box {
    padding: 32px 20px;
  }
  .testimonial-card {
    padding: 30px 22px;
  }
  .price-card {
    padding: 32px 22px;
  }
  .price-card .price {
    font-size: 3rem;
  }
  .faq-q {
    padding: 16px 18px;
    font-size: 0.95rem;
    gap: 12px;
  }
  .faq-a {
    padding-left: 18px;
    padding-right: 18px;
  }
  .faq-item.open .faq-a {
    padding: 0 18px 18px;
  }
  .contact-card {
    padding: 26px 18px;
  }
  .about-feature {
    padding: 14px;
    gap: 14px;
  }
  .about-feature .icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    border-radius: 12px;
  }
  .cta-banner {
    padding: 70px 0;
  }
  .cta-banner p {
    font-size: 1rem;
  }
  footer {
    padding: 55px 0 22px;
    text-align: center;
  }
  footer .row {
    row-gap: 30px;
  }
  footer .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  footer .footer-logo {
    justify-content: center;
  }
  footer .socials {
    justify-content: center;
  }
  footer ul li a {
    justify-content: center;
  }
  .contact-line {
    justify-content: center;
    text-align: left;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
    margin-top: 35px;
  }
}
@media (max-width: 575.98px) {
  section {
    padding: 50px 0;
  }
  .floating-card {
    display: none;
  }
  .hero-visual {
    height: 260px;
  }
  .hero-content {
    padding: 110px 0 24px;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    margin-bottom: 18px;
  }
  .hero p.lead {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .hero-stats {
    gap: 22px;
    margin-top: 30px;
  }
  .hero-stats .stat h3 {
    font-size: 1.9rem;
  }
  .hero-stats .stat p {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img.tall {
    grid-row: auto;
  }
  .counter-section {
    padding: 60px 0;
  }
  .counter-box {
    padding: 14px 8px;
  }
  .counter-box .num {
    font-size: 2.6rem;
  }
  .counter-box p {
    font-size: 0.72rem;
    letter-spacing: 2px;
  }
  .navbar-custom .navbar-brand img {
    height: 52px;
    width: 52px;
  }
  .navbar-custom .brand-text {
    font-size: 1.05rem;
    letter-spacing: 1.5px;
  }
  .navbar-custom .brand-text span {
    font-size: 0.58rem;
    letter-spacing: 3px;
  }
  .page-header {
    min-height: 42vh;
    padding-top: 100px;
  }
  .page-header h1 {
    letter-spacing: 2px;
  }
  .breadcrumb-custom {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
  .section-title {
    letter-spacing: 1.5px;
  }
  .section-pre {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }
  .btn-neon,
  .btn-outline-neon,
  .cta-banner .btn-dark-neon {
    padding: 12px 26px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }
  .owner-card .owner-img {
    height: 340px;
  }
  .owner-card .owner-body {
    padding: 24px 20px;
  }
  .organizer-card {
    padding: 26px 18px 22px;
  }
  .organizer-card .org-avatar {
    width: 115px;
    height: 115px;
  }
  .organizer-card .org-avatar > i {
    font-size: 2.2rem;
  }
  .organizer-card h5 {
    font-size: 1.1rem;
  }
  .organizer-card .org-bio {
    font-size: 0.84rem;
  }
  .gallery-filter {
    gap: 8px;
  }
  .gallery-filter button {
    padding: 6px 14px;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
  }
  .gallery-item {
    margin-bottom: 16px;
  }
  .gallery-item .info {
    opacity: 1;
    transform: translateY(0);
    left: 16px;
    right: 16px;
    bottom: 14px;
  }
  .gallery-item .info h5 {
    font-size: 0.95rem;
  }
  .contact-form {
    padding: 24px 18px;
  }
  .contact-form .form-control,
  .contact-form .form-select {
    padding: 12px 14px;
    font-size: 0.92rem;
    margin-bottom: 14px;
  }
  .map-wrap {
    min-height: 280px;
  }
  .price-card.featured::before {
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    font-size: 0.62rem;
    letter-spacing: 1.5px;
  }
  .preloader-text {
    font-size: 1.25rem;
    letter-spacing: 6px;
  }

  .whatsapp-fab {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  .scroll-top {
    width: 40px;
    height: 40px;
    bottom: 82px;
    right: 25px;
  }
}

/* ======================================================
   MULTI-SPORT + BOOKING SECTION
====================================================== */

/* ---------- Sport pill / tagline ---------- */
.sport-tagline {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  font-family: var(--font-head);
  letter-spacing: 4px;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 18px;
}
.sport-tagline .dot-sep {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}

/* ---------- Sport group heading (services hub) ---------- */
.sport-group-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 50px 0 28px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(163, 230, 53, 0.25);
}
.sport-group-head .sg-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-green);
}
.sport-group-head h3 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.sport-group-head h3 small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 2px;
  margin-top: 4px;
  text-transform: none;
}

/* ---------- Sport selector cards (booking form) ---------- */
.sport-pick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sport-card {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 28px 18px;
  cursor: pointer;
  text-align: center;
  transition: all 0.35s ease;
  overflow: hidden;
}
.sport-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(7, 7, 7, 0.85)),
    var(--sport-bg, none) center/cover no-repeat;
  opacity: 0.18;
  transition: opacity 0.35s;
  pointer-events: none;
  z-index: 0;
}
.sport-card > * {
  position: relative;
  z-index: 1;
}
.sport-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}
.sport-card:hover::before {
  opacity: 0.35;
}
.sport-card.is-active {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(163, 230, 53, 0.12), var(--bg-card));
  box-shadow:
    0 0 0 1px var(--primary) inset,
    0 18px 40px rgba(163, 230, 53, 0.18);
}
.sport-card .ico {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(163, 230, 53, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  border: 1px solid rgba(163, 230, 53, 0.35);
}
.sport-card.is-active .ico {
  background: var(--primary);
  color: #000;
}
.sport-card h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 4px;
  letter-spacing: 0.5px;
}
.sport-card p {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sport-card .tick {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.3s;
}
.sport-card.is-active .tick {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Service chip selector ---------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  padding: 10px 18px;
  border-radius: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
}
.chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.chip.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
  font-weight: 600;
}

/* ---------- Time slot grid ---------- */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
  gap: 10px;
}
.slot {
  padding: 14px 8px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
  font-size: 0.92rem;
}
.slot small {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}
.slot:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.slot.is-active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
  color: #000;
  font-weight: 700;
}
.slot.is-active small {
  color: rgba(0, 0, 0, 0.7);
}

/* ---------- Booking shell ---------- */
.booking-shell {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-dark));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.booking-step-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.booking-step-label .num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  letter-spacing: 0;
}
.booking-step {
  margin-bottom: 32px;
}
.booking-step:last-child {
  margin-bottom: 0;
}

/* ---------- Booking summary panel ---------- */
.booking-summary {
  background: linear-gradient(
    160deg,
    rgba(163, 230, 53, 0.14),
    rgba(22, 22, 22, 0.95)
  );
  border: 1px solid rgba(163, 230, 53, 0.35);
  border-radius: 24px;
  padding: 32px 28px;
  position: sticky;
  top: 100px;
}
.booking-summary h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(163, 230, 53, 0.3);
}
.bs-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}
.bs-row:last-of-type {
  border-bottom: 0;
}
.bs-row .lbl {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  font-weight: 600;
}
.bs-row .val {
  color: #fff;
  font-weight: 600;
  text-align: right;
  flex-shrink: 0;
  max-width: 60%;
}
.bs-row .val.pending {
  color: var(--text-muted);
  font-weight: 400;
  font-style: italic;
}
.bs-total {
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(163, 230, 53, 0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bs-total .lbl {
  font-family: var(--font-head);
  letter-spacing: 3px;
  font-size: 1rem;
  color: #fff;
}
.bs-total .val {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--primary);
}
.bs-total .val small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.bs-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bs-cta .btn-neon,
.bs-cta .btn-outline-neon {
  width: 100%;
  justify-content: center;
}

/* ---------- Premium contact upgrade ---------- */
.contact-hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.contact-shell {
  background: linear-gradient(
    180deg,
    rgba(22, 22, 22, 0.95),
    rgba(7, 7, 7, 0.98)
  );
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(163, 230, 53, 0.3), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.contact-shell > * {
  position: relative;
  z-index: 1;
}
.field-group {
  position: relative;
  margin-bottom: 18px;
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  background: rgba(7, 7, 7, 0.7);
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 12px;
  padding: 18px 18px 10px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.3s;
}
.field-group select option {
  background: var(--bg-dark);
  color: #fff;
}
.field-group label {
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.25s ease;
  background: transparent;
  padding: 0 4px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus,
.field-group input:not(:placeholder-shown),
.field-group textarea:not(:placeholder-shown),
.field-group select:valid {
  outline: none;
  border-color: var(--primary);
  background: rgba(7, 7, 7, 0.95);
  box-shadow: 0 0 0 0.2rem rgba(163, 230, 53, 0.18);
}
.field-group input:focus + label,
.field-group input:not(:placeholder-shown) + label,
.field-group input[type="date"] + label,
.field-group input[type="number"] + label,
.field-group select:focus + label,
.field-group select:valid + label,
.field-group textarea:focus + label,
.field-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 14px;
  font-size: 0.7rem;
  color: var(--primary);
  background: var(--bg-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.field-group input[type="date"]::-webkit-calendar-picker-indicator,
.field-group input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.85);
  cursor: pointer;
}
.field-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23a3e635' d='M8 11.5 2.5 6h11Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 14px;
  padding-right: 42px;
}
.field-group textarea {
  min-height: 130px;
  resize: vertical;
}
.field-row {
  display: grid;
  gap: 16px;
}
.field-row.cols-2 {
  grid-template-columns: 1fr 1fr;
}
.field-row.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Quick connect side rail */
.connect-rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.connect-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.connect-tile:hover {
  border-color: var(--primary);
  transform: translateX(6px);
  background: var(--bg-card-hover);
}
.connect-tile .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: #000;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  flex-shrink: 0;
}
.connect-tile.wa .ico {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}
.connect-tile.call .ico {
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  color: #fff;
}
.connect-tile h6 {
  font-family: var(--font-body);
  font-weight: 700;
  margin: 0 0 2px;
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
}
.connect-tile span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.contact-info-strip {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  border-radius: 24px;
  padding: 30px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 30px;
  box-shadow: var(--shadow-green);
}
.contact-info-strip .it {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-info-strip .it i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #000;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-strip .it h6 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  color: #000;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contact-info-strip .it p,
.contact-info-strip .it a {
  font-size: 0.92rem;
  margin: 0;
  color: #000;
  text-decoration: none;
}

/* ---------- Sport-grouped service cards ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ---------- Mobile rules for new components ---------- */
@media (max-width: 991.98px) {
  .booking-shell {
    padding: 32px 24px;
  }
  .booking-summary {
    position: static;
    top: auto;
    margin-top: 24px;
  }
  .contact-shell {
    padding: 32px 24px;
  }
}
@media (max-width: 767.98px) {
  .sport-pick {
    grid-template-columns: 1fr 1fr;
  }
  .sport-card {
    padding: 22px 14px;
  }
  .sport-card .ico {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
  }
  .booking-shell {
    padding: 24px 18px;
    border-radius: 22px;
  }
  .booking-summary {
    padding: 24px 20px;
  }
  .bs-total .val {
    font-size: 1.6rem;
  }
  .contact-shell {
    padding: 24px 18px;
    border-radius: 22px;
  }
  .field-row.cols-2,
  .field-row.cols-3 {
    grid-template-columns: 1fr;
  }
  .contact-info-strip {
    padding: 22px 20px;
    gap: 16px;
  }
  .sport-group-head {
    gap: 14px;
    margin: 36px 0 22px;
  }
  .sport-group-head .sg-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    border-radius: 14px;
  }
  .sport-group-head h3 {
    font-size: 1.6rem;
  }
  .sport-group-head h3 small {
    font-size: 0.72rem;
  }
  .sport-tagline {
    font-size: 0.8rem;
    letter-spacing: 3px;
    gap: 4px 12px;
  }
  .chip {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
  .slot-grid {
    grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
  }
  .slot {
    padding: 12px 6px;
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .sport-pick {
    grid-template-columns: 1fr;
  }
  .sport-card {
    padding: 20px;
  }
}

/* Video showcase + FAQ side image responsive */
@media (max-width: 991.98px) {
  .video-showcase {
    aspect-ratio: 16 / 10;
  }
  .faq-side-img {
    aspect-ratio: 4 / 5;
    max-height: 460px;
    margin: 24px auto 0;
    max-width: 360px;
  }
}
@media (max-width: 575.98px) {
  .video-showcase {
    aspect-ratio: 16 / 11;
  }
  .navbar-custom .dropdown-menu {
    background: transparent;
    border: 0;
    padding: 4px 12px 8px;
    margin-top: 0;
    box-shadow: none;
  }
  .navbar-custom .dropdown-item {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 2px 12px;
    border: 1px solid rgba(163, 230, 53, 0.4);
    border-radius: 30px;
    background: rgba(163, 230, 53, 0.08);
    color: var(--primary);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-content h1{
  font-size: 50px;
}
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.reveal-l {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.9s ease;
}
.reveal-l.show {
  opacity: 1;
  transform: translateX(0);
}
.reveal-r {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.9s ease;
}
.reveal-r.show {
  opacity: 1;
  transform: translateX(0);
}
.banner-showcase.video-showcase {
  height: 100%;
  min-height: 700px;
  overflow: hidden;
  border-radius: 20px;
}

.banner-showcase.video-showcase video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
