/* =====================================================
   CTC — Creative Time Center
   Custom CSS · Fintech / Crypto Dark Theme
   Mobile-First · Bootstrap 5.3 Enhanced
   ===================================================== */

/* --- VARIABLES --- */
:root {
  --bg-deep: #030712;
  --bg-card: #0d1424;
  --bg-card2: #111827;
  --border: rgba(0, 210, 255, 0.15);
  --border2: rgba(255, 255, 255, 0.07);
  --cyan: #00d2ff;
  --cyan-dim: rgba(0, 210, 255, 0.1);
  --gold: #f5c842;
  --gold-dim: rgba(245, 200, 66, 0.1);
  --green: #00e676;
  --green-dim: rgba(0, 230, 118, 0.1);
  --purple: #7c3aed;
  --text: #f0f6ff;
  --muted: #94a3b8;
  --dim: #475569;
  --font-head: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --glow: 0 0 40px rgba(0, 210, 255, 0.1);
  --tr: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- BASE --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.72;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  line-height: 1.2;
}
a {
  color: var(--cyan);
  text-decoration: none;
  transition: var(--tr);
}
a:hover {
  color: #fff;
}
img {
  max-width: 100%;
}
ul {
  padding: 0;
  list-style: none;
}

/* noise overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* --- SECTION HELPERS --- */
.section {
  padding: 80px 0;
}
.section-sm {
  padding: 50px 0;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 4px 16px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
}
.divider {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  border-radius: 2px;
  margin-bottom: 22px;
}

/* --- BUTTONS --- */
.btn-ctc-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: #000 !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  box-shadow: 0 0 28px rgba(0, 210, 255, 0.22);
}
.btn-ctc-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0, 210, 255, 0.38);
  color: #000 !important;
}

.btn-ctc-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--text) !important;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 26px;
  border-radius: 50px;
  border: 1.5px solid var(--border2);
  cursor: pointer;
  transition: var(--tr);
}
.btn-ctc-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan) !important;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 11px 20px;
  color: var(--text) !important;
  transition: var(--tr);
}
.btn-store:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--cyan);
}
.btn-store i {
  font-size: 24px;
}
.btn-store .s-txt small {
  font-size: 10px;
  color: var(--muted);
  display: block;
  line-height: 1.2;
}
.btn-store .s-txt span {
  font-size: 15px;
  font-weight: 600;
}

/* --- TOPBAR --- */
#topbar {
  background: rgba(3, 7, 18, 0.97);
  border-bottom: 1px solid var(--border2);
  padding: 8px 0;
  font-size: 13px;
}
#topbar a {
  color: var(--muted);
}
#topbar a:hover {
  color: var(--cyan);
}
.topbar-socials a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border2);
  border-radius: 50%;
  margin-left: 6px;
  font-size: 12px;
  color: var(--muted);
  transition: var(--tr);
}
.topbar-socials a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* --- NAVBAR --- */
#mainNav {
  background: rgba(3, 7, 18, 0.96);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition:
    padding var(--tr),
    box-shadow var(--tr);
}
#mainNav.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55);
}
.navbar-brand img {
  height: 40px;
}
.nav-link {
  color: var(--muted) !important;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 7px 14px !important;
  border-radius: 8px;
  transition: var(--tr);
}
.nav-link:hover,
.nav-link.active {
  color: var(--cyan) !important;
  background: var(--cyan-dim);
}
.nav-cta {
  background: linear-gradient(135deg, var(--cyan), #0099cc) !important;
  color: #000 !important;
  border-radius: 30px !important;
  padding: 8px 20px !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(0, 210, 255, 0.3);
}
.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,210,255,0.85)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.dropdown-menu {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  margin-top: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
.dropdown-item {
  color: var(--muted);
  font-size: 13.5px;
  border-radius: 8px;
  padding: 8px 14px;
  transition: var(--tr);
}
.dropdown-item:hover {
  background: var(--cyan-dim);
  color: var(--cyan);
}

/* --- TRUST TICKER --- */
#trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 18px 0;
  overflow: hidden;
}
.trust-ticker {
  display: flex;
  gap: 48px;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13.5px;
}
.trust-item i {
  color: var(--cyan);
  font-size: 15px;
}
.trust-item strong {
  color: var(--text);
}

/* --- HERO --- */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 110px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #010810 0%, #050d1f 50%, #08041a 100%);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(0, 210, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 210, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  animation: glowpulse 9s ease-in-out infinite;
}
.hero-glow-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(0, 210, 255, 0.14) 0%,
    transparent 70%
  );
  top: -120px;
  right: -100px;
}
.hero-glow-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.11) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: 8%;
  animation-delay: 3s;
  animation-direction: reverse;
}
@keyframes glowpulse {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 1;
  }
  50% {
    transform: scale(1.12) translate(16px, -16px);
    opacity: 0.7;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--cyan);
  display: block;
}
.hero-stat .lbl {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero phone card */
.hero-phone-wrap {
  display: inline-block;
  position: relative;
}
.phone-card {
  background: linear-gradient(135deg, var(--bg-card), #0d1f38);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  width: 275px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(0, 210, 255, 0.07);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.phone-logo-box {
  width: 34px;
  height: 34px;
  background: var(--cyan-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-balance {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  text-align: center;
}
.phone-balance-sub {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 18px;
}
.phone-btns {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}
.phone-btn {
  flex: 1;
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 9px 4px;
  text-align: center;
  font-size: 10.5px;
  color: var(--cyan);
  font-weight: 600;
}
.phone-act-lbl {
  font-size: 10.5px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  margin-bottom: 8px;
}
.phone-act-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border2);
  font-size: 12px;
}
.phone-act-row:last-child {
  border-bottom: none;
}
.earn-amt {
  color: var(--green);
  font-weight: 700;
}

.float-badge {
  position: absolute;
  background: rgba(13, 20, 36, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
.fb-1 {
  top: 18px;
  left: -85px;
  animation: float 7s ease-in-out infinite;
}
.fb-2 {
  bottom: 38px;
  right: -100px;
  animation: float 5s ease-in-out infinite 1.2s;
}
.fb-icon {
  font-size: 18px;
  margin-bottom: 2px;
}
.fb-num {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--cyan);
  display: block;
  font-size: 13px;
}
.fb-txt {
  color: var(--muted);
  font-size: 10px;
}

/* --- HOW IT WORKS --- */
#how-it-works {
  background: var(--bg-card);
}
.step-card {
  background: var(--bg-deep);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
  height: 100%;
}
.step-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--border);
  position: absolute;
  top: -6px;
  right: 14px;
  line-height: 1;
}
.step-icon {
  width: 50px;
  height: 50px;
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--cyan);
  margin-bottom: 16px;
}
.step-card h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 9px;
}
.step-card p {
  color: var(--muted);
  font-size: 13.5px;
}

/* --- ABOUT --- */
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.about-img-badge {
  position: absolute;
  bottom: 50px;
  left: -60px;
  background: rgba(3, 7, 18, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
}
.about-img-badge .num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cyan);
}
.about-img-badge .txt {
  font-size: 11px;
  color: var(--muted);
}
.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 11px;
  font-size: 14px;
  color: var(--muted);
}
.check-list li i {
  color: var(--cyan);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}
.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--muted);
  margin: 3px;
}
.info-pill i {
  color: var(--cyan);
}

/* --- EARN METHODS --- */
#earn-methods {
  background: var(--bg-deep);
}
.earn-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 26px 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
}
.earn-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: var(--tr);
}
.earn-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.earn-card:hover::before {
  opacity: 1;
}
.earn-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 16px;
}
.earn-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.earn-card p {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 0;
}
.earn-badge {
  display: inline-block;
  background: var(--green-dim);
  color: var(--green);
  border-radius: 30px;
  padding: 2px 12px;
  font-size: 11.5px;
  font-weight: 600;
  margin-top: 12px;
}

/* --- STATS --- */
#stats {
  background: linear-gradient(135deg, #050d1f, #09051d);
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 210, 255, 0.06) 0%,
    transparent 70%
  );
}
.stat-box {
  text-align: center;
  padding: 18px;
}
.stat-box .num {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-box .lbl {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 5px;
}

/* --- REWARD SYSTEM --- */
#reward-system {
  background: var(--bg-card);
}
.rank-table-wrap {
  background: var(--bg-deep);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
}
.rank-table-wrap table {
  width: 100%;
  font-size: 13.5px;
}
.rank-table-wrap thead tr {
  background: var(--cyan-dim);
}
.rank-table-wrap thead th {
  padding: 13px 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  border: none;
}
.rank-table-wrap tbody tr {
  border-bottom: 1px solid var(--border2);
  transition: var(--tr);
}
.rank-table-wrap tbody tr:last-child {
  border-bottom: none;
}
.rank-table-wrap tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.rank-table-wrap tbody td {
  padding: 11px 16px;
  color: var(--muted);
  border: none;
  vertical-align: middle;
}
.rank-name {
  font-weight: 600;
  color: var(--text);
}
.prize-card {
  background: var(--bg-deep);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 22px 18px;
  height: 100%;
  text-align: center;
  transition: var(--tr);
}
.prize-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.prize-icon {
  font-size: 30px;
  margin-bottom: 12px;
  display: block;
}
.prize-card h6 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.prize-card p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
}

/* --- INCENTIVE CARDS (image-based) --- */
.incentive-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border2);
  cursor: pointer;
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.incentive-card:hover {
  transform: scale(1.04) translateY(-4px);
  border-color: rgba(0, 210, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 210, 255, 0.12);
}
.incentive-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) saturate(0.9);
  transition: filter var(--tr), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.incentive-card:hover .incentive-img {
  filter: brightness(1) saturate(1.1);
  transform: scale(1.06);
}
.incentive-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  color: var(--text);
  font-size: 12.5px;
  font-weight: 600;
  padding: 22px 8px 8px;
  text-align: center;
}
.incentive-label i {
  color: var(--cyan);
}

/* --- GALLERY TEASER --- */
#gallery-teaser {
  background: var(--bg-deep);
}
.g-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.g-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tr);
}
.g-item:hover img {
  transform: scale(1.07);
}
.g-item-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 210, 255, 0.28), transparent);
  opacity: 0;
  transition: var(--tr);
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
.g-item:hover .g-item-ov {
  opacity: 1;
}
.g-item-ov span {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}
.g-featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* --- FAQ --- */
.faq-wrap {
}
.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--tr);
}
.faq-card.open {
  border-color: var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 20px;
  cursor: pointer;
  gap: 14px;
}
.faq-q h6 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.faq-toggle-btn {
  width: 28px;
  height: 28px;
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--tr);
  font-size: 17px;
  color: var(--cyan);
}
.faq-card.open .faq-toggle-btn {
  transform: rotate(45deg);
  background: var(--cyan);
  color: #000;
}
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.38s ease,
    padding 0.28s;
  color: var(--muted);
  font-size: 13.5px;
}
.faq-card.open .faq-a {
  max-height: 320px;
  padding: 0 20px 18px;
}
.faq-a ul {
  margin-top: 8px;
}
.faq-a ul li {
  margin-bottom: 5px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.faq-a ul li i {
  color: var(--cyan);
  margin-top: 3px;
  flex-shrink: 0;
}

/* --- DOWNLOAD CTA --- */
#download-cta {
  background: linear-gradient(135deg, #030f1e, #060920);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#download-cta::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 380px;
  background: radial-gradient(
    ellipse,
    rgba(0, 210, 255, 0.09) 0%,
    transparent 70%
  );
}
.dl-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px 32px;
  position: relative;
}

/* --- BLOG --- */
#blog-section {
  background: var(--bg-card);
}
.blog-card {
  background: var(--bg-deep);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--tr);
  height: 100%;
}
.blog-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.blog-thumb {
  width: 100%;
  height: 195px;
  overflow: hidden;
}


.blog-thumb-placeholder {
  width: 100%;
  height: 195px;
  background: linear-gradient(135deg, var(--bg-card), #0d1f38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
}
.blog-body {
  padding: 20px;
}
.blog-meta {
  font-size: 11.5px;
  color: var(--dim);
  margin-bottom: 9px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.blog-tag {
  background: var(--cyan-dim);
  color: var(--cyan);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.blog-card h5 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 0;
}
.blog-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}
.blog-link:hover {
  gap: 10px;
  color: var(--cyan);
}


.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.05);
}


/* --- CONTACT --- */
#contact-section {
  background: var(--bg-deep);
}
.contact-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 22px 18px;
  height: 100%;
}
.c-icon {
  width: 44px;
  height: 44px;
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--cyan);
  margin-bottom: 12px;
}
.form-ctc {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  color: var(--text);
  padding: 14px 16px;
  font-size: 14px;
  transition: var(--tr);
  width: 100%;
}
.form-ctc:focus {
  background: var(--bg-card);
  border-color: var(--cyan);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.1);
  outline: none;
}
.form-ctc::placeholder {
  color: var(--dim);
}

/* --- PAGE TITLE (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, #030f1e 0%, #0a0520 100%);
  border-bottom: 1px solid var(--border);
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 210, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 210, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.breadcrumb-ctc {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
}
.breadcrumb-ctc a {
  color: var(--muted);
}
.breadcrumb-ctc a:hover {
  color: var(--cyan);
}
.breadcrumb-ctc .sep {
  color: var(--dim);
}
.breadcrumb-ctc .cur {
  color: var(--cyan);
}

/* --- INNER PAGE CONTENT --- */
.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 16px;
  transition: var(--tr);
}
.content-card:hover {
  border-color: var(--border);
}
.content-card .c-icon-lg {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
}
.content-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.content-card p,
.content-card li {
  color: var(--muted);
  font-size: 14px;
}
.content-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.content-card ul li i {
  color: var(--cyan);
  margin-top: 3px;
  flex-shrink: 0;
}
.allow-card {
  border-left: 3px solid var(--green);
}
.deny-card {
  border-left: 3px solid #ef4444;
}

/* --- FOOTER --- */
#footer {
  background: #020509;
  border-top: 1px solid var(--border2);
  padding: 60px 0 28px;
}
.footer-logo img {
  height: 42px;
  margin-bottom: 14px;
}
.footer-desc {
  color: var(--muted);
  font-size: 13.5px;
  max-width: 270px;
  margin-bottom: 20px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  background: var(--bg-card2);
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 7px;
  color: var(--muted);
  transition: var(--tr);
}
.footer-socials a:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  color: var(--cyan);
}
.footer-heading {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-links a {
  color: var(--muted);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--tr);
}
.footer-links a:hover {
  color: var(--cyan);
  padding-left: 3px;
}
.footer-links a i {
  font-size: 11px;
}
.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--border2);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--dim);
}
.footer-bottom a {
  color: var(--dim);
}
.footer-bottom a:hover {
  color: var(--cyan);
}

/* --- SCROLL TOP --- */
#scrollTop {
  position: fixed;
  bottom: 110px;
  right: 22px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--tr);
  box-shadow: 0 4px 20px rgba(0, 210, 255, 0.3);
}
#scrollTop.show {
  opacity: 1;
  transform: translateY(0);
}
#scrollTop:hover {
  transform: translateY(-3px);
}

/* --- GLASS CARD UTIL --- */
.glass {
  background: rgba(13, 20, 36, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
  .section {
    padding: 58px 0;
  }
  #hero {
    padding: 85px 0 60px;
  }
  .phone-card {
    width: 250px;
  }
  .g-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 575px) {
  .hero h1 {
    font-size: 2rem;
  }
  .phone-card {
    width: 230px;
  }
  .fb-1,
  .fb-2 {
    display: none;
  }
  .hero-stats {
    justify-content: center;
  }
  .dl-card {
    padding: 28px 18px;
  }
  .page-hero {
    padding: 85px 0 40px;
  }
}

/* ===== COMMUNITY SWIPER (homepage) ===== */
.community-swiper {
  width: 100%;
  padding-bottom: 48px !important;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.cs-slide {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  display: block;
}
.cs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.community-swiper .swiper-slide:hover .cs-slide img {
  transform: scale(1.04);
}
.cs-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
  padding: 28px 16px 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.32s;
}
.cs-slide:hover .cs-caption {
  opacity: 1;
}
.cs-caption span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.cs-caption i {
  color: var(--cyan);
  font-size: 18px;
}

/* swiper nav overrides */
.community-swiper .swiper-button-prev,
.community-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--cyan);
  top: calc(50% - 24px);
  transition: var(--tr);
}
.community-swiper .swiper-button-prev:hover,
.community-swiper .swiper-button-next:hover {
  background: var(--cyan);
  color: #000;
}
.community-swiper .swiper-button-prev::after,
.community-swiper .swiper-button-next::after {
  font-size: 14px;
  font-weight: 800;
}
.community-swiper .swiper-pagination-bullet {
  background: var(--border2);
  opacity: 1;
}
.community-swiper .swiper-pagination-bullet-active {
  background: var(--cyan);
}

/* ===== GALLERY PAGE — Masonry Infinite Scroll ===== */
#gallery-page {
  background: var(--bg-deep);
}
.gallery-masonry {
  columns: 3;
  column-gap: 10px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .gallery-masonry {
    columns: 2;
  }
}
@media (max-width: 419px) {
  .gallery-masonry {
    columns: 1;
  }
}
.gal-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}
.gal-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
  border-radius: var(--radius);
}
.gal-item:hover img {
  transform: scale(1.04);
}
.gal-item-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 210, 255, 0.28), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  border-radius: var(--radius);
}
.gal-item:hover .gal-item-ov {
  opacity: 1;
}
.gal-item-ov span {
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
}
.gal-placeholder {
  background: linear-gradient(135deg, var(--bg-card), #0d1f38);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--dim);
  font-size: 13px;
  break-inside: avoid;
  margin-bottom: 10px;
}
.gal-placeholder i {
  font-size: 32px;
}
#load-more-trigger {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.load-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border2);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.load-spinner.active {
  display: block;
}
.no-more-msg {
  color: var(--dim);
  font-size: 13px;
  display: none;
}
.no-more-msg.show {
  display: block;
}

/* ── Gallery location tabs ── */
.gal-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border2);
  padding-bottom: 12px;
}
.gal-tab {
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-family: var(--font-head);
  transition: var(--tr);
}
.gal-tab:hover {
  color: var(--text);
  background: var(--cyan-dim);
}
.gal-tab.active {
  color: var(--cyan);
  background: var(--cyan-dim);
  border-color: var(--border);
}

/* ── Event group header ── */
.gal-event-header {
  column-span: all;
  width: 100%;
  break-inside: avoid;
  padding: 24px 0 10px;
  margin-top: 8px;
  border-top: 1px solid var(--border2);
}
.gal-event-header:first-child {
  border-top: none;
  padding-top: 4px;
}
.gal-event-header__date {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.gal-event-header__desc {
  font-size: 13px;
  color: var(--muted);
}

/* ── Video thumbnail in masonry ── */
.gal-item--video video {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 320px;
  background: var(--bg-card);
}
.gal-item-ov--video {
  opacity: 1 !important;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.gal-item-ov--video i {
  font-size: 2.4rem;
  color: #fff;
  display: block;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

/* ── GLightbox caption override ── */
.gslide-description {
  background: rgba(0, 0, 0, 0.82) !important;
}
.gdesc-inner {
  padding: 12px 18px !important;
}
.gslide-desc {
  color: #e8eef6 !important;
  font-size: 13.5px !important;
  line-height: 1.55 !important;
}

/* ===== TESTIMONIALS — infinite marquee ===== */
.testi-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
.testi-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.testi-track-left {
  animation: testi-scroll-left 40s linear infinite;
}
.testi-track-right {
  animation: testi-scroll-right 40s linear infinite;
}
.testi-track:hover {
  animation-play-state: paused;
}

@keyframes testi-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes testi-scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 22px 20px;
  width: 300px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: border-color var(--tr);
}
.testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: var(--tr);
}
.testi-card:hover {
  border-color: var(--border);
}
.testi-card:hover::before {
  opacity: 1;
}
