/* ============================================================
   BCC SPORTS CLUB — MASTER STYLESHEET
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --navy: #0d1230;
  --blue: #162057;
  --cyan: #00d4ff;
  --cyan-dim: rgba(0, 212, 255, .15);
  --gold: #f5c518;
  --white: #ffffff;
  --light: #f2f5fc;
  --muted: #7a84ab;
  --dark: #080c20;
  --card-bg: rgba(255, 255, 255, .04);
  --border: rgba(255, 255, 255, .09);
  --radius: 20px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --shadow-lg: 0 32px 80px rgba(0, 0, 0, .35);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

/* ============================================================
   PAGE LOADER
============================================================ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}

#page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  letter-spacing: 8px;
  color: var(--white);
  line-height: 1;
  animation: logoPulse 1.4s ease-in-out infinite alternate;
}

.loader-logo span {
  color: var(--cyan);
}

@keyframes logoPulse {
  from {
    opacity: .6;
    transform: scale(.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.loader-bar-wrap {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, .1);
  border-radius: 4px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  border-radius: 4px;
  animation: loadProgress 1.6s var(--ease) forwards;
}

@keyframes loadProgress {
  0% {
    width: 0%;
  }

  60% {
    width: 75%;
  }

  100% {
    width: 100%;
  }
}

.loader-tagline {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  animation: fadeIn .8s .3s ease both;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 36px;
  z-index: 9001;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-bubble {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .25);
  max-width: 260px;
  animation: bubbleIn .3s var(--ease);
  position: relative;
  border: 1px solid rgba(0, 0, 0, .06);
}

.whatsapp-bubble.open {
  display: flex;
}

@keyframes bubbleIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.whatsapp-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 22px;
  width: 16px;
  height: 16px;
  background: var(--white);
  transform: rotate(45deg);
  border-right: 1px solid rgba(0, 0, 0, .06);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.wa-bubble-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.wa-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.wa-bubble-header .wa-name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.wa-bubble-header .wa-status {
  font-size: 11px;
  color: #25D366;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-bubble-header .wa-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
  display: inline-block;
}

.wa-message {
  font-size: 13px;
  color: #333;
  line-height: 1.55;
  background: #f1f0f0;
  padding: 10px 14px;
  border-radius: 12px 12px 12px 4px;
  margin-bottom: 14px;
}

.wa-start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s, transform .2s;
  border: none;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
}

.wa-start-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.whatsapp-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .5);
  cursor: pointer;
  border: none;
  transition: transform .25s var(--ease), box-shadow .25s;
  position: relative;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 40px rgba(37, 211, 102, .65);
}

/* Ping ring */
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .5);
  animation: waPing 2s ease-in-out infinite;
}

@keyframes waPing {

  0%,
  100% {
    transform: scale(1);
    opacity: .7;
  }

  50% {
    transform: scale(1.25);
    opacity: 0;
  }
}

/* Unread badge */
.wa-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: #e74c3c;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
  font-family: 'Outfit', sans-serif;
}

/* ============================================================
   SCROLL PROGRESS BAR
============================================================ */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--gold), var(--cyan));
  background-size: 200% 100%;
  width: 0%;
  z-index: 10000;
  animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar-wrap {
  position: fixed;
  top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 999;
  padding: 0 16px;
}

.navbar-inner {
  background: rgba(13, 18, 48, .7);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(0, 212, 255, .18);
  border-radius: 60px;
  padding: 10px 28px 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 980px;
  /* width: 100%; */
  transition: box-shadow .4s var(--ease), border-color .4s;
}

.navbar-inner.scrolled {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .5);
  border-color: rgba(0, 212, 255, .35);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--cyan);
  letter-spacing: 3px;
  margin-right: auto;
  flex-shrink: 0;
  transition: text-shadow .3s;
}

.nav-logo:hover {
  text-shadow: 0 0 24px rgba(0, 212, 255, .7);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 7px 18px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .65);
  transition: background .25s, color .25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 4px;
  transition: width .3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 20px;
}

.nav-btn {
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: var(--navy);
  padding: 9px 26px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 212, 255, .3);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, .5);
  color: var(--navy);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 4px;
  transition: .35s var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── NAVBAR DROPDOWN ─────────────────────────────────── */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: rgba(8, 12, 32, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 0;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 10px 24px;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #00d4ff !important;
  padding-left: 30px;
}

/* Small triangle for dropdown */
.dropdown-content::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 20px;
  border: 8px solid transparent;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 32, .98);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding-top: 80px;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
  animation: fadeIn .3s ease;
}

.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 3px;
  color: var(--white);
  transition: color .2s, letter-spacing .2s;
}

.mobile-menu a:hover {
  color: var(--cyan);
  letter-spacing: 6px;
}

.mobile-menu .m-btn {
  background: var(--cyan);
  color: var(--navy);
  padding: 14px 52px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin-top: 8px;
}

/* Mobile sub-links */
.m-nav-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.m-dropdown-toggle {
  cursor: pointer;
}

.m-sub-links {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  margin-top: 10px;
}

.m-sub-links.open {
  display: flex;
}

.m-link.m-sub {
  font-size: 28px !important;
  padding: 12px 20px !important;
  letter-spacing: 2px !important;
}

@media (max-width: 820px) {

  .nav-links,
  .nav-btn,
  .nav-actions {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }
}

/* Ensure mobile menu items fit on short screens */
@media (max-width: 820px) and (max-height: 700px) {
  .mobile-menu {
    gap: 18px;
    padding-top: 70px;
  }

  .mobile-menu a {
    font-size: 32px !important;
  }
}

@media (max-width: 480px) {
  .mobile-menu a {
    font-size: 36px;
  }

  .mobile-menu {
    gap: 22px;
  }
}

/* ============================================================
   GLOBAL FLOATING UI (Synchronized)
============================================================ */

/* ─── FLOATING LOGO ─── */
.floating-logo {
  position: fixed;
  top: 14px;
  left: 14px;
  width: 72px;
  height: 72px;
  z-index: 10000;
  border-radius: 18px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .4), 0 0 0 1px rgba(255, 255, 255, .1);
  background: #080c20;
  text-decoration: none;
}

.floating-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floating-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0, 212, 255, .4), 0 0 0 2px rgba(0, 212, 255, .45);
}

@media (max-width: 820px) {
  .floating-logo {
    width: 56px;
    height: 56px;
    top: 10px;
    left: 14px;
  }
}

/* ─── LEFT FLOATING TOOLBAR (RTB) ─── */
.rtb-wrap {
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 14px 10px;
  background: rgba(13, 20, 38, 0.88);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.rtb-item {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
  flex-shrink: 0;
  z-index: 1;
}

.rtb-item:hover {
  transform: scale(1.12) translateX(8px);
  z-index: 10;
}

.rtb-label {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: rgba(8, 12, 32, .92);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 10px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  border: 1px solid rgba(255, 255, 255, .1);
}

.rtb-item:hover .rtb-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.rtb-icon {
  font-size: 22px;
  color: #fff;
  z-index: 2;
}

.rtb-divider {
  width: 32px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.08);
  margin: 4px 0;
}

.rtb-members {
  background: linear-gradient(135deg, #00d4ff, #0099bb);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.5);
}

.rtb-stats {
  background: linear-gradient(135deg, #2ecc71, #1a9e55);
  box-shadow: 0 10px 25px rgba(46, 204, 113, 0.5);
}

.rtb-book {
  background: linear-gradient(135deg, #f5c518, #c9a200);
  box-shadow: 0 10px 25px rgba(245, 197, 24, 0.5);
}

.rtb-book .rtb-icon {
  color: #000;
}

.rtb-videos {
  background: linear-gradient(135deg, #ff4444, #cc0000);
  box-shadow: 0 10px 25px rgba(255, 68, 68, 0.5);
}

.rtb-leaders {
  background: linear-gradient(135deg, #a855f7, #6b21a8);
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.5);
}

.rtb-fixtures {
  background: linear-gradient(135deg, #fb923c, #c2440a);
  box-shadow: 0 10px 25px rgba(251, 146, 60, 0.5);
}

@media(max-width:540px) {
  .rtb-wrap {
    display: none;
  }
}

/* ─── RIGHT SOCIAL CLUSTER (RIGHT) ─── */
.social-cluster {
  position: fixed;
  bottom: 176px;
  right: 24px;
  z-index: 9001;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.soc-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #1877f2);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(131, 58, 180, .55);
  transition: transform .28s var(--ease), box-shadow .28s;
  position: relative;
}

.soc-toggle.open {
  transform: rotate(45deg) scale(1.05);
}

.soc-fan {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
  pointer-events: none;
}

.soc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px) scale(.8);
  transition: opacity .3s, transform .35s var(--ease);
}

.soc-fan.open .soc-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.soc-item-label {
  background: rgba(8, 12, 32, .92);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, .12);
  pointer-events: none;
}

.soc-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s;
  flex-shrink: 0;
}

.soc-circle:hover {
  transform: scale(1.15);
}

.sc-fb {
  background: #1877f2;
  box-shadow: 0 6px 20px rgba(24, 119, 242, .45);
}

.sc-ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #515bd4);
  box-shadow: 0 6px 20px rgba(221, 42, 123, .45);
}

.sc-yt {
  background: #ff0000;
  box-shadow: 0 6px 20px rgba(255, 0, 0, .45);
}

.sc-wa {
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
}

.sc-tw {
  background: #1da1f2;
}

.sc-tk {
  background: #010101;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.soc-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 20px;
  height: 20px;
  background: #e63946;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
  font-family: 'Outfit', sans-serif;
}

/* ── Standalone WhatsApp Floating Button ── */
.wa-standalone-float {
  position: fixed;
  bottom: 108px;
  right: 24px;
  z-index: 9002;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s;
  border: none;
  cursor: pointer;
}

.wa-standalone-float:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 40px rgba(37, 211, 102, .7);
}

.wa-standalone-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .4);
  animation: waPing 2s ease-in-out infinite;
}

.wa-standalone-label {
  position: absolute;
  right: 68px;
  background: rgba(8, 12, 32, .92);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, .12);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.wa-standalone-float:hover .wa-standalone-label {
  opacity: 1;
}

/* ── Standalone Video Floating Button ── */
.vid-standalone-float {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 9002;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e63946, #c0392b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 28px rgba(230, 57, 70, .55);
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s;
  border: none;
  cursor: pointer;
}

.vid-standalone-float:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 40px rgba(230, 57, 70, .7);
}

.vid-standalone-label {
  position: absolute;
  right: 68px;
  background: rgba(8, 12, 32, .92);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, .12);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.vid-standalone-float:hover .vid-standalone-label {
  opacity: 1;
}

@media(max-width:600px) {
  .social-cluster {
    bottom: 160px;
    right: 16px;
  }

  .wa-standalone-float {
    bottom: 90px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .vid-standalone-float {
    display: none;
  }
}

/* ─── NAV BUTTONS ─── */
.nav-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .3s var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.nav-btn-blue {
  background: linear-gradient(135deg, #00d4ff, #0099bb) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3) !important;
}

.nav-btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 212, 255, 0.5) !important;
}

.rtb-mob-toggle {
  display: none;
}

/* ============================================================
   SECTION COMMONS
============================================================ */
.section {
  padding: 110px 0;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--cyan);
  border-radius: 4px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}

.section-title.dark-text {
  color: var(--navy);
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
  margin-top: 14px;
}

.section-desc.center {
  margin: 14px auto 0;
  text-align: center;
}

.section-desc.dark-text {
  color: #5a6180;
}

.text-center {
  text-align: center;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.left {
  transform: translateX(-44px);
}

.reveal.right {
  transform: translateX(44px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

/* ---------- Shared buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: var(--navy);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .3px;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 8px 30px rgba(0, 212, 255, .35);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0, 212, 255, .5);
  color: var(--navy);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255, 255, 255, .25);
  color: var(--white);
  padding: 13px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: border-color .25s, background .25s, transform .25s;
}

.btn-ghost:hover {
  border-color: var(--cyan);
  background: rgba(0, 212, 255, .1);
  transform: translateY(-4px);
  color: var(--white);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* ── Full-screen background video ── */
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

/* ── Cinematic overlay on top of video ── */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 85% at 50% 50%, transparent 30%, rgba(4, 8, 20, .55) 100%),
    linear-gradient(to bottom, rgba(4, 8, 20, .55) 0%, rgba(4, 8, 20, .08) 40%, rgba(4, 8, 20, .08) 60%, rgba(4, 8, 20, .75) 100%);
}

/* ── Fallback layered bg (when no video) ── */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 90%, rgba(0, 212, 255, .15) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(245, 197, 24, .08) 0%, transparent 60%),
    linear-gradient(160deg, #060a1a 0%, #0d1230 60%, #071a2a 100%);
}

/* Animated mesh grid */
.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, .06) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: meshScroll 18s linear infinite;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

@keyframes meshScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(72px);
  }
}

/* Glowing particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--cyan);
  animation: float linear infinite;
  opacity: 0;
}

@keyframes float {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: .6;
  }

  90% {
    opacity: .2;
  }

  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: orbPulse 8s ease-in-out infinite alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 212, 255, .1);
  top: -150px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(245, 197, 24, .07);
  bottom: -100px;
  right: -80px;
  animation-delay: -4s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(22, 32, 87, .5);
  top: 30%;
  left: 55%;
  animation-delay: -2s;
}

@keyframes orbPulse {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: .7;
  }

  100% {
    transform: scale(1.15) translate(25px, 35px);
    opacity: 1;
  }
}

/* ── All hero children sit above video/overlay ── */
.hero .hero-bg,
.hero .hero-mesh {
  z-index: 0;
}

.hero .particles,
.hero .orb {
  position: absolute;
  z-index: 2;
}

/* ── Hero content — centred, single source of truth ── */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 860px;
  padding: 0 32px;
  /* Centre in the flex parent (.hero) */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 212, 255, .1);
  border: 1px solid rgba(0, 212, 255, .3);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 7px 20px;
  border-radius: 40px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp .9s var(--ease) both;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: ping 1.5s ease-in-out infinite;
}

@keyframes ping {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: .4;
  }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 13vw, 160px);
  line-height: .9;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  animation: fadeUp .9s var(--ease) .15s both;
}

.hero h1 .line-1 {
  display: block;
  color: var(--white);
}

.hero h1 .line-2 {
  display: block;
  -webkit-text-stroke: 2px var(--cyan);
  color: transparent;
  position: relative;
}

.hero h1 .line-3 {
  display: block;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin: 28px auto 0;
  line-height: 1.7;
  max-width: 520px;
  text-align: center;
  animation: fadeUp .9s var(--ease) .3s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: fadeUp .9s var(--ease) .45s both;
}

/* ── Scroll hint ── */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 44px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1s ease both;
}

/* ── Mobile hero ── */
@media (max-width: 640px) {
  .hero-content {
    padding: 0 20px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 88px);
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-ghost {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* Stats */
.hero-stats {
  /* position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
  z-index: 2;
  animation: fadeUp .9s var(--ease) .6s both;
  background: rgba(13,18,48,.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden; */
  margin: 40px auto;
  /* center horizontally with margin auto, vertical spacing */
  position: relative;
  /* default */
  max-width: 800px;
  /* optional, to limit width */
  display: flex;
  gap: 0;
  z-index: 2;
  animation: fadeUp .9s var(--ease) .6s both;
  background: rgba(13, 18, 48, .6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  justify-content: center;
  /* center items horizontally */
}

.stat-item {
  padding: 18px 36px;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--border);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: 1px;
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .hero-stats {
    flex-direction: column;
    /* stack stats vertically */
    max-width: 90vw;
    /* use most of the viewport width */
    padding: 20px 10px;
    /* reduce padding */
  }

  .stat-item {
    padding: 12px 0;
    /* smaller vertical padding */
  }

  .stat-item:not(:last-child)::after {
    display: none;
    /* remove divider lines between stacked items */
  }

  .stat-num {
    font-size: 32px;
    /* smaller font size for numbers */
  }

  .stat-label {
    font-size: 10px;
    /* smaller font size for labels */
    letter-spacing: 1.5px;
  }
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 44px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1s ease both;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--cyan);
  border-radius: 4px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {

  0%,
  100% {
    top: 6px;
    opacity: 1;
  }

  80% {
    top: 20px;
    opacity: 0;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: transform .5s var(--ease);
}

.about-img-main:hover {
  transform: scale(1.02);
}

.about-img-secondary {
  position: absolute;
  width: 44%;
  bottom: -30px;
  right: -24px;
  border-radius: 16px;
  border: 4px solid var(--light);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.about-img-secondary:hover {
  transform: scale(1.04);
}

.about-year-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: var(--navy);
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(0, 212, 255, .4);
}

.about-year-badge .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  display: block;
}

.about-year-badge .label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.about-content {
  padding: 8px 0;
}

.about-content .section-title {
  color: var(--navy);
}

.about-content .section-desc {
  color: #5a6180;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 36px 0;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: transform .25s, box-shadow .25s, background .25s;
  border: 1px solid transparent;
}

.feature-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
  border-color: rgba(0, 212, 255, .3);
  background: linear-gradient(135deg, #f0fbff, #fff);
}

.feature-chip .chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 16px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-img-secondary {
    width: 38%;
    right: 0;
    bottom: -20px;
  }

  .about-year-badge {
    left: 10px;
  }
}

/* ============================================================
   TEAM SECTION
============================================================ */
.team {
  background: var(--dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative;
}

.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 212, 255, .06) 100%);
  opacity: 0;
  transition: opacity .4s;
}

.team-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 36px 80px rgba(0, 0, 0, .4), 0 0 0 1px rgba(0, 212, 255, .3);
  border-color: rgba(0, 212, 255, .4);
}

.team-card:hover::before {
  opacity: 1;
}

.team-card-header {
  background: linear-gradient(145deg, var(--blue), #0a1535);
  padding: 44px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-card-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 50px;
  background: var(--card-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.team-card-header .number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: rgba(255, 255, 255, .07);
  line-height: 1;
}

.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--cyan);
  object-fit: cover;
  box-shadow: 0 0 0 6px rgba(0, 212, 255, .15), 0 10px 30px rgba(0, 0, 0, .4);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: transform .3s var(--ease), box-shadow .3s;
}

.team-card:hover .team-avatar {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(0, 212, 255, .25), 0 16px 40px rgba(0, 0, 0, .5);
}

.team-card-body {
  padding: 24px 24px 28px;
  text-align: center;
}

.team-card-body h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.team-role {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-stats-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.t-stat .val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--cyan);
  line-height: 1;
}

.t-stat .key {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background .2s, color .2s, transform .2s;
  border: 1px solid var(--border);
}

.team-social a:hover {
  background: var(--cyan);
  color: var(--navy);
  transform: translateY(-4px);
  border-color: var(--cyan);
}

/* ============================================================
   GALLERY SECTION (homepage preview)
============================================================ */
.gallery-preview {
  background: var(--navy);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
  margin-top: 60px;
}

.g-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.g-item.tall {
  grid-row: span 2;
}

.g-item.wide {
  grid-column: span 2;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.g-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .4s;
}

.g-item:hover img {
  transform: scale(1.1);
}

.g-item:hover .g-item-overlay {
  opacity: 1;
}

.g-item-overlay .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 212, 255, .2);
  border: 1px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 10px;
}

.g-item-overlay span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
}

@media (max-width: 900px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .g-item.wide {
    grid-column: span 1;
  }
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 3%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 500px;
  color: rgba(0, 212, 255, .03);
  line-height: 1;
  pointer-events: none;
}

.swiper {
  margin-top: 60px;
}

.swiper-slide {
  height: auto;
}

.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  height: 100%;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  color: rgba(0, 212, 255, .08);
  line-height: 1;
}

.testi-card:hover {
  border-color: rgba(0, 212, 255, .4);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.testi-stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 18px;
  letter-spacing: 3px;
}

.testi-card p {
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  object-fit: cover;
}

.testi-author h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}

.testi-author span {
  font-size: 12px;
  color: var(--cyan);
  font-weight: 600;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--cyan);
  background: rgba(0, 212, 255, .1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, .3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact {
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 52px 48px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-top: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #dde4f5;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  color: var(--navy);
  background: var(--light);
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, .12);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.submit-btn {
  margin-top: 28px;
  width: 100%;
  padding: 17px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 212, 255, .3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success .check-anim {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  color: var(--navy);
  animation: popIn .5s var(--ease) both;
}

@keyframes popIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--navy);
}

.form-success p {
  color: #666;
  margin-top: 10px;
}

.contact-info-side {
  padding: 8px 0;
}

.contact-info-side .section-title {
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-info-side .section-desc {
  color: #666;
}

.info-cards {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
  border: 1px solid transparent;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.info-card:hover {
  transform: translateX(8px);
  border-color: rgba(0, 212, 255, .25);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 18px;
  flex-shrink: 0;
}

.info-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.info-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.social-strip {
  margin-top: 36px;
}

.social-strip h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background .2s, transform .25s;
}

.social-icons a:hover {
  background: var(--cyan);
  color: var(--navy);
  transform: translateY(-5px);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-card {
    padding: 36px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #05070f;
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: 'BCC';
  position: absolute;
  top: -20px;
  right: -30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 280px;
  color: rgba(255, 255, 255, .015);
  letter-spacing: 10px;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--cyan);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 290px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 4px;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: var(--muted);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s, gap .2s;
}

.footer-links-list a::before {
  content: '›';
  font-size: 16px;
  color: var(--cyan);
  opacity: 0;
  transition: opacity .2s;
}

.footer-links-list a:hover {
  color: var(--cyan);
  gap: 12px;
}

.footer-links-list a:hover::before {
  opacity: 1;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--muted);
}

.footer-contact-list i {
  color: var(--gold);
  width: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background .2s, color .2s, transform .2s, border-color .2s;
}

.footer-social a:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--cyan);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BACK TO TOP
============================================================ */
#backToTop {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: var(--navy);
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0, 212, 255, .4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  z-index: 9000;
}

#backToTop.show {
  opacity: 1;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--gold);
}

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .95);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  animation: fadeIn .3s ease;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .6);
  animation: zoomIn .3s var(--ease);
}

@keyframes zoomIn {
  from {
    transform: scale(.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: fixed;
  top: 28px;
  right: 36px;
  font-size: 40px;
  color: var(--white);
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s, transform .2s;
  z-index: 100000;
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* ============================================================
   MEDIA PAGE SPECIFIC
============================================================ */
.media-hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 212, 255, .18) 0%, transparent 70%),
    linear-gradient(160deg, #060a1a 0%, #0d1230 100%);
  padding: 180px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.media-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, .05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 48px 0;
}

.filter-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  transition: all .25s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
}

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.photo-cell {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.photo-cell.tall {
  aspect-ratio: 3/4;
}

.photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.photo-cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .35s;
}

.photo-cell:hover img {
  transform: scale(1.08);
}

.photo-cell:hover .photo-cell-overlay {
  opacity: 1;
}

.photo-cell-overlay .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.7);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 212, 255, .2);
  border: 2px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  transition: transform .35s var(--ease);
}

.photo-cell:hover .photo-cell-overlay .zoom-icon {
  transform: translate(-50%, -50%) scale(1);
}

.photo-cell-overlay .caption {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}

.photo-cell-overlay .date {
  font-size: 12px;
  color: var(--cyan);
  margin-top: 3px;
}

@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}

.video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, .4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.video-card:hover .video-thumb img {
  transform: scale(1.06);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 212, 255, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 22px;
  transition: transform .3s var(--ease), background .3s;
  backdrop-filter: blur(4px);
  padding-left: 4px;
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--cyan);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, .7);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.video-info {
  padding: 20px;
}

.video-info h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.35;
}

.video-info .meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
}

.video-info .meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.video-info .meta i {
  color: var(--cyan);
}

.video-tag {
  display: inline-block;
  background: rgba(0, 212, 255, .1);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Video modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .96);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  animation: fadeIn .3s ease;
}

.video-modal.open {
  display: flex;
}

.video-modal-inner {
  width: 90vw;
  max-width: 960px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  animation: zoomIn .35s var(--ease);
}

.video-modal-inner iframe,
.video-modal-inner video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

.vm-close {
  position: fixed;
  top: 28px;
  right: 36px;
  font-size: 40px;
  color: var(--white);
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s, transform .2s;
  z-index: 100000;
  line-height: 1;
}

.vm-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 48px;
}

.page-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  transition: all .25s;
}

.page-btn:hover,
.page-btn.active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
}

/* ============================================================
   MOBILE DOCK + RESPONSIVE FIXES
   ─ Fixes: Navbar excess space, RTB sidebar on mobile,
     Social cluster on mobile, new Mobile Floating Dock
============================================================ */

/* ── Navbar: precise mobile alignment ────────────────────── */
@media (max-width: 820px) {

  /* Floating logo shrinks on small screens */
  .floating-logo {
    width: 56px !important;
    height: 56px !important;
    top: 10px !important;
    left: 14px !important;
  }

  /* Navbar pill: right-align content, only left-pad enough to clear logo */
  .navbar-wrap {
    justify-content: flex-end;
    padding-right: 16px;
    padding-left: 0;
  }

  .navbar-inner {
    /* Clear the 56px logo + 14px left + 8px gap = ~78px */
    padding-left: 80px;
    padding-right: 12px;
    max-width: 100%;
  }
}

/* ── Hide desktop RTB sidebar on tablet/mobile ────────────── */
@media (max-width: 900px) {
  .rtb-wrap {
    display: none !important;
  }
}

/* ── Hide desktop social cluster + email float on mobile ──── */
@media (max-width: 700px) {
  .social-cluster {
    display: none !important;
  }

  .email-float {
    display: none !important;
  }

  /* Push WhatsApp button up above the mob-dock pill */
  .whatsapp-float {
    bottom: 88px !important;
    right: 16px !important;
  }

  .whatsapp-btn {
    width: 50px !important;
    height: 50px !important;
    font-size: 22px !important;
  }

  /* Prevent welcome popup overlapping the mob-dock */
  #welcomePopup {
    bottom: 88px !important;
  }
}

/* ============================================================
   MOBILE FLOATING DOCK
   Single pill toggle → 3-col icon grid + social row
   Visible only on ≤900px
============================================================ */
.mob-dock {
  display: none;
}

@media (max-width: 900px) {

  /* ── Dock wrapper ── */
  .mob-dock {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    /* Make sure it doesn't exceed viewport */
    max-width: calc(100vw - 32px);
  }

  /* ── Pill toggle button ── */
  .mob-dock-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 14, 28, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    padding: 11px 22px 11px 14px;
    cursor: pointer;
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.65),
      0 0 0 1px rgba(0, 212, 255, 0.08);
    transition:
      transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
      box-shadow 0.3s,
      border-color 0.3s;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    white-space: nowrap;
    /* Reset browser button defaults */
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }

  .mob-dock-toggle:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.28);
  }

  .mob-dock-toggle.open {
    border-color: rgba(230, 57, 70, 0.5);
    box-shadow: 0 8px 32px rgba(230, 57, 70, 0.3);
  }

  /* Rotating icon circle inside pill */
  .mdt-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0099bb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #080c20;
    flex-shrink: 0;
    transition:
      transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
      background 0.3s;
  }

  .mob-dock-toggle.open .mdt-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
  }

  .mdt-label {
    color: rgba(255, 255, 255, 0.82);
  }

  /* ── Expanded panel ── */
  .mob-dock-panel {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    /* Start state: shifted down + scaled down + invisible */
    transform: translateX(-50%) translateY(14px) scale(0.94);
    background: rgba(6, 14, 28, 0.97);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 16px 14px 14px;
    box-shadow:
      0 28px 80px rgba(0, 0, 0, 0.8),
      0 0 0 1px rgba(0, 212, 255, 0.06);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-width: 292px;
    /* Don't exceed viewport */
    max-width: calc(100vw - 36px);
  }

  .mob-dock-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
  }

  /* Panel section label */
  .mob-panel-title {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    padding: 0 4px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 12px;
  }

  /* 3-column icon grid */
  .mob-dock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  /* Individual icon tile */
  .mob-dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 11px 4px 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none;
    cursor: pointer;
    transition:
      transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
      background 0.2s,
      border-color 0.2s;
    -webkit-tap-highlight-color: transparent;
  }

  .mob-dock-item:hover,
  .mob-dock-item:active {
    background: rgba(255, 255, 255, 0.09);
    transform: scale(1.06);
  }

  /* Coloured circle inside tile */
  .mdi-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #fff;
    transition: box-shadow 0.25s;
  }

  .mob-dock-item:hover .mdi-circle {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }

  /* Tile label */
  .mdi-label {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.2;
  }

  /* Horizontal rule between grid and social row */
  .mob-panel-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 12px 0 10px;
  }

  /* Social icons row */
  .mob-social-row {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .mob-soc-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
    -webkit-tap-highlight-color: transparent;
  }

  .mob-soc-btn:hover {
    transform: scale(1.14);
  }

  .mob-soc-btn:active {
    transform: scale(0.88);
  }

  /* ── Staggered entrance animation for grid items + social ── */
  .mob-dock-panel.open .mob-dock-item,
  .mob-dock-panel.open .mob-soc-btn {
    animation: mobItemIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  }

  .mob-dock-panel.open .mob-dock-item:nth-child(1) {
    animation-delay: 0.04s;
  }

  .mob-dock-panel.open .mob-dock-item:nth-child(2) {
    animation-delay: 0.08s;
  }

  .mob-dock-panel.open .mob-dock-item:nth-child(3) {
    animation-delay: 0.12s;
  }

  .mob-dock-panel.open .mob-dock-item:nth-child(4) {
    animation-delay: 0.16s;
  }

  .mob-dock-panel.open .mob-dock-item:nth-child(5) {
    animation-delay: 0.20s;
  }

  .mob-dock-panel.open .mob-dock-item:nth-child(6) {
    animation-delay: 0.24s;
  }

  .mob-dock-panel.open .mob-soc-btn:nth-child(1) {
    animation-delay: 0.28s;
  }

  .mob-dock-panel.open .mob-soc-btn:nth-child(2) {
    animation-delay: 0.32s;
  }

  .mob-dock-panel.open .mob-soc-btn:nth-child(3) {
    animation-delay: 0.36s;
  }

  .mob-dock-panel.open .mob-soc-btn:nth-child(4) {
    animation-delay: 0.40s;
  }

  .mob-dock-panel.open .mob-soc-btn:nth-child(5) {
    animation-delay: 0.44s;
  }

  @keyframes mobItemIn {
    from {
      opacity: 0;
      transform: scale(0.55) translateY(10px);
    }

    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
}

/* Very small screens: panel fills the width */
@media (max-width: 540px) {
  .mob-dock-panel {
    min-width: calc(100vw - 36px);
  }
}

/* ============================================================
   GLOBAL SITE ENHANCEMENTS — 2026 Refresh
============================================================ */

/* ── Glow text utility ── */
.glow-text {
  text-shadow: 0 0 30px rgba(0, 212, 255, .35), 0 0 60px rgba(0, 212, 255, .15);
}

/* ── Gradient text utility ── */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animated gradient border glow ── */
.glow-border {
  position: relative;
}

.glow-border::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 212, 255, .4), rgba(245, 197, 24, .3), rgba(168, 85, 247, .3));
  background-size: 300% 300%;
  animation: borderShift 4s ease infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity .4s;
}

.glow-border:hover::after {
  opacity: 1;
}

@keyframes borderShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ── Better scroll reveal with scale ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px) scale(.98);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Staggered children animation ── */
.stagger-children>* {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: .05s;
  opacity: 1;
  transform: none;
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: .12s;
  opacity: 1;
  transform: none;
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: .19s;
  opacity: 1;
  transform: none;
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: .26s;
  opacity: 1;
  transform: none;
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: .33s;
  opacity: 1;
  transform: none;
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: .40s;
  opacity: 1;
  transform: none;
}

.stagger-children.visible>*:nth-child(7) {
  transition-delay: .47s;
  opacity: 1;
  transform: none;
}

.stagger-children.visible>*:nth-child(8) {
  transition-delay: .54s;
  opacity: 1;
  transform: none;
}

/* ── Floating animation ── */
@keyframes gentleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.float-anim {
  animation: gentleFloat 3s ease-in-out infinite;
}

/* ── Pulse glow ring ── */
@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, .4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(0, 212, 255, 0);
  }
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* ── Enhanced Back-to-Top Button ── */
#backToTop {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 9000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 28px rgba(0, 212, 255, .4);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s, opacity .3s;
  opacity: 0;
  pointer-events: none;
}

#backToTop.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#backToTop:hover {
  box-shadow: 0 14px 40px rgba(0, 212, 255, .6);
  transform: translateX(-50%) translateY(-4px);
}

/* ── Enhanced footer styles ── */
.footer {
  background: linear-gradient(180deg, var(--dark) 0%, #050815 100%);
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, .3), rgba(245, 197, 24, .2), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
}

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media(max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 18px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
  transition: transform .3s, box-shadow .3s;
}

.footer-logo:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(0, 212, 255, .35);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-col h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 14px;
  color: var(--muted);
  transition: color .2s, padding-left .2s;
}

.footer-links-list a:hover {
  color: var(--cyan);
  padding-left: 6px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.footer-contact-list li a {
  color: var(--muted);
  transition: color .2s;
}

.footer-contact-list li a:hover {
  color: var(--cyan);
}

.footer-contact-list li i {
  font-size: 14px;
  width: 18px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--muted);
  transition: all .25s;
}

.footer-social a:hover {
  background: rgba(0, 212, 255, .15);
  border-color: rgba(0, 212, 255, .4);
  color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, .25);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
}

/* ── Smooth counter animation ── */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-num.counted {
  animation: countUp .5s var(--ease) both;
}

/* ── Section separator line ── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, .2), transparent);
  margin: 0;
}

/* ── Enhanced tooltip styles ── */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(8, 12, 32, .95);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  border: 1px solid rgba(0, 212, 255, .15);
  z-index: 100;
}

[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Skeleton loading placeholder ── */
.skeleton {
  background: linear-gradient(90deg, rgba(255, 255, 255, .04) 25%, rgba(255, 255, 255, .08) 50%, rgba(255, 255, 255, .04) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeletonShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}