/* ==========================================
   STUDIO VITALITE - MAIN STYLES
   Modern & Dynamic Fitness Studio Design
   ========================================== */

/* ==========================================
   CSS VARIABLES & ROOT CONFIGURATION
   ========================================== */
:root {
  /* Colors - Dark Blue & Gold Palette */
  --primary-dark: #2f333e;      /* Main Dark Color */
  --primary-blue: #2f333e;      /* Dark Blue */
  --secondary-blue: #2d4a7b;    /* Medium Blue */
  --accent-gold: #cd9b60;       /* Main Gold */
  --bright-gold: #cd9b60;       /* Bright Gold */
  --light-gold: #e8d4b0;       /* Light Gold */
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--bright-gold) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(26, 40, 82, 0.8) 100%);
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-display: 'Oswald', sans-serif;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 100px 0;
  --element-spacing: 2rem;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-smooth: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Shadows */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 5px 25px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 10px 50px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 5px 25px rgba(212, 175, 55, 0.3);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition-fast);
}

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

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.gold {
  color: var(--accent-gold);
}

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

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ==========================================
   LOADING SCREEN
   ========================================== */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: var(--white);
}

/* Energy Bar Loader */
.energy-loader {
  width: min(680px, 92%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--white);
}

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

.energy-header .logo-text {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.energy-caption {
  font-size: 0.95rem;
  opacity: 0.9;
}

.energy-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  opacity: 0.9;
}

.energy-labels .label-left {
  color: rgba(255,255,255,0.75);
}

.energy-labels .label-right {
  color: var(--light-gold);
}

.energy-bar {
  position: relative;
  width: 100%;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 8px 30px rgba(0,0,0,0.25);
}

.energy-track {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #7a828e 0%, #4b5563 40%, #1f2937 100%);
}

.energy-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, #b48a58 0%, #cd9b60 55%, #ffd280 100%);
  box-shadow: 0 0 18px rgba(205, 155, 96, 0.55);
}

.energy-glow {
  position: absolute;
  right: -12px;
  top: -6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #ffe6b8 40%, rgba(255, 230, 184, 0) 70%);
  filter: blur(0.5px);
}

.energy-meter {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--light-gold);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.power-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.power-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.power-dots {
  display: flex;
  gap: 0.5rem;
}

.power-dots .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: powerPulse 1.5s infinite;
}

.power-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.power-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

.loading-bar {
  width: 350px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 10px rgba(205, 155, 96, 0.3);
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, 
    var(--accent-gold) 0%, 
    #ffd700 50%, 
    var(--accent-gold) 100%);
  width: 0%;
  animation: powerLoadingProgress 2.5s ease-in-out;
  position: relative;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.power-spark {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: powerSpark 2.5s ease-in-out;
  box-shadow: 0 0 20px #fff, 0 0 30px var(--accent-gold);
}

.power-meter {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-shadow: 0 0 10px var(--accent-gold);
}

.power-level {
  animation: powerCount 2.5s ease-in-out;
}

@keyframes powerPulse {
  0%, 100% { 
    transform: scale(1); 
    opacity: 1; 
  }
  50% { 
    transform: scale(1.3); 
    opacity: 0.7; 
  }
}

@keyframes powerLoadingProgress {
  0% { width: 0%; }
  70% { width: 85%; }
  85% { width: 90%; }
  95% { width: 98%; }
  100% { width: 100%; }
}

@keyframes powerSpark {
  0% { opacity: 0; right: -2px; }
  50% { opacity: 1; right: 50%; }
  100% { opacity: 0; right: 95%; }
}

@keyframes powerCount {
  0% { content: "0%"; }
  10% { content: "10%"; }
  20% { content: "25%"; }
  30% { content: "40%"; }
  40% { content: "55%"; }
  50% { content: "70%"; }
  60% { content: "80%"; }
  70% { content: "85%"; }
  80% { content: "90%"; }
  90% { content: "95%"; }
  95% { content: "98%"; }
  100% { content: "100%"; }
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(47, 51, 62, 0.04);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  transition: all 0.35s ease;
  padding: 0;
  border-bottom: 1px solid rgba(205, 155, 96, 0.06);
  box-shadow: none;
}

.navbar::before {
  display: none;
}

.navbar:hover,
.navbar.scrolled {
  background: rgba(47, 51, 62, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(205, 155, 96, 0.22);
}

.navbar.navbar-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.navbar.navbar-visible {
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  position: relative;
}

.nav-logo {
  position: relative;
}

.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: color 0.25s ease;
}

.nav-logo::before {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-link {
  color: var(--accent-gold);
  font-weight: 500;
  padding: 12px 14px;
  position: relative;
  transition: color 0.25s ease;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  height: 2px;
  width: 100%;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--bright-gold);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--accent-gold);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}



.cta-button {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e8b366 100%);
  color: var(--primary-dark);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(205, 155, 96, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(205, 155, 96, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1001;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(205, 155, 96, 0.1);
}

.hamburger:hover {
  background: rgba(205, 155, 96, 0.15);
  border-color: rgba(205, 155, 96, 0.3);
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(205, 155, 96, 0.2);
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 4px;
  transform-origin: center;
  position: relative;
}

.hamburger span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hamburger:hover span::before {
  opacity: 1;
  animation: shimmer 0.8s ease-in-out;
}

.hamburger.active {
  background: rgba(205, 155, 96, 0.2);
  border-color: var(--accent-gold);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--accent-gold);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0) rotate(180deg);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--accent-gold);
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: -2;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/anasayfa.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
  animation: heroFadeIn 1s ease-out;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.hero-line {
  display: block;
  animation: slideInFromLeft 0.8s ease-out;
}

.hero-line:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-line:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-line:nth-child(4) {
  animation-delay: 0.6s;
}

/* Stair Step Animation - Sports Themed */
.stair-animation {
  perspective: 1000px;
}

.stair-step {
  display: block;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.stair-step[data-step="1"] {
  animation: stairClimb 1s ease-out 0.5s forwards, 
             powerPunch 0.3s ease-out 1.5s;
  transform: translateX(-100px) translateY(50px) rotateY(-15deg);
}

.stair-step[data-step="2"] {
  animation: stairClimb 1s ease-out 0.8s forwards, 
             powerPunch 0.3s ease-out 1.8s;
  transform: translateX(-80px) translateY(30px) rotateY(-10deg);
  margin-left: 2rem;
}

.stair-step[data-step="3"] {
  animation: stairClimb 1s ease-out 1.1s forwards, 
             powerPunch 0.3s ease-out 2.1s;
  transform: translateX(-60px) translateY(10px) rotateY(-5deg);
  margin-left: 4rem;
}

.stair-step[data-step="4"] {
  animation: stairClimb 1s ease-out 1.4s forwards, 
             powerPunch 0.3s ease-out 2.4s;
  transform: translateX(-40px) translateY(-10px) rotateY(0deg);
  margin-left: 6rem;
}

/* Sports-themed animations */
@keyframes stairClimb {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(50px) rotateY(-20deg);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-20px) translateY(10px) rotateY(-5deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotateY(0deg);
  }
}

@keyframes powerPunch {
  0% { 
    transform: scale(1); 
    text-shadow: 0 0 10px var(--accent-gold);
  }
  50% { 
    transform: scale(1.05); 
    text-shadow: 0 0 25px var(--accent-gold), 0 0 35px rgba(255, 215, 0, 0.5);
  }
  100% { 
    transform: scale(1); 
    text-shadow: 0 0 10px var(--accent-gold);
  }
}

/* Add energy effect to gold text */
.stair-step.gold {
  position: relative;
}

.stair-step.gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, var(--accent-gold) 50%, transparent 70%);
  opacity: 0;
  animation: energyFlash 0.8s ease-out 2s;
  z-index: -1;
}

@keyframes energyFlash {
  0% { 
    opacity: 0; 
    transform: translateX(-100%); 
  }
  50% { 
    opacity: 0.3; 
    transform: translateX(0%); 
  }
  100% { 
    opacity: 0; 
    transform: translateX(100%); 
  }
}

/* ==========================================
   CREATIVE SHAPE EFFECTS FOR TEXT
   ========================================== */
.creative-shapes {
  perspective: 1500px;
  transform-style: preserve-3d;
}

.letter-shape {
  display: inline-block;
  position: relative;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center;
  opacity: 0;
  animation: letterReveal 0.8s ease-out forwards;
}

.letter-shape:nth-child(1) { animation-delay: 0.1s; }
.letter-shape:nth-child(2) { animation-delay: 0.15s; }
.letter-shape:nth-child(3) { animation-delay: 0.2s; }
.letter-shape:nth-child(4) { animation-delay: 0.25s; }
.letter-shape:nth-child(5) { animation-delay: 0.3s; }
.letter-shape:nth-child(6) { animation-delay: 0.35s; }
.letter-shape:nth-child(7) { animation-delay: 0.4s; }
.letter-shape:nth-child(8) { animation-delay: 0.45s; }
.letter-shape:nth-child(9) { animation-delay: 0.5s; }
.letter-shape:nth-child(10) { animation-delay: 0.55s; }

/* Wave Shape - First Line */
.shape-wave .letter-shape {
  animation: letterReveal 0.8s ease-out forwards, waveMotion 2s ease-in-out infinite;
}

.shape-wave .letter-shape:nth-child(odd) {
  animation-delay: 0.6s, 2s;
}

.shape-wave .letter-shape:nth-child(even) {
  animation-delay: 0.8s, 2.2s;
}

/* Arch Shape - Second Line (Golden) */
.shape-arch {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.shape-arch .word-wrapper {
  display: flex;
  align-items: flex-end;
}

.shape-arch .letter-shape {
  animation: letterReveal 0.8s ease-out forwards, archBounce 2.5s ease-in-out infinite;
}

.shape-arch .letter-shape:nth-child(1),
.shape-arch .letter-shape:nth-child(10) {
  transform: translateY(20px) scale(0.9);
}

.shape-arch .letter-shape:nth-child(2),
.shape-arch .letter-shape:nth-child(9) {
  transform: translateY(10px) scale(0.95);
}

.shape-arch .letter-shape:nth-child(3),
.shape-arch .letter-shape:nth-child(8) {
  transform: translateY(5px) scale(0.98);
}

.shape-arch .letter-shape:nth-child(4),
.shape-arch .letter-shape:nth-child(7) {
  transform: translateY(2px) scale(0.99);
}

.shape-arch .letter-shape:nth-child(5),
.shape-arch .letter-shape:nth-child(6) {
  transform: translateY(0px) scale(1.1);
}

/* Glow Effect for Golden Letters */
.glow-letter {
  text-shadow: 
    0 0 3px var(--accent-gold),
    0 0 6px rgba(205, 155, 96, 0.6),
    0 0 9px rgba(205, 155, 96, 0.4),
    0 0 12px rgba(255, 215, 0, 0.3);
  animation: letterReveal 0.8s ease-out forwards, glowPulse 2s ease-in-out infinite;
}

/* Zigzag Shape - Third Line */
.shape-zigzag .letter-shape {
  animation: letterReveal 0.8s ease-out forwards, zigzagDance 3s ease-in-out infinite;
}

.shape-zigzag .letter-shape:nth-child(odd) {
  transform: translateY(-15px) rotateZ(5deg);
  animation-delay: 1.2s, 3s;
}

.shape-zigzag .letter-shape:nth-child(even) {
  transform: translateY(15px) rotateZ(-5deg);
  animation-delay: 1.4s, 3.2s;
}

/* Diamond Shape - Fourth Line */
.shape-diamond {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.shape-diamond .letter-shape {
  animation: letterReveal 0.8s ease-out forwards, diamondSpin 4s ease-in-out infinite;
}

.shape-diamond .letter-shape:nth-child(1) { transform: translateY(-20px) translateX(-40px) rotateY(15deg); }
.shape-diamond .letter-shape:nth-child(2) { transform: translateY(-15px) translateX(-20px) rotateY(10deg); }
.shape-diamond .letter-shape:nth-child(3) { transform: translateY(-10px) translateX(-10px) rotateY(5deg); }
.shape-diamond .letter-shape:nth-child(4) { transform: translateY(-5px) translateX(-5px) rotateY(2deg); }
.shape-diamond .letter-shape:nth-child(5) { transform: translateY(0px) translateX(0px) rotateY(0deg) scale(1.2); }
.shape-diamond .letter-shape:nth-child(6) { transform: translateY(0px) translateX(0px) rotateY(0deg) scale(1.2); }
.shape-diamond .letter-shape:nth-child(7) { transform: translateY(-5px) translateX(5px) rotateY(-2deg); }
.shape-diamond .letter-shape:nth-child(8) { transform: translateY(-10px) translateX(10px) rotateY(-5deg); }
.shape-diamond .letter-shape:nth-child(9) { transform: translateY(-15px) translateX(20px) rotateY(-10deg); }
.shape-diamond .letter-shape:nth-child(10) { transform: translateY(-20px) translateX(40px) rotateY(-15deg); }

/* Animation Keyframes */
@keyframes letterReveal {
  0% {
    opacity: 0;
    transform: scale(0) rotateY(180deg);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2) rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
}

@keyframes waveMotion {
  0%, 100% {
    transform: translateY(0px) rotateZ(0deg);
  }
  25% {
    transform: translateY(-8px) rotateZ(2deg);
  }
  75% {
    transform: translateY(8px) rotateZ(-2deg);
  }
}

@keyframes archBounce {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 
      0 0 3px var(--accent-gold),
      0 0 6px rgba(205, 155, 96, 0.6),
      0 0 9px rgba(205, 155, 96, 0.4),
      0 0 12px rgba(255, 215, 0, 0.3);
  }
  50% {
    text-shadow: 
      0 0 5px var(--accent-gold),
      0 0 10px rgba(205, 155, 96, 0.7),
      0 0 15px rgba(205, 155, 96, 0.5),
      0 0 20px rgba(255, 215, 0, 0.4);
  }
}

@keyframes zigzagDance {
  0%, 100% {
    transform: translateY(0px) rotateZ(0deg);
  }
  33% {
    transform: translateY(-10px) rotateZ(3deg);
  }
  66% {
    transform: translateY(10px) rotateZ(-3deg);
  }
}

@keyframes diamondSpin {
  0%, 100% {
    transform: rotateY(0deg) rotateZ(0deg);
  }
  25% {
    transform: rotateY(5deg) rotateZ(1deg);
  }
  50% {
    transform: rotateY(0deg) rotateZ(0deg) scale(1.05);
  }
  75% {
    transform: rotateY(-5deg) rotateZ(-1deg);
  }
}

/* Interactive Hover Effects */
.letter-shape:hover {
  transform: scale(1.3) rotateY(15deg) rotateZ(5deg);
  color: var(--accent-gold);
  text-shadow: 
    0 0 10px var(--accent-gold),
    0 0 20px var(--accent-gold);
  cursor: pointer;
}

.glow-letter:hover {
  transform: scale(1.3) rotateY(15deg) rotateZ(5deg);
  text-shadow: 
    0 0 8px var(--accent-gold),
    0 0 15px rgba(205, 155, 96, 0.8),
    0 0 20px rgba(205, 155, 96, 0.6),
    0 0 25px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1s both;
}

.cta-primary {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.cta-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition-smooth);
}

.cta-secondary:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
  padding: 70px 0;
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold);
  opacity: 0.05;
  transition: left var(--transition-smooth);
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--gradient-gold);
  transform: scale(1.1);
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-card:hover .service-icon i {
  color: var(--primary-dark);
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--dark-gray);
  position: relative;
}

.service-features li::before {
  content: '✓';
  color: var(--accent-gold);
  font-weight: bold;
  margin-right: 0.8rem;
}

.service-cta {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
  width: 100%;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  padding: 60px 0;
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(212,175,55,0.1)"/></svg>') repeat;
  animation: moveBackground 20s linear infinite;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-content {
  position: relative;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  margin: 1.5rem 0;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-gold);
  transform: translateY(-3px);
}

.social-link i {
  font-size: 1.2rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(205, 155, 96, 0.2);
  display: inline-block;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.footer-column a:hover {
  color: var(--accent-gold);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.contact-item span,
.contact-item a {
  flex: 1;
  text-align: left;
  word-wrap: break-word;
}

.contact-item i {
  color: var(--accent-gold);
  width: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.contact-item a:hover {
  color: var(--accent-gold);
}

.location-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.location-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

.location-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.location-btn.google:hover {
  background: #4285f4;
  color: white;
}

.location-btn.yandex:hover {
  background: #ffcc00;
  color: black;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Small attribution text next to copyright */
.site-credit {
  font-size: 0.85em;
  opacity: 0.8;
  margin-left: 10px;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-cta:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.footer-cta.primary {
  background: var(--gradient-gold);
  color: var(--primary-dark);
}

.footer-cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ==========================================
   MODAL STYLES
   ========================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-heavy);
  text-align: center;
}

.modal-content h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition-fast);
}

.close:hover {
  color: var(--primary-dark);
}

.location-info p {
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.location-description {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.map-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 15px 20px;
  border-radius: 12px;
  transition: var(--transition-fast);
  font-weight: 500;
  text-decoration: none;
}

.map-button.google {
  background: #4285f4;
  color: white;
}

.map-button.google:hover {
  background: #3367d6;
  transform: translateY(-2px);
}

.map-button.yandex {
  background: #ffcc00;
  color: black;
}

.map-button.yandex:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

.map-button.whatsapp {
  background: #25d366;
  color: white;
}

.map-button.whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

/* ==========================================
   PAGE HEADER STYLES
   ========================================== */
.page-header {
  padding: 120px 0 80px;
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.1)"/></svg>') repeat;
  animation: moveBackground 30s linear infinite;
  z-index: 0;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-header p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: var(--white);
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

/* ==========================================
   BOOKING SECTION STYLES
   ========================================== */
.booking-section {
  padding: var(--section-padding);
  background: var(--light-gray);
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.info-icon i {
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.info-card p {
  color: var(--gray);
  line-height: 1.6;
}

.contact-info {
  background: var(--primary-dark);
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.contact-info h4 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.phone-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.contact-info p {
  opacity: 0.8;
  line-height: 1.6;
}

/* ==========================================
   BOOKING FORM STYLES
   ========================================== */
.booking-form-container {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

.booking-form h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.form-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--white);
  color: var(--dark-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  line-height: 1.5;
  font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e1e5e9;
  border-radius: 4px;
  background: var(--white);
  position: relative;
  transition: var(--transition-fast);
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-dark);
  font-weight: bold;
  font-size: 12px;
}

.privacy-link {
  color: var(--accent-gold);
  text-decoration: underline;
}

.privacy-link:hover {
  color: var(--primary-dark);
}

.submit-btn {
  width: 100%;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  border: none;
  padding: 18px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.form-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-note i {
  color: var(--accent-gold);
}

/* ==========================================
   SUCCESS MODAL STYLES
   ========================================== */
.success-modal {
  text-align: center;
  max-width: 400px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon i {
  font-size: 2rem;
  color: white;
}

.success-modal h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.success-modal p {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-btn {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ==========================================
   ABOUT SECTION STYLES
   ========================================== */
.about-section {
  padding: var(--section-padding);
  padding-top: 140px; /* Account for fixed navbar */
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-text .section-label {
  margin-bottom: 1.5rem;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 2rem;
}

.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid var(--accent-gold);
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

/* ==========================================
   DETAILED SERVICES (ANTRENMANLAR) STYLES
   ========================================== */
.detailed-services {
    padding: var(--section-padding);
    padding-top: 140px; /* Account for fixed navbar */
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-item.reverse .service-image {
    order: 2;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    object-fit: cover;
}

.service-text .service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-text .service-icon i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.service-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-text {
    /* Fixed label column width so non-bold descriptions align */
    --label-col-width: 18ch;
}

.service-text p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-text ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.service-text ul li i {
    color: var(--accent-gold);
    margin-top: 5px;
    width: 1.25rem; /* fixed icon column for alignment */
    flex: 0 0 1.25rem;
    text-align: center;
}

/* Keep bold labels in a fixed-width column so descriptions start at same x position */
.service-text ul li strong {
    display: inline-block;
    flex: 0 0 var(--label-col-width);
    max-width: var(--label-col-width);
}

/* ==========================================
   TRAINERS (EĞİTMENLER) STYLES
   ========================================== */
.trainers-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.trainer-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-smooth);
    text-align: center;
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.trainer-image {
    position: relative;
    overflow: hidden;
}

.trainer-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.trainer-card:hover .trainer-image img {
    transform: scale(1.05);
}

.trainer-social {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    background: rgba(47, 51, 62, 0.9);
    padding: 10px 20px;
    border-radius: 20px 20px 0 0;
    transition: bottom var(--transition-fast);
}

.trainer-card:hover .trainer-social {
    bottom: 0;
}

.trainer-social a {
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.trainer-social a:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.trainer-info {
    padding: 1.5rem;
}

.trainer-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.trainer-info span {
    color: var(--accent-gold);
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.trainer-info p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   GALLERY (GALERİ) - YENI TASARIM
   ========================================== */
.gallery-section {
    padding: var(--section-padding);
    padding-top: 140px; /* Account for fixed navbar */
}

/* Ana galeri container - 16:9 üstte, 1:1 altta organize edilmiş */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Temel galeri öğesi */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    background: var(--white);
    transition: all var(--transition-smooth);
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    transition: transform var(--transition-smooth);
    display: block;
    object-fit: cover;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 51, 62, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

/* 16:9 landscape görseller - üst sırada */
.gallery-item.landscape { grid-column: span 2; aspect-ratio: 16 / 9; }

/* 1:1 kare görseller - alt sırada */
.gallery-item.square { grid-column: span 1; aspect-ratio: 1 / 1; }

/* Özel büyük görseller */
.gallery-item.wide { grid-column: span 4; }

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

/* Tablet responsive */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item.landscape { grid-column: span 3; }
    
    .gallery-item.square { grid-column: span 1; }
    
    .gallery-item.wide { grid-column: span 3; }
    
    .gallery-item.tall { grid-row: span 1; }
}

/* Mobil responsive */
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item.landscape { grid-column: span 2; }
    
    .gallery-item.square { grid-column: span 1; }
    
    .gallery-item.wide { grid-column: span 2; }
    
    .gallery-item.tall { grid-row: span 1; }
}

/* Çok küçük mobil */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item,
    .gallery-item.landscape,
    .gallery-item.square,
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ==========================================
   CONTACT (İLETİŞİM) STYLES
   ========================================== */
.contact-section {
    padding: var(--section-padding);
    padding-top: 140px; /* Account for fixed navbar */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.contact-form-container .section-title,
.contact-info-container .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-form-container .section-subtitle {
    text-align: left;
    margin-left: 0;
    max-width: 100%;
    margin-bottom: 2.5rem;
}

.contact-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image-container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    max-height: 500px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    background: var(--light-gray);
    border: 2px solid var(--light-gray);
    padding: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray);
}

.contact-info-box {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-box .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-text h4 {
    font-family: var(--font-display);
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-text a {
    color: var(--accent-gold);
    font-weight: 500;
}

.contact-text a:hover {
    text-decoration: underline;
}

.map-section {
    padding: 0;
    line-height: 0; /* Remove space under iframe */
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
    max-width: 280px;
    border: 1px solid rgba(205, 155, 96, 0.2);
}

.location-marker {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.location-marker i {
    color: var(--accent-gold);
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

.map-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.map-btn.primary {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.map-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 155, 96, 0.4);
    background: linear-gradient(135deg, #e8b366 0%, var(--accent-gold) 100%);
}

.map-btn.secondary {
    background: #4285f4;
    color: white;
    border-color: #4285f4;
}

.map-btn.secondary:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.map-btn.yandex {
    background: #ffcc00;
    color: black;
    border-color: #ffcc00;
}

.map-btn.yandex:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Mobile responsiveness for map overlay */
@media (max-width: 768px) {
    .map-overlay {
        position: static;
        background: var(--white);
        border-radius: 0;
        margin: 10px 0 0 0;
        padding: 1.5rem;
        max-width: 100%;
        border: none;
        border-top: 3px solid var(--accent-gold);
    }
    
    .map-container {
        height: auto;
    }

    .map-container iframe {
        height: 320px;
        display: block;
    }
    
    .map-section .map-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .map-section .map-btn {
        flex: none;
        width: 100%;
        min-width: 100%;
        font-size: 0.95rem;
        padding: 12px 16px;
    }
}

/* Enhanced loading animation visuals */
#loading-screen .logo-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
}

#loading-screen .logo-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(205, 155, 96, 0.55), rgba(205, 155, 96, 0.12) 45%, transparent 55%);
  animation: spinRing 1.8s linear infinite;
  filter: blur(0.2px);
  mask: radial-gradient(circle at center, transparent 62%, black 63%);
}

#loading-screen .logo-container::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 14px rgba(205, 155, 96, 0.12);
}

#loading-screen .logo-text {
  position: relative;
  z-index: 1;
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

/* ==========================================
   FOUNDERS (KURUCU ORTAKLAR) STYLES
   ========================================== */
.founders-section {
    padding: var(--section-padding);
    background: var(--white);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.founder-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transition: left var(--transition-smooth);
}

.founder-card:hover::before {
    left: 0;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-gold);
}

.founder-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.founder-title {
    display: block;
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.founder-specialty {
    display: block;
    font-weight: 500;
    color: var(--secondary-blue);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.founder-info p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}