/* ============================================================
   GÜRKAN KÜÇÜK FIGHT CLUB — PREMIUM WHITE THEME CSS v2
   White · Black · Gold · Red — Luxury Combat Sports Brand
   ============================================================ */

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Brand Colors */
  --gold:           #b8922a;
  --gold-light:     #d4a843;
  --gold-bright:    #f0c040;
  --gold-dark:      #7a5e12;
  --red:            #9b1c1c;
  --red-accent:     #c0392b;
  --black:          #0d0d0d;
  --black-2:        #111111;
  --charcoal:       #1a1a1a;
  --dark-card:      #1e1e1e;

  /* White Theme Surfaces */
  --bg-main:        #ffffff;
  --bg-alt:         #f7f5f1;
  --bg-subtle:      #f0ede8;
  --border-light:   rgba(0,0,0,0.08);
  --border-medium:  rgba(0,0,0,0.12);
  --border-gold:    rgba(184,146,42,0.25);
  --border-gold-strong: rgba(184,146,42,0.5);

  /* Text */
  --text-primary:   #0d0d0d;
  --text-secondary: #3a3a3a;
  --text-muted:     #6b6b6b;
  --text-light:     #999999;

  /* Dark Card Surfaces */
  --card-bg:        #ffffff;
  --card-bg-dark:   #1a1a1a;

  /* Gold utilities */
  --gold-rgba:      rgba(184,146,42,0.08);
  --gold-rgba-mid:  rgba(184,146,42,0.15);

  /* Typography */
  --font-display:   'Bebas Neue', sans-serif;
  --font-body:      'Inter', sans-serif;
  --font-accent:    'Rajdhani', sans-serif;

  /* Layout */
  --nav-height:     76px;
  --container:      1280px;
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;

  /* Effects */
  --transition:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:      0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:      0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:      0 16px 48px rgba(0,0,0,0.12);
  --shadow-xl:      0 32px 80px rgba(0,0,0,0.15);
  --shadow-gold:    0 8px 32px rgba(184,146,42,0.2);
}

/* ==================== RESET ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg-main); color: var(--text-primary); overflow-x: hidden; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ==================== UTILITY CLASSES ==================== */
.gold { color: var(--gold) !important; }
.gold-text { color: var(--gold); }
.red-text { color: var(--red-accent); }

/* ==================== CONTAINER ==================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }

/* ==================== SECTIONS ==================== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

/* ==================== SECTION HEADER ==================== */
.section-header { text-align: center; margin-bottom: 64px; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
}
.section-eyebrow::before,
.section-eyebrow::after { content: '—'; margin: 0 10px; opacity: 0.5; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.title-bar {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 16px;
  border-radius: 2px;
  position: relative;
}
.title-bar::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
}

.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 580px; margin: 0 auto; line-height: 1.9; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn:hover::after { transform: translateX(100%); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(184,146,42,0.35); }

.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

/* ====== PREMIUM CALL NOW BUTTON ====== */
.btn-call-now {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, var(--charcoal), var(--black-2));
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  position: relative; overflow: hidden;
  margin-top: 28px;
  width: 100%;
  max-width: 380px;
}
.btn-call-now::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}
.btn-call-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 0 0 1px var(--gold);
  border-color: var(--gold);
}
.call-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: linear-gradient(135deg, #128c7e, #25d366);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 16px rgba(37,211,102,0.4);
}
.call-text {
  display: flex; flex-direction: column; gap: 2px; flex: 1;
}
.call-label {
  font-family: var(--font-accent);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.call-number {
  font-family: var(--font-display);
  font-size: 1.2rem; letter-spacing: 2px;
  color: var(--gold-bright);
}
.call-arrow {
  color: var(--gold);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.btn-call-now:hover .call-arrow { transform: translateX(4px); }

/* ==================== LOADING SCREEN ==================== */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.loader-logo {
  width: 110px; height: 110px; object-fit: contain;
  animation: loaderPulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(184,146,42,0.7));
}
.loader-bar-track { width: 260px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.loader-bar { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-bright)); border-radius: 2px; animation: loaderBar 1.8s ease-in-out forwards; width: 0%; }
.loader-text { font-family: var(--font-display); letter-spacing: 6px; font-size: 0.9rem; color: rgba(255,255,255,0.5); }

@keyframes loaderPulse {
  0%,100% { filter: drop-shadow(0 0 8px rgba(184,146,42,0.3)); }
  50% { filter: drop-shadow(0 0 28px rgba(184,146,42,0.9)); }
}
@keyframes loaderBar { 0% { width:0%; } 100% { width:100%; } }

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed; top:0; left:0; right:0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: var(--container); margin: 0 auto; padding: 0 2rem;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img {
  width: 50px; height: 50px; object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(184,146,42,0.3));
  transition: var(--transition);
}
.nav-logo:hover .nav-logo-img { filter: drop-shadow(0 0 14px rgba(184,146,42,0.7)); transform: scale(1.05); }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem; letter-spacing: 3px;
  color: var(--black);
  transition: var(--transition);
}
.navbar.scrolled .nav-logo-text { color: var(--black); }

/* Nav links default (on hero — over dark image) */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-accent);
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px; border-radius: 4px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold); border-radius: 1px;
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--gold-bright); }
.nav-link:hover::after { width: 55%; }

/* On scroll — switch to dark text */
.navbar.scrolled .nav-link { color: var(--text-secondary); }
.navbar.scrolled .nav-link:hover { color: var(--gold); }

.nav-contact-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 4px !important;
  box-shadow: 0 4px 16px rgba(184,146,42,0.3);
}
.nav-contact-cta::after { display: none !important; }
.nav-contact-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(184,146,42,0.4) !important; }
.navbar.scrolled .nav-contact-cta { color: #fff !important; }

/* ==================== HAMBURGER TOGGLE ==================== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
  z-index: 1100;
  position: relative;
}
.bar {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.navbar.scrolled .bar { background: var(--black); }
.nav-toggle.active .bar-1 { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .bar-2 { opacity: 0; transform: scaleX(0); }
.nav-toggle.active .bar-3 { transform: translateY(-7px) rotate(-45deg); }

/* ==================== DRAWER OVERLAY ==================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1), visibility 0.45s ease;
  cursor: pointer;
}
.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ==================== MOBILE DRAWER PANEL ==================== */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  z-index: 1100;
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  /* Premium top border */
  border-left: 1px solid rgba(184,146,42,0.2);
}
.mobile-drawer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
  z-index: 2;
}
/* Decorative background texture */
.mobile-drawer::after {
  content: '';
  position: absolute;
  top: 40%; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184,146,42,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.mobile-drawer.open {
  transform: translateX(0);
}

/* ---- Drawer Header ---- */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  flex-shrink: 0;
}
.drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.drawer-logo {
  width: 48px; height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(184,146,42,0.5));
}
.drawer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.drawer-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1;
}
.drawer-brand-sub {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.drawer-close {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.drawer-close:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* ---- Drawer Divider ---- */
.drawer-divider {
  height: 1px;
  margin: 0 24px;
  background: linear-gradient(90deg, transparent, rgba(184,146,42,0.4), transparent);
  flex-shrink: 0;
}

/* ---- Drawer Nav ---- */
.drawer-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 0 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.drawer-nav::-webkit-scrollbar { display: none; }

.drawer-links {
  display: flex;
  flex-direction: column;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 24px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.drawer-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-bright));
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  transform-origin: bottom;
  border-radius: 0 2px 2px 0;
}
.drawer-link:hover::before,
.drawer-link:active::before {
  transform: scaleY(1);
}
.drawer-link:hover {
  background: rgba(184,146,42,0.06);
  padding-left: 30px;
}
.drawer-link-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: rgba(184,146,42,0.4);
  flex-shrink: 0;
  min-width: 28px;
  transition: color 0.3s ease;
}
.drawer-link:hover .drawer-link-num { color: var(--gold); }
.drawer-link-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.85);
  flex: 1;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.drawer-link:hover .drawer-link-text { color: #fff; }
.drawer-link-arrow {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
.drawer-link:hover .drawer-link-arrow {
  transform: translateX(4px);
  color: var(--gold);
}

/* ---- Drawer Footer ---- */
.drawer-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 20px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.drawer-cta i { font-size: 1.3rem; }
.drawer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.drawer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.drawer-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}
.drawer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: translateY(-2px);
}
.drawer-copyright {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
  font-family: var(--font-accent);
}

/* ==================== SHOW HAMBURGER ON MOBILE ==================== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s ease-in-out;
  animation: kenBurns 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.07); } }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.72) 40%, rgba(139,26,26,0.12) 70%, rgba(10,10,10,0.82) 100%);
  z-index: 1;
}
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.particle {
  position: absolute; width: 2px; height: 2px;
  background: var(--gold-bright); border-radius: 50%;
  opacity: 0; animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { opacity:0; transform:translateY(0) scale(0); }
  10% { opacity:1; transform:translateY(-20px) scale(1); }
  90% { opacity:0.4; }
  100% { opacity:0; transform:translateY(-80vh) scale(0); }
}
.glow-orb { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 1; pointer-events: none; animation: orbPulse 4s ease-in-out infinite; }
.glow-orb-1 { width:380px; height:380px; background:radial-gradient(circle, rgba(184,146,42,0.10) 0%, transparent 70%); top:5%; left:-80px; }
.glow-orb-2 { width:320px; height:320px; background:radial-gradient(circle, rgba(139,26,26,0.12) 0%, transparent 70%); bottom:10%; right:-60px; animation-delay:2s; }
@keyframes orbPulse { 0%,100%{transform:scale(1);opacity:.8;} 50%{transform:scale(1.2);opacity:1;} }

.hero-content {
  position: relative; z-index: 3;
  text-align: center; max-width: 880px;
  padding: 0 2rem; padding-top: var(--nav-height);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,146,42,0.12); border: 1px solid rgba(184,146,42,0.35);
  border-radius: 50px; padding: 8px 22px;
  font-family: var(--font-accent); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-bright);
  margin-bottom: 32px; backdrop-filter: blur(12px);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.92; letter-spacing: 4px; margin-bottom: 28px;
}
.hero-headline .line-1, .hero-headline .line-3 { display: block; color: #fff; }
.hero-headline .line-2 {
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  background-size: 200% auto;
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(184,146,42,0.4));
  animation: goldShimmer 3s ease-in-out infinite;
}
@keyframes goldShimmer { 0%{background-position:0% center;} 50%{background-position:100% center;} 100%{background-position:0% center;} }

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.72); line-height: 1.9;
  margin-bottom: 40px; max-width: 580px; margin-left: auto; margin-right: auto;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,0.35); font-family: var(--font-accent); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 55px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top;} 50%{transform:scaleY(1);transform-origin:top;} 51%{transform:scaleY(1);transform-origin:bottom;} 100%{transform:scaleY(0);transform-origin:bottom;} }
.hero-logo-brand { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); z-index: 3; opacity: 0.1; }
.hero-logo-brand img { width: 280px; filter: grayscale(1) brightness(3); }

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal-up { opacity: 0; transform: translateY(36px); transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.85s cubic-bezier(.4,0,.2,1), transform 0.85s cubic-bezier(.4,0,.2,1); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.85s cubic-bezier(.4,0,.2,1), transform 0.85s cubic-bezier(.4,0,.2,1); }
.revealed { opacity: 1 !important; transform: none !important; }

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

.about-grid {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 72px; align-items: start; margin-bottom: 80px;
}

/* Fighter Card */
.fighter-card-wrap { position: relative; }
.fighter-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.fighter-img-frame {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--border-gold);
}
.fighter-img-frame img {
  width: 100%; height: 580px; object-fit: cover; object-position: top center;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.fighter-card:hover .fighter-img-frame img { transform: scale(1.04); }
.fighter-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 40%, transparent 65%);
}

/* Frame Corner Decorations */
.frame-corner {
  position: absolute; width: 28px; height: 28px;
  border-color: var(--gold); border-style: solid; z-index: 2;
}
.fc-tl { top: -4px; left: -4px; border-width: 3px 0 0 3px; border-radius: 4px 0 0 0; }
.fc-tr { top: -4px; right: -4px; border-width: 3px 3px 0 0; border-radius: 0 4px 0 0; }
.fc-bl { bottom: -4px; left: -4px; border-width: 0 0 3px 3px; border-radius: 0 0 0 4px; }
.fc-br { bottom: -4px; right: -4px; border-width: 0 3px 3px 0; border-radius: 0 0 4px 0; }

/* Achievement Badges */
.achievement-badge {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: var(--transition);
  z-index: 3;
  min-width: 180px;
}
.achievement-badge:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.16); }
.achievement-badge i {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; flex-shrink: 0;
}
.badge-title {
  display: block; font-family: var(--font-accent); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.5px; color: var(--text-primary);
}
.badge-sub { display: block; font-size: 0.72rem; color: var(--gold); font-weight: 600; letter-spacing: 1px; }

.badge-1 { top: 24px; right: -28px; }
.badge-2 { top: 50%; transform: translateY(-50%); right: -28px; }
.badge-3 { bottom: 60px; right: -28px; }

/* About Text */
.about-text { padding-top: 8px; }
.about-name-block {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}
.about-logo-small { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.about-name {
  font-family: var(--font-display); font-size: 2rem;
  letter-spacing: 2px; color: var(--text-primary); line-height: 1;
}
.about-title-line {
  font-family: var(--font-accent); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold);
  margin-top: 4px;
}
.about-lead {
  font-size: 1.1rem; line-height: 1.85; color: var(--text-primary);
  margin-bottom: 18px; font-weight: 500;
}
.about-lead strong { color: var(--gold-dark); }
.about-body { font-size: 0.97rem; line-height: 1.9; color: var(--text-secondary); margin-bottom: 16px; }
.about-body strong { color: var(--text-primary); font-weight: 600; }

/* Info Cards */
.info-cards {
  display: flex; flex-direction: column; gap: 10px;
  margin: 28px 0 32px;
}
.info-card {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, var(--black-2), var(--charcoal));
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  transition: var(--transition);
  cursor: default;
}
.info-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold-bright);
}
.info-card-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--gold-rgba-mid);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.info-card-icon i { color: var(--gold); font-size: 1rem; }
.info-card-text { display: flex; flex-direction: column; gap: 2px; }
.info-card-text strong { font-size: 0.95rem; font-weight: 700; color: #fff; letter-spacing: 0.5px; }
.info-card-text span { font-size: 0.78rem; color: var(--gold); font-family: var(--font-accent); letter-spacing: 1.5px; text-transform: uppercase; }

/* Stats */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat-card {
  background: var(--charcoal);
  padding: 36px 20px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: var(--transition);
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
}
.stat-card:last-child { border-right: none; }
.stat-card::before {
  content: ''; position: absolute; top:0; left:0; right:0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover { background: var(--dark-card); }
.stat-icon { font-size: 1.6rem; color: var(--gold); }
.stat-number { font-family: var(--font-display); font-size: 2.8rem; color: var(--gold-bright); letter-spacing: 2px; line-height: 1; }
.stat-label { font-family: var(--font-accent); font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ==================== GALLERY ==================== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer; aspect-ratio: 4/3;
  background: var(--bg-subtle);
}
.gallery-item.large { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--gold-bright); }
.gallery-overlay span { font-family: var(--font-accent); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 0.82rem; color: rgba(255,255,255,0.85); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(10px);
}
.lightbox.active { opacity:1; visibility:visible; }
.lightbox-img-wrap { max-width: 90vw; max-height: 90vh; }
.lightbox-img-wrap img { max-width:90vw; max-height:90vh; object-fit:contain; border-radius:4px; box-shadow:0 0 60px rgba(0,0,0,0.8); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,0.08);
  color: #fff; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; width:48px; height:48px;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; transition:var(--transition); backdrop-filter:blur(8px);
}
.lightbox-close { top:24px; right:24px; }
.lightbox-prev { left:24px; top:50%; transform:translateY(-50%); }
.lightbox-next { right:24px; top:50%; transform:translateY(-50%); }
.lightbox-close:hover,.lightbox-prev:hover,.lightbox-next:hover { background:var(--gold); color:var(--black); border-color:var(--gold); }

/* ==================== TRAINING CARDS ==================== */
.training { background: var(--bg-main); }
.training-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.training-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.training-card::before {
  content: '';
  position: absolute; bottom:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: transform 0.4s ease;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.training-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,146,42,0.03), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.training-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-gold); border-color: var(--border-gold); }
.training-card:hover::before { transform: scaleX(1); }
.training-card:hover::after { opacity: 1; }
.training-icon { font-size: 2.8rem; margin-bottom: 18px; transition: transform 0.3s ease; }
.training-card:hover .training-icon { transform: scale(1.15) rotate(-5deg); }
.training-card h3 { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 2px; color: var(--text-primary); margin-bottom: 12px; }
.training-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }
.training-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--charcoal), var(--dark-card));
  color: var(--gold-bright); font-family: var(--font-accent);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
}

/* ==================== GYM EXPERIENCE ==================== */
.gym-experience { background: var(--bg-alt); }
.experience-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.experience-text p { color: var(--text-muted); line-height: 1.9; font-size: 1rem; margin: 20px 0 24px; }
.experience-text .section-title { color: var(--text-primary); }
.experience-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.exp-feat {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); padding: 12px 14px;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.exp-feat:hover { border-color: var(--border-gold); box-shadow: var(--shadow-md); transform: translateX(2px); }
.exp-feat i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.exp-feat span { font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); }
.experience-images { display: flex; flex-direction: column; gap: 12px; height: 520px; }
.exp-img { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.exp-img-main { flex: 1; }
.exp-img-secondary { height: 180px; flex-shrink: 0; }
.exp-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.exp-img:hover img { transform:scale(1.04); }

/* ==================== REVIEWS ==================== */
.reviews { background: var(--bg-main); }
.reviews-swiper { padding-bottom: 56px !important; }
.swiper-slide { height: auto; }
.review-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  height: 100%; display: flex; flex-direction: column; gap: 18px;
  transition: var(--transition);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.review-card::before {
  content: '"';
  position: absolute; top: 12px; right: 20px;
  font-family: Georgia, serif; font-size: 7rem; line-height: 1;
  color: var(--gold); opacity: 0.06; pointer-events: none;
}
.review-card:hover { border-color: var(--border-gold); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.review-stars { display: flex; gap: 3px; }
.review-stars i { color: var(--gold); font-size: 0.95rem; }
.review-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.85; flex: 1; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--border-light); padding-top: 18px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; color: #fff; flex-shrink: 0;
}
.review-author div { display: flex; flex-direction: column; gap: 3px; }
.review-author strong { font-weight: 700; font-size: 0.92rem; color: var(--text-primary); }
.review-author span { font-size: 0.78rem; color: var(--gold); font-family: var(--font-accent); letter-spacing: 1px; }
.reviews-pagination .swiper-pagination-bullet { background: rgba(0,0,0,0.2); opacity: 1; width: 8px; height: 8px; transition: var(--transition); }
.reviews-pagination .swiper-pagination-bullet-active { background: var(--gold); width: 26px; border-radius: 4px; }

/* ==================== LOCATION ==================== */
.location { background: var(--bg-alt); }
.location-grid { display: grid; grid-template-columns: 360px 1fr; gap: 32px; align-items: stretch; }
.location-info { display: flex; flex-direction: column; gap: 12px; }
.location-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); padding: 18px;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.location-card:hover { border-color: var(--border-gold); transform: translateX(3px); }
.location-icon-wrap { width: 42px; height: 42px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.location-icon-wrap i { color: #fff; font-size: 1rem; }
.location-card h4 { font-family: var(--font-accent); font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.location-card p, .location-card p a { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.location-card a:hover { color: var(--gold); }
.directions-btn { margin-top: 4px; justify-content: center; }
.map-wrap { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-medium); box-shadow: var(--shadow-md); min-height: 420px; }
.map-wrap iframe { display: block; }

/* ==================== CONTACT ==================== */
.contact { background: var(--bg-main); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-block, .contact-form-block {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.contact-info-block h3, .contact-form-block h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  letter-spacing: 2px; margin-bottom: 28px; color: var(--text-primary);
  padding-bottom: 16px; border-bottom: 2px solid var(--gold);
}
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border-light); }
.contact-item:last-of-type { border-bottom: none; }
.contact-icon { width: 42px; height: 42px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon i { color: #fff; font-size: 1rem; }
.contact-item label { display: block; font-family: var(--font-accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.contact-item a, .contact-item span { font-size: 0.92rem; color: var(--text-secondary); }
.contact-item a:hover { color: var(--gold); }
.hours-grid { display: grid; grid-template-columns: 1fr auto; gap: 5px 20px; font-size: 0.88rem; color: var(--text-secondary); margin-top: 4px; }
.gold-text { color: var(--gold-dark) !important; font-weight: 600; }
.red-text { color: var(--red-accent) !important; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { position: relative; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--bg-alt);
  border: 1px solid var(--border-medium); border-radius: var(--radius-sm);
  padding: 13px 16px; color: var(--text-primary);
  font-family: var(--font-body); font-size: 0.93rem; outline: none;
  transition: var(--transition); -webkit-appearance: none;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8922a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
  background-color: var(--bg-alt);
}
.form-group select option { background: #fff; color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 3px rgba(184,146,42,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }

/* ==================== FOOTER ==================== */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.85); }
.footer-top-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 40px; padding: 72px 0 56px; }
.footer-logo { width: 72px; height: 72px; object-fit: contain; margin-bottom: 18px; filter: drop-shadow(0 0 8px rgba(184,146,42,0.3)); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.9; margin-bottom: 24px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover { transform: translateY(-2px); }
.fsocial-instagram:hover { background: linear-gradient(135deg, #833ab4, #fd1d1d); border-color: transparent; color: #fff !important; }
.fsocial-youtube:hover { background: #ff0000; border-color: transparent; color: #fff !important; }
.fsocial-whatsapp:hover { background: linear-gradient(135deg, #128c7e, #25d366); border-color: transparent; color: #fff !important; }
.fsocial-phone:hover { background: var(--gold); border-color: transparent; color: #fff !important; }

.footer-nav h4, .footer-contact-info h4, .footer-hours-block h4 {
  font-family: var(--font-accent); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px;
}
.footer-nav ul, .footer-contact-info ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-nav a:hover { color: var(--gold); transform: translateX(3px); display: inline-block; }
.footer-contact-info li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-info li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-info a, .footer-contact-info span { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-contact-info a:hover { color: var(--gold); }
.footer-hours { display: flex; flex-direction: column; gap: 10px; }
.footer-hours li { display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; color: rgba(255,255,255,0.55); padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-hours li:last-child { border-bottom: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom strong { color: var(--gold); }

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 900;
  width: 62px; height: 62px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.wa-icon-wrap {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #128c7e, #25d366);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15);
  position: relative; z-index: 2;
  transition: var(--transition);
}
.whatsapp-float:hover .wa-icon-wrap { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
.wa-pulse-ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-out infinite;
}
.wa-pulse-ring-2 { animation-delay: 1.25s; }
@keyframes waPulse { 0%{transform:scale(1);opacity:.8;} 70%{transform:scale(1.75);opacity:0;} 100%{transform:scale(1.75);opacity:0;} }

.whatsapp-tooltip {
  position: absolute; right: 72px; top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(18,140,126,0.95); color: #fff;
  padding: 8px 16px; border-radius: 6px;
  font-family: var(--font-accent); font-size: 0.82rem; font-weight: 600;
  white-space: nowrap; opacity: 0; visibility: hidden;
  transition: var(--transition); pointer-events: none;
  backdrop-filter: blur(8px);
}
.whatsapp-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-right: none; border-left-color: rgba(18,140,126,0.95);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
  position: fixed; bottom: 104px; right: 30px; z-index: 900;
  width: 44px; height: 44px;
  background: #fff; border: 1px solid var(--border-gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.95rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity:1; visibility:visible; transform:translateY(0); }
.scroll-top:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #fff; border-color: transparent; transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* ==================== FORM TOAST ==================== */
.form-toast {
  position: fixed; bottom: 40px; left: 50%;
  transform: translateX(-50%) translateY(70px);
  background: var(--charcoal); border: 1px solid var(--border-gold);
  border-radius: 8px; padding: 14px 28px;
  color: var(--gold-bright); font-family: var(--font-accent);
  font-weight: 600; letter-spacing: 1px;
  z-index: 9999; opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  white-space: nowrap; backdrop-filter: blur(16px);
}
.form-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 360px 1fr; gap: 80px; }
  .badge-1, .badge-2, .badge-3 { right: -16px; min-width: 160px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .training-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .badge-1 { top: auto; bottom: -24px; right: auto; left: 50%; transform: translateX(-50%); }
  .badge-2 { display: none; }
  .badge-3 { display: none; }
  .fighter-img-frame img { height: 420px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item.large { grid-column: span 2; aspect-ratio: 16/9; }
  .experience-split { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero-headline { font-size: clamp(3rem, 14vw, 5.5rem); }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-logo-brand { display: none; }
  .training-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; aspect-ratio: 4/3; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-block, .contact-form-block { padding: 28px 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .experience-features { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 24px; right: 22px; }
  .scroll-top { bottom: 96px; right: 22px; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.3rem); }
  .btn-call-now { max-width: 100%; }
  .about-name-block { flex-direction: column; align-items: flex-start; }
}
