/*
Sky Fitness Gym — Enhanced v2
Animations: clip-path reveals, stagger, parallax, 3D tilt
Typography: Bolder, more expressive hierarchy
NO glow/shadow effects
-------------------------------- */

/* ------------------------------
  Import Fonts
---------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Righteous&family=Staatliches&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap");

/* ------------------------------
  CSS Variables
---------------------------------*/
:root {
  --gold:       #edcc36;
  --gold-dim:   rgba(237,204,54,0.08);
  --dark:       #090909;
  --dark-2:     #0f0f0f;
  --border:     rgba(237,204,54,0.12);
  --text-muted: #666;
  --text-soft:  #999;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── Global overflow lock — prevents page being wider than viewport ── */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0; padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  background: var(--dark);
  color: #d4d4d4;
  overflow-x: hidden;
}

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

/* ------------------------------
  Typography
---------------------------------*/
h1, h2 {
  font-family: 'Righteous', sans-serif;
  padding: 0; margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h3, h4, h5, h6 {
  font-family: 'Staatliches', sans-serif;
  padding: 0; margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.95;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

h3 { font-size: 34px; font-weight: 700; letter-spacing: 0.1em; }
h4 { font-size: 28px; font-weight: 700; letter-spacing: 0.08em; }
h5 { font-size: 22px; font-weight: 600; line-height: 1.3; letter-spacing: 0.06em; }
h6 { font-size: 20px; letter-spacing: 0.06em; }

a { text-decoration: none; color: inherit; }
p {
  margin: 5px 0 15px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-size: 15px;
  color: var(--text-soft);
}
ul { padding: 0; margin: 0; }
ul li { list-style: none; }
img { width: 100%; display: block; }

/* Section eyebrow */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  height: 1px;
  width: 20px;
  background: var(--gold);
  opacity: 0.6;
}

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ------------------------------
  Loader
---------------------------------*/
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader .loading { text-align: center; }
.loader .loading .aloader {
  background: var(--gold);
  width: 48px; height: 48px;
}

/* ------------------------------
  Buttons
---------------------------------*/
.button {
  padding: 13px 32px;
  background: var(--gold);
  color: #090909;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid var(--gold);
  transition:
    background 0.3s var(--ease-out-expo),
    color 0.3s,
    transform 0.3s var(--ease-out-expo);
  display: inline-block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.button::after {
  content: '';
  position: absolute;
  left: -100%; top: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  transition: left 0.4s var(--ease-out-expo);
  skewX(-15deg);
}
.button:hover { background: transparent; color: var(--gold); transform: translateY(-2px); }
.button:hover::after { left: 120%; }

.button-outline {
  padding: 13px 32px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.3s var(--ease-out-expo);
  display: inline-block;
}
.button-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.button-dark {
  padding: 13px 32px;
  background: #090909;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid #090909;
  transition: all 0.3s var(--ease-out-expo);
  display: inline-block;
}
.button-dark:hover {
  background: transparent;
  color: #090909;
  transform: translateY(-2px);
}

.button-dark-outline {
  padding: 10px 26px;
  background: transparent;
  color: rgba(0,0,0,0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1.5px solid rgba(0,0,0,0.3);
  transition: all 0.3s;
  display: inline-block;
}
.button-dark-outline:hover { background: rgba(0,0,0,0.1); color: #000; transform: translateY(-2px); }

/* ------------------------------
  ── SCROLL ANIMATIONS ──
  Techniques:
  1. Clip-path reveal (wipe from left/bottom)
  2. Translate slide (up, left, right)
  3. Scale entrance
  4. Stagger via CSS custom property
---------------------------------*/

/* Base — invisible */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}
.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.scroll-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}
.scroll-left.animate-in { opacity: 1; transform: translateX(0); }

/* Slide from right */
.scroll-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}
.scroll-right.animate-in { opacity: 1; transform: translateX(0); }

/* Scale in */
.scroll-scale {
  opacity: 0;
  transform: scale(0.88);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}
.scroll-scale.animate-in { opacity: 1; transform: scale(1); }

/* Clip-path wipe reveal */
.scroll-wipe {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s var(--ease-out-expo);
}
.scroll-wipe.animate-in { clip-path: inset(0 0% 0 0); }

/* Stagger delays */
.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }
.delay-600 { transition-delay: 0.6s !important; }

/* ── Line-reveal for headings ──
   Wraps each line in a .line-mask so text slides up from under it */
.line-mask {
  overflow: hidden;
  display: block;
}
.line-mask .line-inner {
  display: block;
  transform: translateY(100%);
  transition: transform 0.9s var(--ease-out-expo);
  opacity: 0;
  transition: transform 0.9s var(--ease-out-expo), opacity 0.5s ease;
}
.animate-in .line-mask .line-inner,
.line-mask.animate-in .line-inner {
  transform: translateY(0);
  opacity: 1;
}

/* ------------------------------
  Navbar
---------------------------------*/
.navbar {
  top: 0;
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 0;
  text-align: center;
  transition: background 0.4s, padding 0.3s;
}
.navbar .container {
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(237,204,54,0.15);
  transition: padding 0.3s;
}
.navbar .navbar-brand { text-align: left; width: 18%; }
.navbar .navbar-brand img { height: 44px; width: auto; position: relative; top: -3px; }
.navbar .navbar-brand:hover { color: #fff; }
.navbar .navbar-toggler { padding: 0; }
.navbar .navbar-toggler i { font-size: 32px; color: #fff; }
.navbar .navbar-toggler:focus { box-shadow: none; }
.navbar .navbar-collapse { position: relative; width: 55%; text-align: center; left: -10px; }
.navbar .navbar-nav li { padding: 0 8px; }

/* Nav link — animated underline */
.navbar .navbar-nav li a {
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  display: inline-block;
  transition: color 0.25s;
}
.navbar .navbar-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out-expo);
}
.navbar .navbar-nav li a:hover,
.navbar .navbar-nav li a.active-link { color: var(--gold); }
.navbar .navbar-nav li a:hover::after,
.navbar .navbar-nav li a.active-link::after { width: 100%; }

.navbar .button-navbar { width: 25%; float: right; text-align: right; white-space: nowrap; }
.navbar .button-navbar li { display: inline-block; margin-left: 12px; }

.navbar-fixed {
  background: rgba(9,9,9,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.navbar-fixed .container { padding-top: 14px; padding-bottom: 14px; }

/* ══════════════════════════════════════
   Hero / Intro — Cinematic Full Viewport
══════════════════════════════════════ */
.intro {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background gym image — fills section */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
  z-index: 0;
}
.intro:hover .hero-bg { transform: scale(1.07); }

/* Multi-layer overlay: dark bottom-to-top + dark sides */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(9,9,9,0.55) 0%, rgba(9,9,9,0.2) 40%, rgba(9,9,9,0.75) 80%, rgba(9,9,9,0.97) 100%),
    linear-gradient(to right, rgba(9,9,9,0.6) 0%, transparent 40%, transparent 60%, rgba(9,9,9,0.6) 100%);
}

/* Container — sits above overlay */
.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 100px;
  width: 100%;
}

/* Eyebrow — horizontal line · text · line */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  animation: heroTextIn 0.8s var(--ease-out-expo) 0.2s both;
}
.hero-eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.hero-eyebrow-text {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Main headline */
.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}
.hero-line {
  display: block;
  overflow: hidden;
  line-height: 1;
  padding-bottom: 6px;
}
.hero-line-inner {
  display: block;
  font-family: 'Righteous', sans-serif;
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s ease;
}
.hero-line-gold {
  color: var(--gold);
  font-size: clamp(64px, 12vw, 128px);
  letter-spacing: -0.03em;
  line-height: 0.9;
}
.hero-line-inner.revealed {
  transform: translateY(0);
  opacity: 1;
}

/* Sub text */
.hero-sub {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin: 0 auto 36px;
  max-width: 580px;
  animation: heroTextIn 1s var(--ease-out-expo) 0.9s both;
}

/* CTA row */
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
  animation: heroTextIn 1s var(--ease-out-expo) 1.1s both;
}

/* Stat strip — horizontal at bottom */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 32px;
  animation: heroTextIn 1s var(--ease-out-expo) 1.3s both;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.hero-stat strong {
  font-family: 'Righteous', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--gold);
  line-height: 1;
  display: block;
  letter-spacing: 0.02em;
}
.hero-stat span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
  display: block;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Scroll hint — bottom of section */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  text-decoration: none;
  animation: heroTextIn 1s var(--ease-out-expo) 1.6s both;
}
.hero-scroll-hint span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(237,204,54,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ------------------------------
  Features Strip
---------------------------------*/
.features-strip {
  background: var(--gold);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
/* Diagonal stripe texture */
.features-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0,0,0,0.04) 8px,
    rgba(0,0,0,0.04) 9px
  );
}
.features-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}
.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
  transition: transform 0.3s var(--ease-out-expo);
}
.feature-strip-item:hover { transform: translateY(-2px); }
.feature-strip-item i { font-size: 20px; color: rgba(0,0,0,0.55); transition: transform 0.3s; }
.feature-strip-item:hover i { transform: rotate(-5deg) scale(1.1); }
.feature-strip-item span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #090909;
}
.feature-strip-divider { width: 1px; height: 28px; background: rgba(0,0,0,0.15); flex-shrink: 0; }

/* ------------------------------
  About
---------------------------------*/
.about { padding-top: 120px; }
.about h2 { padding-left: 80px; padding-right: 80px; }

/* Image area */
.about-img-wrap { position: relative; display: block; width: 100%; }
.about-main-img {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.6s var(--ease-out-expo);
  margin-top: 75px;
  object-fit: cover;
  height: 460px;
  width: 100%;
}
.about-img-wrap:hover .about-main-img { transform: scale(1.015); }

/* Experience badge — no glow */
.about-exp-badge {
  position: absolute;
  top: 50px; left: -16px;
  width: 96px; height: 96px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.about-exp-badge strong {
  font-family: 'Righteous', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #090909;
  line-height: 1;
  display: block;
}
.about-exp-badge span {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.6);
  line-height: 1.3;
  display: block;
  margin-top: 3px;
}

/* Right column */
.content-right img {
  border-radius: 8px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.5s var(--ease-out-expo);
  height: 220px;
  object-fit: cover;
}
.content-right img:hover { transform: scale(1.02); }
.content-right .button { margin-top: 20px; }

/* About features grid */
.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 20px 0;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid var(--gold);
  border-radius: 3px;
  transition: transform 0.3s var(--ease-out-expo), background 0.3s;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
}
.about-feat:hover { transform: translateX(4px); background: rgba(237,204,54,0.05); color: #fff; }
.about-feat i { font-size: 15px; color: var(--gold); flex-shrink: 0; }

/* ------------------------------
  Gallery
---------------------------------*/
.gallery { padding-top: 120px; }
.gallery h2 {
  text-align: center;
  background: var(--dark);
  display: inline-block;
  padding: 20px 32px;
  margin: auto;
  left: 50%;
  position: relative;
  z-index: 1;
  transform: translate(-50%);
}
.gallery .divider {
  height: 2px;
  width: 100%;
  background: rgba(237,204,54,0.3);
  position: relative;
  top: -78px;
}
.gallery .col-md-4 a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  cursor: zoom-in;
}
.gallery img {
  border-radius: 8px;
  transition: transform 0.7s var(--ease-out-expo);
  height: 260px;
  object-fit: cover;
}
.gallery .col-md-4 a:hover img { transform: scale(1.06); }

/* Overlay on hover — slide up */
.gallery .col-md-4 a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 1;
  border-radius: 8px;
}
.gallery .col-md-4 a:hover::before { opacity: 1; }

/* Gallery zoom icon — scale in */
.gallery .col-md-4 a::after {
  content: '+';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6) rotate(15deg);
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 300;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s, transform 0.4s var(--ease-out-expo);
  line-height: 1;
}
.gallery .col-md-4 a:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

/* Gallery tag */
.gallery-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.8);
  border-left: 2px solid var(--gold);
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.35s var(--ease-out-expo), opacity 0.35s;
}
.gallery .col-md-4 a:hover .gallery-tag { opacity: 1; transform: translateY(0); }

/* ------------------------------
  Pricing
---------------------------------*/
.pricing { padding-top: 140px; }
.pricing .content {
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--gold);
  padding: 40px;
  border-radius: 4px;
  background: rgba(14,14,14,0.8);
  transition:
    transform 0.45s var(--ease-out-expo),
    border-color 0.3s,
    background 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /* 3D tilt — applied via JS */
  transform-style: preserve-3d;
  will-change: transform;
}
.pricing .content:hover {
  transform: translateY(-10px);
  border-color: rgba(237,204,54,0.5);
  background: rgba(20,20,20,0.9);
}

.plan-icon {
  width: 46px; height: 46px;
  background: rgba(237,204,54,0.08);
  border: 1px solid rgba(237,204,54,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s var(--ease-out-expo);
}
.pricing .content:hover .plan-icon { transform: rotate(-6deg) scale(1.1); }
.plan-icon i { font-size: 22px; color: var(--gold); }
.plan-icon-dark { background: rgba(0,0,0,0.2); border-color: rgba(0,0,0,0.2); }
.plan-icon-dark i { color: #090909; }

.plan-price {
  font-family: 'Righteous', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  margin-bottom: 28px;
  color: var(--gold);
}
.plan-price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(0,0,0,0.4);
  font-family: 'Montserrat', sans-serif;
}

.pricing .content ul { margin-bottom: 24px; }
.pricing .content ul li {
  padding: 9px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, padding-left 0.3s var(--ease-out-expo);
}
.pricing .content:hover ul li { padding-left: 4px; }
.pricing .content ul li:last-child { border-bottom: none; }
.pricing .content ul li i { color: var(--gold); margin-right: 10px; font-size: 15px; }

/* Featured card */
.pricing-featured {
  background: var(--gold) !important;
  border-top-color: #090909 !important;
  border-color: var(--gold) !important;
}
.pricing-featured h4 { color: #090909; }
.pricing-featured .plan-price { color: #090909; }
.pricing-featured .plan-price span { color: rgba(0,0,0,0.45); }
.pricing-featured p { color: rgba(0,0,0,0.6); }
.pricing-featured ul li { color: rgba(0,0,0,0.7); border-bottom-color: rgba(0,0,0,0.06); }
.pricing-featured ul li i { color: #090909; }
.pricing-featured:hover { border-color: #090909 !important; }

.plan-badge-top {
  position: absolute;
  top: 18px; right: 18px;
  background: #090909;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

/* Pricing perks */
.pricing-perks { margin-top: 16px; }
.pricing-perks li {
  padding: 6px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
}
.pricing-perks li i { color: var(--gold); margin-right: 10px; font-size: 14px; }

/* ------------------------------
  Contact
---------------------------------*/
.contact { padding-top: 120px; }
.contact .icon { float: left; margin-right: 20px; }
.contact .text { overflow: hidden; }
.contact .content-map { margin-bottom: 40px; }
.contact .content-map iframe { width: 100%; }
.contact i {
  height: 52px; width: 52px;
  background: var(--gold);
  text-align: center;
  line-height: 52px;
  color: #090909;
  font-size: 22px;
  margin-bottom: 20px;
  border-radius: 3px;
  display: block;
  transition: transform 0.3s var(--ease-out-expo);
}
.contact i:hover { transform: scale(1.06) rotate(-3deg); }
.contact h5 { margin-top: 8px; }
.contact .open {
  background: var(--gold);
  color: #090909;
  height: 100%;
  text-align: center;
  border: 18px double rgba(0,0,0,0.1);
  padding-top: 18%;
  border-radius: 4px;
}
.contact .open h3 { color: #090909; }
.contact .open span { font-size: 17px; margin-bottom: 16px; display: block; font-weight: 600; }
.contact .open .open-cta { margin-top: 20px; }

/* ------------------------------
  Testimonial
---------------------------------*/
.testimonial { padding: 140px 0; }
.testi-header { margin-bottom: 52px; }
.testi-title {
  font-size: clamp(28px, 4vw, 48px);
  margin-top: 8px;
  line-height: 1.05;
}
.testi-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.testimonial .swiper-button-next,
.testimonial .swiper-button-prev { color: var(--gold); }
.testimonial .swiper-button-next::after,
.testimonial .swiper-button-prev::after { font-size: 26px; }

.testimonial .swiper .content {
  text-align: center;
  padding: 48px 22%;
  color: #fff;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--gold);
  border-radius: 4px;
  margin: 0 10px;
  position: relative;
}
/* Big quote mark */
.testimonial .swiper .content::before {
  content: '"';
  position: absolute;
  top: 16px; left: 28px;
  font-family: 'Righteous', sans-serif;
  font-size: 100px;
  color: rgba(237,204,54,0.07);
  line-height: 1;
  pointer-events: none;
}
.testimonial .swiper .content p {
  font-style: italic;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-bottom: 28px;
}
.testimonial .swiper .content span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(237,204,54,0.7);
}
.testimonial .swiper .content h5 {
  font-size: 19px;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}

/* ------------------------------
  Footer
---------------------------------*/
footer {
  padding: 50px 0 35px;
  background: var(--gold);
  color: #090909;
  font-size: 14px;
  font-weight: 500;
}
.footer-brand { margin-bottom: 12px; }
.footer-tagline {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin: 0;
}
footer ul.footer-social {
  list-style: none;
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
footer ul.footer-social li a {
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease-out-expo), background 0.3s;
}
footer ul.footer-social li a i { font-size: 17px; color: #090909; }
footer ul.footer-social li a:hover { background: rgba(0,0,0,0.2); transform: translateY(-3px); }

.footer-links-col h6 {
  font-family: 'Staatliches', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #090909;
  margin-bottom: 12px;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-nav li a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.6);
  transition: color 0.2s, padding-left 0.3s var(--ease-out-expo);
  display: inline-block;
}
.footer-nav li a:hover { color: #090909; padding-left: 6px; }

footer .cp { text-align: right; }
footer .cp span { font-size: 12px; font-weight: 600; color: rgba(0,0,0,0.55); line-height: 1.8; }

/* ── 3D Tilt card shine layer ── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-out-expo);
}
.tilt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.tilt-card:hover::after { opacity: 1; }

/* ------------------------------
  Responsive — Tablet (≤ 991px)
---------------------------------*/
@media (max-width: 991px) {
  /* Navbar */
  .navbar .navbar-collapse {
    background: rgba(9,9,9,0.98);
    padding-bottom: 20px;
    width: 100% !important;
    left: 0 !important;
    border-top: 1px solid rgba(237,204,54,0.12);
    margin-top: 8px;
    backdrop-filter: blur(10px);
  }
  .navbar .button-navbar { display: none; }
  .navbar .container { background: rgba(9,9,9,0.98); }

  /* Hero */
  .intro { padding-top: 130px; padding-bottom: 40px; }
  .intro .col-md { flex: 100%; }
  .intro .content-text { text-align: center; top: 0; margin-bottom: 40px; }
  .intro .content-image { text-align: center; }
  .intro .content-image img { max-width: 76%; margin: 0 auto; }
  .intro h1 { font-size: clamp(38px, 8vw, 60px); }
  .hero-badges { justify-content: center !important; }

  /* About */
  .about h2 { padding-left: 0; padding-right: 0; }
  .about-exp-badge { left: 8px; top: 80px; width: 82px; height: 82px; }
  .about-exp-badge strong { font-size: 18px; }

  /* Pricing */
  .pricing .col-md-left { flex: 100%; }

  /* Contact */
  .contact .open { padding-top: 28%; }

  /* Features */
  .features-strip-inner { justify-content: center; }
  .feature-strip-divider { display: none; }
  .feature-strip-item { flex: 0 0 calc(50% - 16px); justify-content: flex-start; padding: 8px 20px; }

  /* Testimonial */
  .testimonial .swiper .content { padding: 36px 10%; }
}

/* ------------------------------
  Responsive — Mobile (≤ 767px)
---------------------------------*/
@media (max-width: 767px) {
  /* Typography */
  h1 { font-size: 38px; line-height: 0.95; }
  h2 { font-size: 28px; }

  /* Navbar — compact Join Now on all phones */
  .navbar .w-100 .button {
    padding: 6px 14px !important;
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
  }

  /* Hero */
  .hero-container { padding-top: 100px; padding-bottom: 80px; }
  .hero-line-inner { font-size: clamp(36px, 8vw, 64px); }
  .hero-line-gold  { font-size: clamp(46px, 12vw, 88px); }
  .hero-sub { font-size: 11px; letter-spacing: 0.06em; }
  .hero-stats { gap: 12px 0; }
  .hero-stat { padding: 8px 16px; }
  .hero-stat-divider { display: none; }
  .hero-cta { margin-bottom: 36px; gap: 12px; }
  .hero-scroll-hint { display: none; }

  /* About */
  .about { padding-top: 72px; }
  .about h2 { padding: 0; }
  .about-main-img { height: 240px; margin-top: 20px; }
  .about-exp-badge { display: none; }
  .about-features-grid { grid-template-columns: 1fr; }
  .content-right img { height: 160px; }

  /* Gallery */
  .gallery { padding-top: 72px; }
  .gallery img { height: 180px; }
  .gallery .col-md-4 { flex: 0 0 50%; max-width: 50%; }

  /* Pricing */
  .pricing { padding-top: 72px; }
  .pricing .row { flex-direction: column; }
  .pricing .col-md { flex: 100%; max-width: 100%; }
  .pricing .content { padding: 28px 24px; margin-bottom: 16px; }
  .pricing .col-md-left { margin-bottom: 32px; }

  /* Contact */
  .contact { padding-top: 72px; }
  .contact .open { padding-top: 8%; min-height: 220px; }
  .contact .row > .col { margin-bottom: 20px; }

  /* Testimonial */
  .testimonial { padding: 72px 0; }
  .testimonial .swiper .content { padding: 28px 6%; }
  .testi-title { font-size: 24px; }
  .testimonial .swiper-button-next,
  .testimonial .swiper-button-prev { display: none; }

  /* Footer */
  footer { padding: 40px 0 28px; }
  footer .row { flex-direction: column; gap: 24px; }
  footer .col-md { flex: 100%; text-align: center; }
  footer ul.footer-social { justify-content: center; }
  footer .cp { text-align: center; margin-top: 0; }
  .footer-nav { align-items: center; }
  .footer-links-col { text-align: center; }
  .footer-links-col h6 { text-align: center; }

  .intro::before { display: none; }
}

/* ------------------------------
  Responsive — Small Mobile (≤ 575px)
---------------------------------*/
@media (max-width: 575px) {
  .container { padding: 0 16px; }

  /* Navbar — compact Join Now button on mobile */
  .navbar .w-100 .button {
    padding: 5px 12px !important;
    font-size: 9px !important;
    letter-spacing: 0.12em !important;
    border-width: 1.5px !important;
  }

  /* Navbar */
  .navbar .navbar-collapse { padding-top: 16px; }
  .navbar .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  /* Typography */
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }

  /* Hero */
  .hero-container { padding-top: 80px; padding-bottom: 50px; }
  .hero-line-inner { font-size: 26px !important; }
  .hero-line-gold  { font-size: 38px !important; }
  .hero-sub { font-size: 10px; }
  .hero-stat strong { font-size: 22px; }
  .hero-cta .button,
  .hero-cta .button-outline { padding: 10px 22px; font-size: 10px; }

  /* Features */
  .features-strip-inner { flex-direction: column; gap: 0; }
  .feature-strip-item {
    width: 100%;
    flex: 100%;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    justify-content: flex-start;
  }
  .feature-strip-item:last-child { border-bottom: none; }

  /* About */
  .about { padding-left: 0; padding-right: 0; padding-top: 60px; }
  .about-main-img { height: 200px; }
  .content-right img { height: 130px; }

  /* Gallery — single column on tiny screens */
  .gallery { padding-top: 60px; }
  .gallery .divider { display: none; }
  .gallery .col-md-4 { flex: 0 0 100%; max-width: 100%; }
  .gallery img { height: 200px; }

  /* Pricing */
  .pricing { padding-top: 60px; }
  .pricing .content { padding: 24px 18px; }
  .plan-price { font-size: 2rem; }

  /* Contact */
  .contact { padding-top: 60px; }
  .contact .open { padding-top: 10%; padding-left: 12px; padding-right: 12px; }
  .contact .content-map iframe { height: 280px; }

  /* Testimonial */
  .testimonial { padding: 60px 0; }
  .testimonial .swiper .content { padding: 24px 4%; }
  .testimonial .swiper .content::before { font-size: 60px; top: 10px; left: 14px; }

  /* Footer */
  footer { text-align: center; padding: 32px 0 24px; }
  footer ul.footer-social { justify-content: center; }
  footer .cp { text-align: center; margin-top: 0; }
  .footer-links-col { margin-top: 16px; }
  .footer-links-col h6 { text-align: center; }
}
