:root {
  color-scheme: dark;
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #141414;
  --bg-quaternary: #1e1e1e;
  --accent-pink: #ff1493;
  --accent-purple: #8a2be2;
  --accent-cyan: #00bfff;
  --accent-amber: #ffa500;
  --accent-green: #32cd32;
  --text-primary: #e0e0e0;
  --text-muted: rgba(224, 224, 224, 0.5);
  --text-accent: rgba(255, 20, 147, 0.8);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden; /* Yatay kaydırmayı engelle */
  width: 100%;
  max-width: 100vw;
}

.hero-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -10;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.15), transparent 70%),
    radial-gradient(circle at 80% 40%, rgba(255, 20, 147, 0.12), transparent 75%),
    radial-gradient(circle at 30% 75%, rgba(0, 191, 255, 0.1), transparent 80%),
    radial-gradient(circle at 70% 20%, rgba(50, 205, 50, 0.08), transparent 85%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 30%, var(--bg-tertiary) 60%, var(--bg-quaternary) 90%, var(--bg-primary) 100%);
  animation: gradientShift 30s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: screen;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.circle-1 {
  width: 600px; height: 600px; left: -200px; bottom: -180px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, rgba(138, 43, 226, 0) 70%);
  animation-delay: -2s;
}
.circle-2 {
  width: 400px; height: 400px; right: -150px; top: 100px;
  background: radial-gradient(circle, rgba(255, 20, 147, 0.18) 0%, rgba(255, 20, 147, 0) 70%);
  animation-delay: -4s;
}
.circle-3 {
  width: 280px; height: 280px; left: 45%; top: 5%;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.15) 0%, rgba(0, 191, 255, 0) 65%);
  animation-delay: -6s;
}

.bg-arc {
  position: absolute; width: 360px; height: 180px;
  border: 2px solid rgba(255, 20, 147, 0.15);
  border-bottom-color: transparent; border-left-color: transparent;
  border-radius: 50% 0 0 0; transform: rotate(-18deg); opacity: 0.6;
  animation: arcPulse 15s ease-in-out infinite;
}

@keyframes arcPulse {
  0%, 100% { border-color: rgba(255, 20, 147, 0.15); transform: rotate(-18deg) scale(1); opacity: 0.6; }
  25% { border-color: rgba(0, 191, 255, 0.18); transform: rotate(-18deg) scale(1.02); opacity: 0.7; }
  50% { border-color: rgba(138, 43, 226, 0.15); transform: rotate(-18deg) scale(1.01); opacity: 0.65; }
  75% { border-color: rgba(50, 205, 50, 0.12); transform: rotate(-18deg) scale(1.02); opacity: 0.6; }
}

.arc-left { left: 8%; bottom: 15%; }
.arc-right { right: 12%; top: 8%; transform: rotate(162deg); }

.bg-dots {
  position: absolute; width: 200px; height: 140px;
  background-image: radial-gradient(rgba(255, 20, 147, 0.12) 20%, transparent 0);
  background-size: 18px 18px; opacity: 0.5;
  animation: dotShimmer 12s ease-in-out infinite;
}

@keyframes dotShimmer {
  0%, 100% { background-image: radial-gradient(rgba(255, 20, 147, 0.12) 20%, transparent 0); opacity: 0.5; }
  25% { background-image: radial-gradient(rgba(0, 191, 255, 0.15) 20%, transparent 0); opacity: 0.55; }
  50% { background-image: radial-gradient(rgba(138, 43, 226, 0.12) 20%, transparent 0); opacity: 0.5; }
  75% { background-image: radial-gradient(rgba(50, 205, 50, 0.14) 20%, transparent 0); opacity: 0.52; }
}

.dots-left { left: 60px; top: 35%; }
.dots-right { right: 80px; bottom: 12%; }
.bg-lines { position: absolute; background: rgba(100, 100, 100, 0.03); opacity: 0.2; }
.line-vertical { width: 1px; height: 220px; right: 52px; top: 160px; background: linear-gradient(180deg, rgba(80, 60, 80, 0.06), rgba(80, 60, 80, 0)); }
.line-horizontal { height: 1px; width: 220px; left: 46%; bottom: 150px; background: linear-gradient(90deg, rgba(60, 80, 60, 0), rgba(60, 80, 60, 0.06), rgba(60, 80, 60, 0)); }

.floating-shape {
  position: absolute; width: 180px; height: 180px; border-radius: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(138, 43, 226, 0.15), transparent 70%);
  border: 1px solid rgba(255, 20, 147, 0.1); backdrop-filter: blur(8px);
  opacity: 0.4; animation: floatRotate 18s ease-in-out infinite;
}

@keyframes floatRotate {
  0%, 100% { transform: rotate(0deg) translateY(0); opacity: 0.4; background: radial-gradient(circle at 30% 30%, rgba(138, 43, 226, 0.15), transparent 70%); }
  25% { transform: rotate(45deg) translateY(-15px); opacity: 0.5; background: radial-gradient(circle at 30% 30%, rgba(0, 191, 255, 0.15), transparent 70%); }
  50% { transform: rotate(90deg) translateY(-25px); opacity: 0.45; background: radial-gradient(circle at 30% 30%, rgba(255, 20, 147, 0.15), transparent 70%); }
  75% { transform: rotate(135deg) translateY(-15px); opacity: 0.42; background: radial-gradient(circle at 30% 30%, rgba(50, 205, 50, 0.15), transparent 70%); }
}

.shape-left { left: 15%; top: 20%; animation-delay: -3s; }
.shape-right { right: 18%; bottom: 18%; animation-delay: -8s; }
.dance-text-elements { position: fixed; inset: 0; pointer-events: none; z-index: -5; overflow: hidden; }
.dance-text {
  position: absolute; font-family: 'Dancing Script', cursive; font-weight: 700;
  font-size: clamp(2rem, 6vw, 8rem); color: rgba(255, 255, 255, 0.15);
  text-transform: uppercase; letter-spacing: 0.1em; transform-origin: center;
  animation: danceTextFloat 15s ease-in-out infinite; transition: all 1s ease;
  text-shadow: 0 0 20px rgba(255, 20, 147, 0.15);
}

@keyframes danceTextFloat {
  0%, 100% { transform: rotate(-5deg) translateY(0) scale(1); opacity: 0.12; }
  50% { transform: rotate(5deg) translateY(-40px) scale(1.1); opacity: 0.20; }
}

.dance-text-1 { top: 10%; left: 3%; animation-delay: -2s; }
.dance-text-2 { top: 25%; right: 5%; animation-delay: -7s; }
.dance-text-3 { bottom: 30%; left: 8%; animation-delay: -12s; }
.dance-text-4 { top: 45%; right: 15%; animation-delay: -5s; }
.dance-text-5 { bottom: 15%; right: 3%; animation-delay: -10s; }
.dance-text-6 { top: 60%; left: 25%; animation-delay: -14s; }
.dance-text-7 { top: 75%; right: 35%; animation-delay: -3s; }
.dance-text-8 { bottom: 50%; left: 35%; animation-delay: -8s; }
.dance-text-9 { top: 35%; left: 15%; animation-delay: -11s; }
.dance-text-10 { bottom: 40%; right: 25%; animation-delay: -6s; }
.dance-text-11 { top: 80%; left: 45%; animation-delay: -13s; }
.dance-text-12 { bottom: 60%; right: 8%; animation-delay: -4s; }
.dance-text.visible { color: rgba(255, 20, 147, 0.18); text-shadow: 0 0 30px rgba(138, 43, 226, 0.25); }

/* Navbar styles moved to navbar.css */

/* ============================================= */
/* HERO BAR - Rotating Text                    */
/* ============================================= */

.hero-bar-container {
  position: relative;
  top: 180px;
  left: -20px;
  z-index: 0;
  animation: fadeIn 1.2s ease-out 0.5s backwards;
  width: fit-content;
}

.hero-bar-link {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-bar {
  position: relative;
  width: 360px;
  padding: 16px 28px 16px 50px;
  background: linear-gradient(135deg, 
    rgba(255, 20, 147, 0.15) 0%,
    rgba(138, 43, 226, 0.12) 50%,
    rgba(0, 191, 255, 0.08) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 
    0 8px 32px rgba(255, 20, 147, 0.2),
    0 4px 16px rgba(138, 43, 226, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.hero-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 20, 147, 0.4) 0%,
    rgba(138, 43, 226, 0.3) 50%,
    rgba(0, 191, 255, 0.2) 100%
  );
  border-radius: 18px;
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.8;
}

.hero-bar::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.hero-bar-link:hover .hero-bar {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 12px 40px rgba(255, 20, 147, 0.3),
    0 6px 20px rgba(138, 43, 226, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-bar-link:active .hero-bar {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 
    0 6px 20px rgba(255, 20, 147, 0.2),
    0 3px 10px rgba(138, 43, 226, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-bar-content {
  left: -30px;
  position: relative;
  z-index: 1;
  min-height: 28px;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero-bar-text {
  position: absolute;
  top: 0;
  left: 30px;
  right: 0;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ff1493, #8a2be2, #00bfff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  padding-left: 10px;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(20px);
  animation: gradient 3s ease infinite;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@keyframes gradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-bar-text.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-bar-text.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}

/* Decorative Elements */
.hero-bar::before {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.hero {
  top: 150px;
  display: grid; grid-template-columns: minmax(320px, 600px) minmax(400px, 650px);
  align-items: center; justify-content: space-between; gap: 80px;
  padding: 160px 80px 120px; max-width: 1400px; margin: 0 auto; position: relative;
}
.hero-left { left: 100px; position: relative; display: flex; flex-direction: column; gap: 40px; }
.dot-indicator {
  position: absolute; left: -80px; top: 40%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 20px; z-index: 10;
}
.slide-selector { display: flex; flex-direction: column; gap: 20px; }
.slide-dot { display: block; cursor: pointer; }
.slide-dot input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.dot-surface {
  position: relative; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: flex;
  align-items: center; justify-content: center; backdrop-filter: blur(10px);
}
.dot-surface::before {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 63, 174, 0.0) 0%, rgba(255, 63, 174, 0.1) 70%, transparent 100%);
  opacity: 0; transition: opacity 0.4s ease;
}
.dot-indicator-inner {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  transform: scale(0); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(255, 63, 174, 0.4);
}
.slide-dot input[type="radio"]:checked + .dot-surface, .slide-dot:hover .dot-surface {
  border-color: rgba(255, 63, 174, 0.6); background: rgba(255, 63, 174, 0.15);
  box-shadow: 0 0 20px rgba(255, 63, 174, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}
.slide-dot input[type="radio"]:checked + .dot-surface::before, .slide-dot:hover .dot-surface::before { opacity: 1; }
.slide-dot input[type="radio"]:checked + .dot-surface .dot-indicator-inner, .slide-dot:hover .dot-surface .dot-indicator-inner {
  transform: scale(1); box-shadow: 0 0 16px rgba(255, 63, 174, 0.6), 0 0 8px rgba(136, 80, 255, 0.4);
}

.hero-text-slider { position: relative; min-height: 200px; flex: 1; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease; pointer-events: none;
}
.hero-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hero-title { font-size: clamp(36px, 6vw, 64px); margin: 0 0 20px; font-family: 'Dancing Script', cursive; font-weight: 700; color: white; }
.hero-title .accent { background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple)); -webkit-background-clip: text; color: transparent; }
.hero-text { font-size: 16px; line-height: 1.8; color: var(--text-muted); margin-bottom: 28px; }
.hero-buttons-section { position: relative; margin-top: 50px; padding: 32px 0 20px; border-top: 1px solid rgba(255, 255, 255, 0.08); min-height: 80px; }
.hero-buttons-section::before { content: ''; position: absolute; top: 0; left: 0; width: 60px; height: 1px; background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple)); }
.hero-buttons {
  position: absolute; top: 32px; left: 0; right: 0; display: flex; gap: 20px;
  flex-wrap: wrap; align-items: center; opacity: 0; transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none;
}
.hero-buttons.active { opacity: 1; transform: translateY(0); pointer-events: auto; }

.btn { padding: 12px 28px; border-radius: 999px; text-decoration: none; font-weight: 600; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.btn.primary { background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple)); color: white; box-shadow: 0 12px 24px rgba(255, 63, 174, 0.35); }
.btn.primary:hover { transform: translateY(-2px); }
.btn.secondary { border: 1px solid rgba(255, 255, 255, 0.25); color: var(--text-primary); background: transparent; }
.btn.secondary:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.45); }

.hero-right { position: relative; right: 50px; display: flex; justify-content: center; align-items: center; }
.hero-image { position: relative; max-width: 480px; width: 100%; }
.hero-image img {
      position: relative;
    bottom: 250px;
  display: block; width: 650px; height: auto; border-radius: 24px;
  filter: drop-shadow(0 20px 40px rgba(255, 63, 174, 0.25)) drop-shadow(0 10px 20px rgba(136, 80, 255, 0.2)) drop-shadow(0 0 60px rgba(53, 210, 255, 0.15));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-image:hover img {
  filter: drop-shadow(0 30px 60px rgba(255, 63, 174, 0.35)) drop-shadow(0 15px 30px rgba(136, 80, 255, 0.3)) drop-shadow(0 0 80px rgba(53, 210, 255, 0.25));
  transform: scale(1.02) translateY(-5px);
}
.content { max-width: 960px; margin: 60px auto 120px; padding: 0 60px; line-height: 1.8; color: rgba(238, 233, 255, 0.9); }

/* ============================================= */
/* CAMPAIGN SECTION - MINIMAL SLIDER            */
/* ============================================= */

.campaign-section {
  top: 150px;
  padding: 60px 0;
  background: linear-gradient(135deg, 
    #16213e 0%,
    #1a0a2e 50%,
    #0f3460 100%
  );
  position: relative;
  overflow: hidden;
}

.campaign-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.campaign-header {
  text-align: center;
  margin-bottom: 50px;
}

.campaign-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.campaign-slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.campaign-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.campaign-slide.active {
  display: block;
  opacity: 1;
}

.campaign-slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
}

.campaign-image-container {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff1493, #8a2be2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.campaign-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.campaign-slide:hover .campaign-slide-image {
  transform: scale(1.05);
}

.campaign-slide-info {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
}

.campaign-slide-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ff1493, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.campaign-slide-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 30px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.campaign-slide-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, 
    #ff1493 0%, 
    #d91b91 25%,
    #8a2be2 75%,
    #6a1fc4 100%
  );
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 
    0 8px 30px rgba(255, 20, 147, 0.45),
    0 0 0 0 rgba(255, 20, 147, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: fit-content;
}

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

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

.campaign-slide-button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 
    0 15px 50px rgba(255, 20, 147, 0.6),
    0 0 60px rgba(138, 43, 226, 0.4),
    0 0 0 6px rgba(255, 20, 147, 0.2),
    inset 0 1px 3px rgba(255, 255, 255, 0.4),
    inset 0 -2px 6px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.campaign-slide-button:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 
    0 8px 25px rgba(255, 20, 147, 0.5),
    0 0 40px rgba(138, 43, 226, 0.3),
    0 0 0 4px rgba(255, 20, 147, 0.15),
    inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.campaign-slide-button .button-icon {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.campaign-slide-button:hover .button-icon {
  transform: translateX(6px) scale(1.1);
}

/* Slider Controls - Ultra Modern Premium Design */
.campaign-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 80px;
  bottom: 32px;
  position: relative;
  z-index: 10;
}

.slider-prev,
.slider-next {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(30px) saturate(1.5);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10001;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.15),
    0 0 0 0 rgba(255, 20, 147, 0),
    inset 0 1px 2px rgba(255, 255, 255, 0.25);
}

.slider-prev::before,
.slider-next::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, 
    rgba(255, 20, 147, 0.8) 0%, 
    rgba(138, 43, 226, 0.8) 50%, 
    rgba(0, 191, 255, 0.8) 100%
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  filter: blur(12px);
}

.slider-prev::after,
.slider-next::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slider-prev:hover,
.slider-next:hover {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border-color: rgba(255, 20, 147, 0.5);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 15px 35px rgba(255, 20, 147, 0.3),
    0 0 25px rgba(255, 20, 147, 0.2),
    0 0 0 3px rgba(255, 20, 147, 0.12),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.slider-prev:hover::before,
.slider-next:hover::before {
  opacity: 1;
}

.slider-prev:hover::after,
.slider-next:hover::after {
  opacity: 1;
}

.slider-prev:active,
.slider-next:active {
  transform: translateY(-1px) scale(1.02);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  box-shadow: 
    0 10px 30px rgba(255, 20, 147, 0.25),
    0 0 0 4px rgba(255, 20, 147, 0.2),
    inset 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Premium Dots Container with Glassmorphism */
.slider-dots {
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 10000;
  padding: 10px 20px;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  backdrop-filter: blur(40px) saturate(1.8);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    inset 0 -1px 2px rgba(0, 0, 0, 0.05);
}

/* Elegant Dot Indicators with Pulse Effect */
.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 10001;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.slider-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, 
    rgba(255, 20, 147, 0.6) 0%, 
    rgba(138, 43, 226, 0.4) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: all 0.5s ease;
  filter: blur(8px);
  z-index: -1;
}

.slider-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, 
    #ff1493 0%, 
    #8a2be2 100%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 
    0 0 10px rgba(255, 20, 147, 0.8),
    0 0 20px rgba(138, 43, 226, 0.5);
}

.slider-dot.active {
  width: 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, 
    rgba(255, 20, 147, 0.4) 0%,
    rgba(138, 43, 226, 0.35) 50%,
    rgba(0, 191, 255, 0.3) 100%
  );
  box-shadow: 
    0 0 25px rgba(255, 20, 147, 0.6),
    0 0 40px rgba(138, 43, 226, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.slider-dot.active::before {
  opacity: 1;
  width: 40px;
  height: 40px;
}

.slider-dot.active::after {
  transform: translate(-50%, -50%) scale(1);
}

.slider-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.45);
  transform: scale(1.15);
  box-shadow: 
    0 0 12px rgba(255, 20, 147, 0.35),
    0 3px 10px rgba(0, 0, 0, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.slider-dot:hover:not(.active)::before {
  opacity: 0.6;
  width: 30px;
  height: 30px;
}

/* Dot Ripple Effect */
.dot-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, 
    rgba(255, 20, 147, 0.6) 0%, 
    rgba(255, 20, 147, 0.3) 50%, 
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: dotRipple 0.6s ease-out;
  pointer-events: none;
}

@keyframes dotRipple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 40px;
    height: 40px;
    opacity: 0;
  }
}

/* Campaign Slide Transition Enhancement */
.campaign-slider {
  overflow: hidden;
  --campaign-slide-duration: 0.7s;
}

.campaign-slide {
  opacity: 0;
  transform: translateX(30px) scale(0.98);
  pointer-events: none;
  position: absolute;
  top: 0; left: 0; width: 100%;
  transition:
    transform var(--campaign-slide-duration) cubic-bezier(0.4, 0, 0.2, 1),
    opacity var(--campaign-slide-duration) cubic-bezier(0.4, 0, 0.2, 1);
}
.campaign-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  position: relative;
  z-index: 2;
}
.campaign-slide.entering {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.campaign-slide.leaving {
  opacity: 0;
  transform: translateX(-20px) scale(0.985);
  pointer-events: none;
  z-index: 1;
}
.campaign-slider-wrapper {
  position: relative;
  min-height: 320px;
}
@media (max-width: 768px) {
  .campaign-slider-wrapper {
    min-height: 380px;
  }
  .campaign-slide {
    min-height: 380px;
  }
  .campaign-slider { --campaign-slide-duration: 0.38s; }
}

/* ============================================= */
/* CAMPAIGN POPUP                               */
/* ============================================= */

.campaign-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.campaign-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Debug - Force show popup for testing */
.campaign-popup-overlay.debug-show {
  opacity: 1 !important;
  visibility: visible !important;
}

.campaign-popup {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.98) 0%,
    rgba(249, 246, 255, 0.95) 100%
  );
  backdrop-filter: blur(30px);
  border-radius: 30px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  box-shadow: 
    0 30px 80px rgba(255, 20, 147, 0.3),
    0 0 100px rgba(138, 43, 226, 0.2);
  animation: popupSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.campaign-popup-overlay.show .campaign-popup {
  transform: scale(1);
}

@keyframes popupSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.popup-close:hover {
  background: rgba(255, 20, 147, 0.8);
  transform: rotate(90deg);
}

.popup-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.popup-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-info {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d1b69;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ff1493, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.popup-description {
  font-size: 1.1rem;
  color: #5a4a8a;
  line-height: 1.8;
  margin-bottom: 30px;
}

.popup-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ff1493, #8a2be2);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
  width: fit-content;
}

.popup-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 20, 147, 0.6);
}

.popup-button .button-icon {
  transition: transform 0.3s ease;
}

.popup-button:hover .button-icon {
  transform: translateX(5px);
}

/* ============================================= */
/* CAMPAIGN RESPONSIVE                          */
/* ============================================= */

@media (max-width: 1024px) {
  .campaign-section {
    padding: 50px 0;
  }
  
  .campaign-container {
    padding: 0 15px;
  }
  
  .campaign-slide-content {
    min-height: 350px;
  }
  
  .campaign-slide-info {
    padding: 40px 30px;
  }
  
  .campaign-slide-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .campaign-section {
    padding: 40px 0;
  }
  
  .campaign-header {
    margin-bottom: 30px;
  }
  
  .campaign-slide-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .campaign-image-container {
    height: 250px;
    order: 1;
  }
  
  .campaign-slide-info {
    padding: 30px 25px;
    order: 2;
  }
  
  .campaign-slide-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  
  .campaign-slide-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .campaign-slide-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .campaign-slider-controls {
    margin-top: 35px;
    gap: 14px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  
  .slider-prev {
    order: 1;
  }
  
  .slider-dots {
    order: 2;
  }
  
  .slider-next {
    order: 3;
  }
  
  .slider-prev,
  .slider-next {
    width: 48px;
    height: 48px;
    font-size: 20px;
    z-index: 10002;
    flex: 0 0 auto;
  }
  
  .slider-dots {
    flex: 0 1 auto;
    max-width: 65%;
    width: auto;
    margin: 0;
    padding: 8px 16px;
    gap: 10px;
    background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: blur(35px) saturate(1.6);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  
  .slider-dot {
    width: 8px;
    height: 8px;
    z-index: 10002;
  }
  
  .slider-dot.active {
    width: 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, 
      rgba(255, 20, 147, 0.5) 0%,
      rgba(138, 43, 226, 0.45) 50%,
      rgba(0, 191, 255, 0.4) 100%
    );
    box-shadow:
      0 0 20px rgba(255, 20, 147, 0.65),
      0 0 35px rgba(138, 43, 226, 0.45),
      0 3px 12px rgba(0, 0, 0, 0.3);
  }
  
  .campaign-slide-button {
    padding: 15px 30px;
    font-size: 1rem;
  }
  
  .hero-bar-text {
    left: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .campaign-section {
    padding: 30px 0;
  }
  
  .campaign-container {
    padding: 0 10px;
  }
  
  .campaign-header {
    margin-bottom: 25px;
  }
  
  .campaign-image-container {
    height: 200px;
  }
  
  .campaign-slide-info {
    padding: 25px 20px;
  }
  
  .campaign-slide-title {
    font-size: 1.4rem;
  }
  
  .campaign-slide-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .campaign-slide-button {
    padding: 13px 26px;
    font-size: 0.95rem;
  }
  
  .campaign-slider-controls {
    top: 0px;
    margin-top: 30px;
    gap: 12px;
  }
  
  .slider-prev {
    order: 1;
  }
  
  .slider-dots {
    order: 2;
  }
  
  .slider-next {
    order: 3;
  }
  
  .slider-prev,
  .slider-next {
    width: 42px;
    height: 42px;
    font-size: 18px;
    z-index: 10003;
  }
  
  .slider-dots {
    max-width: calc(100% - 110px);
    padding: 7px 14px;
    margin: 0;
    gap: 8px;
    background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.06) 100%
    );
    backdrop-filter: blur(30px) saturate(1.5);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .slider-dot {
    width: 7px;
    height: 7px;
    z-index: 10003;
  }
  
  .slider-dot.active {
    width: 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, 
      rgba(255, 20, 147, 0.55) 0%,
      rgba(138, 43, 226, 0.5) 50%,
      rgba(0, 191, 255, 0.45) 100%
    );
    box-shadow:
      0 0 16px rgba(255, 20, 147, 0.7),
      0 0 28px rgba(138, 43, 226, 0.5),
      0 2px 10px rgba(0, 0, 0, 0.35);
  }
  
  .hero-bar-text {
    left: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ============================================= */
/* POPUP RESPONSIVE                              */
/* ============================================= */

@media (max-width: 768px) {
  .popup-content {
    grid-template-columns: 1fr;
  }
  
  .popup-image {
    min-height: 300px;
    max-height: 300px;
  }
  
  .popup-info {
    padding: 40px 30px;
  }
  
  .popup-title {
    font-size: 1.8rem;
  }
  
  .popup-description {
    font-size: 1rem;
  }
}

/* About Section */
.about-section {
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 2;
}

/* Main About Title */
.about-main-title {
  top: 50px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.about-big-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  font-family: 'Dancing Script', cursive;
  background: linear-gradient(135deg, 
    var(--accent-pink) 0%, 
    var(--accent-purple) 30%, 
    var(--accent-cyan) 60%, 
    var(--accent-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-shadow: 0 0 60px rgba(255, 20, 147, 0.3);
  position: relative;
  animation: titleGlow 4s ease-in-out infinite;
}

.about-big-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse, 
    rgba(255, 20, 147, 0.05) 0%, 
    rgba(138, 43, 226, 0.03) 40%, 
    transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: titlePulse 6s ease-in-out infinite;
}

.about-big-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--accent-pink) 20%, 
    var(--accent-purple) 50%, 
    var(--accent-cyan) 80%, 
    transparent 100%);
  border-radius: 2px;
  opacity: 0.8;
}

@keyframes titleGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.4));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(138, 43, 226, 0.6));
    transform: scale(1.02);
  }
}

@keyframes titlePulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

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

/* New Diagonal Layout */
.about-diagonal-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  align-items: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.about-content-side {
  padding: 60px 40px 60px 0;
  z-index: 5;
  position: relative;
}

.about-visual-side {
  position: relative;
  height: 600px;
  overflow: hidden;
}

/* Diagonal Background */
.about-diagonal-bg {
  display: none;
}

/* Content Styling */
.about-intro-text {
  margin-bottom: 50px;
}

.about-mission-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  font-family: 'Dancing Script', cursive;
  background: linear-gradient(135deg, 
    var(--accent-pink) 0%, 
    var(--accent-purple) 50%, 
    var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-mission-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

.about-mission-desc p {
  margin-bottom: 16px;
}

.about-mission-desc p:last-child {
  margin-bottom: 0;
}

/* Features Grid */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.about-feature:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 20, 147, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

.feature-icon .icon {
  font-size: 20px;
  /* Emojiler orijinal renklerinde kalacak */
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* New CTA Button */
.about-cta {
  margin-top: 40px;
}

.about-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
  position: relative;
  overflow: hidden;
}

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

.about-btn-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 20, 147, 0.4);
}

.about-btn-new:hover::before {
  left: 100%;
}

.btn-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.about-btn-new:hover .btn-arrow {
  transform: translateX(5px);
}

/* Dancer Image */
.about-dancer-image {
  position: absolute;
  top: 55%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 3;
  width: 350px;
  height: 450px;
  overflow: hidden;
  border-radius: 20px;
      filter: drop-shadow(8px 10px 9px black);

}

.about-dancer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) saturate(1.2);
  transition: all 0.5s ease;
}

.about-dancer-image:hover img {
  transform: scale(1.05);
  filter: brightness(1.2) saturate(1.3);
}

/* Floating Elements */
.about-floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 15%;
  animation-delay: -2s;
}

.circle-2 {
  width: 120px;
  height: 120px;
  bottom: 25%;
  left: 5%;
  animation-delay: -4s;
}

.floating-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: dotFloat 4s ease-in-out infinite;
}

.dot-1 {
  top: 30%;
  right: 25%;
  animation-delay: -1s;
}

.dot-2 {
  top: 60%;
  right: 40%;
  animation-delay: -2.5s;
}

.dot-3 {
  bottom: 40%;
  right: 15%;
  animation-delay: -3.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes dotFloat {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(-15px); opacity: 1; }
}

.about-text {
  max-width: 800px !important;
  max-height: 600px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 20, 147, 0.4) rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.about-text::-webkit-scrollbar {
  width: 8px;
  display: block;
}

.about-text::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-text::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-pink), var(--accent-purple));
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 20px;
}

.about-text::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-purple), var(--accent-cyan));
  border-color: rgba(255, 255, 255, 0.2);
}

.about-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 20, 147, 0.03) 0%, 
    rgba(138, 43, 226, 0.02) 50%, 
    rgba(0, 191, 255, 0.03) 100%);
  border-radius: 20px;
  z-index: -1;
}

.about-text::after {
  content: '↕';
  position: absolute;
  top: 25px;
  right: 15px;
  font-size: 30px;
  color: rgba(255, 20, 147, 0.6);
  animation: scrollHint 3s ease-in-out infinite;
  z-index: 10;
  pointer-events: none;
  font-weight: bold;
}

@keyframes scrollHint {
  0%, 100% { opacity: 0.6; transform: translateY(0) scale(1); }
  50% { opacity: 0.9; transform: translateY(4px) scale(1.1); }
}

.section-tag {
  display: inline-block;
  padding: 8px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-left: 3px solid var(--accent-pink);
  padding-left: 16px;
  margin-bottom: 24px;
  position: relative;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-pink), var(--accent-purple));
  border-radius: 2px;
}

.about-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 32px;
  font-family: 'Poppins', sans-serif;
}

.about-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding: 0;
  display: block;
}

.about-description p {
  margin: 0 0 16px 0;
  padding: 0;
  line-height: 1.7;
  word-wrap: break-word;
}

.about-description p:last-child {
  margin-bottom: 0;
}

.about-additional {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(224, 224, 224, 0.7);
  margin-bottom: 40px;
  padding: 0;
  display: block;
}

.about-additional p {
  margin: 0 0 14px 0;
  padding: 0;
  line-height: 1.6;
  word-wrap: break-word;
}

.about-additional p:last-child {
  margin-bottom: 0;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 20, 147, 0.4);
}

.about-btn .btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  pointer-events: none;
}

.about-btn:hover .btn-glow {
  width: 100px;
  height: 100px;
}

/* About Visuals */
.about-visuals {
  position: relative;
  height: 500px;
}

.about-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-image {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(1.1);
  transition: all 0.3s ease;
}

.about-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.about-image:hover img {
  filter: brightness(1) saturate(1.2);
  transform: scale(1.05);
}

/* Image positioning - matches the design */
.about-image-1 {
  top: 0;
  left: 0;
  width: 260px;
  height: 320px;
  z-index: 3;
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(138, 43, 226, 0.1));
}

.about-image-2 {
  top: 160px;
  right: 80px;
  width: 220px;
  height: 280px;
  z-index: 2;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(50, 205, 50, 0.1));
}

/* Decorative elements */
.about-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-dots {
  position: absolute;
  top: 60px;
  right: 20px;
  width: 100px;
  height: 80px;
  background-image: radial-gradient(rgba(255, 20, 147, 0.15) 20%, transparent 0);
  background-size: 12px 12px;
  opacity: 0.7;
}

.about-arc {
  position: absolute;
  bottom: 40px;
  left: 180px;
  width: 120px;
  height: 60px;
  border: 2px solid rgba(0, 191, 255, 0.2);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50% 0 0 0;
  transform: rotate(15deg);
}

.about-grid {
  position: absolute;
  top: 20px;
  right: 160px;
  width: 60px;
  height: 60px;
  background-image: 
    linear-gradient(rgba(138, 43, 226, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 43, 226, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.6;
}

/* ========================================= */
/* MOBIL UYUMLULUK VE OPTIMIZASYON (YENI)    */
/* ========================================= */
@media (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    gap: 40px;
    text-align: center;
  }
  .hero-left, .hero-right {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: column;
  
  }
  .hero-right {
    max-width: 500px;
  }
  .hero-image img {
    position: relative;
        bottom: 150px;
    width: 100%;
    max-width: 450px;
  }
  .dot-indicator {
    position: static;
    transform: none;
    order: 3;
    margin-top: 40px;
  }
  .slide-selector {
    position: absolute;
    left: 190px;
    flex-direction: row;
    gap: 16px;
  }
  .hero-text-slider {
    min-height: 150px;
  }
  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
  }
  .hero-text {
    max-width: 500px;
  }
  .hero-buttons-section {
    position: relative;
    margin-top: 20px;
    min-height: 120px;
    width: 100%;
    display: flex;
    justify-content: center;
    border-top: none;
  }
  .hero-buttons-section::before {
      display: none;
  }
  .hero-buttons {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 16px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hero-buttons.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .btn {
    margin-top: 10px;
    width: 100%;
    padding: 14px 24px;
  }
  .content {
    padding: 0 24px;
    margin: 40px auto 80px;
  }
  .floating-shape,
  .bg-arc,
  .dance-text-elements {
    display: none;
  }
  
  /* About Section Mobile */
  .about-section {
    padding: 80px 0;
  }
  
  .about-container {
    padding: 0 20px;
  }
  
  .about-main-title {
            position: relative;
        top: 50px;
  }
  
  .about-big-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
    letter-spacing: 0.01em;
  }
  
  .about-big-title::after {
    width: 100px;
    bottom: -15px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .about-text {
    order: 2;
    max-width: none;
    max-height: 350px;
    padding: 24px;
    margin: 0 auto;
  }
  
  /* New mobile styles for diagonal layout */
  .about-diagonal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }
  
  .about-content-side {
    padding: 40px 20px;
  }
  
  .about-visual-side {
    height: 400px;
    order: 1;
  }
  
  .about-diagonal-bg {
    width: 120%;
    height: 110%;
    top: -5%;
    right: -10%;
    transform: rotate(-8deg) skewX(-8deg);
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .about-feature {
    padding: 16px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-icon .icon {
    font-size: 16px;
  }
  
  .about-dancer-image {
    width: 280px;
    height: 350px;
    right: 5%;
  }
  
  .floating-circle {
    display: none;
  }
  
  .floating-dot {
    width: 8px;
    height: 8px;
  }
  
  .about-visuals {
    order: 1;
    height: 280px;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .about-image-1 {
    width: 180px;
    height: 220px;
    top: 10px;
    left: 10px;
  }
  
  .about-image-2 {
    width: 140px;
    height: 180px;
    top: 80px;
    right: 10px;
  }
  
  .about-dots {
    width: 50px;
    height: 30px;
    background-size: 8px 8px;
  }
  
  .about-arc {
    width: 60px;
    height: 30px;
  }
  
  .about-grid {
    width: 30px;
    height: 30px;
    background-size: 12px 12px;
  }
}

/* ============================================= */
/* BRANCHES SECTION STYLES                      */
/* ============================================= */

.branches-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.branches-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header with Gradient Title */
.branches-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.gradient-title {
  font-family: 'Dancing Script', cursive;
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, 
    #ff1493 0%, 
    #8a2be2 30%, 
    #00bfff 60%, 
    #32cd32 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffffff00;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(255, 20, 147, 0.4);
  position: relative;
  display: inline-block;
}

.gradient-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    #ff1493 0%, 
    #8a2be2 30%, 
    #00bfff 60%, 
    #32cd32 100%
  );
  opacity: 0.1;
  border-radius: 15px;
  filter: blur(20px);
  z-index: -1;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.decoration-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8a2be2, transparent);
  border-radius: 1px;
}

.decoration-dot {
  width: 8px;
  height: 8px;
  background: #ff1493;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

/* Layout */
.branches-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/* Search Bar */
.branches-search {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-input {
  flex: 1;
  padding: 15px 50px 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition: all 0.3s ease;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
  border-color: rgba(255, 20, 147, 0.5);
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.2);
}

.search-icon {
  position: absolute;
  right: 20px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

/* Fixed All Branches Button - Inline with Search */
.fixed-all-branches {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.fixed-all-branches .all-branches-btn {
  padding: 15px 25px;
  background: linear-gradient(135deg, #ff1493, #8a2be2);
  border: 1px solid rgba(255, 20, 147, 0.6);
  border-radius: 25px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(255, 20, 147, 0.3);
  position: relative;
  overflow: hidden;
}

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

.fixed-all-branches .all-branches-btn:hover::before {
  left: 100%;
}

.fixed-all-branches .all-branches-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

/* Horizontal Carousel */
.branches-carousel {
  width: 100%;
  max-width: 1200px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-container {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
}

.carousel-track {
  display: flex;
  gap: 15px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px;
}

.carousel-item {
  flex-shrink: 0;
}

.branch-btn {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.branch-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 20, 147, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

.branch-btn.active {
  background: linear-gradient(135deg, #ff1493, #8a2be2);
  border-color: rgba(255, 20, 147, 0.6);
  color: #fff;
  box-shadow: 0 5px 20px rgba(255, 20, 147, 0.3);
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 20, 147, 0.4);
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* Content Area */
.branches-content-new {
  width: 100%;
  max-width: 1400px;
}

/* Hide old sidebar by default */
.branches-sidebar {
  display: none;
}

/* Left Sidebar - Glassmorphism */
.branches-sidebar {
  position: sticky;
  top: 140px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.branches-sidebar:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.sidebar-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Mobile Dropdown */
.mobile-branch-selector {
  display: none;
}

.mobile-select {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  cursor: pointer;
}

.mobile-select option {
  background: rgba(20, 20, 30, 0.95);
  color: #fff;
}

/* Branch List */
.branch-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.branch-item {
  margin-bottom: 12px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.branch-item:hover::before {
  left: 100%;
}

.branch-item:hover {
  background: linear-gradient(135deg, 
    rgba(135, 206, 235, 0.2), 
    rgba(176, 196, 222, 0.15)
  );
  border-color: rgba(135, 206, 235, 0.4);
  transform: translateX(10px);
}

.branch-item.active {
  background: linear-gradient(135deg, 
    rgba(70, 130, 180, 0.4), 
    rgba(100, 149, 237, 0.3)
  );
  border-color: rgba(70, 130, 180, 0.6);
  box-shadow: 0 0 20px rgba(70, 130, 180, 0.4);
}

.branch-name {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Right Content Area */
.branches-content {
  position: relative;
}

.content-area {
  min-height: 500px;
}

/* Branches Grid */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.branch-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.branch-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(160, 82, 45, 0.15);
}

/* Enhanced Desktop Design for All Branches Grid */
@media (min-width: 769px) {
  .branches-grid {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.12),
      0 4px 16px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
  }
  
  .branches-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 24px;
    pointer-events: none;
    z-index: -1;
  }
  
  .branches-grid .branch-card {
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
  }
  
  .branches-grid .branch-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }
  
  .branches-grid .card-image {
    position: relative;
    z-index: 2;
  }
  
  .branches-grid .card-image img {
    transition: transform 0.4s ease;
  }
  
  .branches-grid .branch-card:hover .card-image img {
    transform: scale(1.05);
  }
  
  .branches-grid .card-overlay {
    background: linear-gradient(
      transparent 0%,
      rgba(0, 0, 0, 0.3) 30%,
      rgba(0, 0, 0, 0.7) 70%,
      rgba(0, 0, 0, 0.9) 100%
    );
    backdrop-filter: blur(10px);
    z-index: 3;
  }
  
  .branches-grid .card-overlay .card-title {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
  }
  
  .branches-grid .view-details-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: none;
  }
  
  .branches-grid .view-details-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  }
}

.card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 20px 15px 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.branch-card:hover .card-overlay {
  transform: translateY(0);
}

.card-overlay .card-title {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-family: 'Poppins', sans-serif;
}

.view-details-btn {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
}

.view-details-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

/* Premium Branch Detail Card */
.branch-detail-card {
  background: linear-gradient(135deg, 
    rgba(139, 69, 19, 0.15) 0%,
    rgba(75, 0, 130, 0.12) 30%,
    rgba(25, 25, 35, 0.95) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 45px;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 0 50px rgba(139, 69, 19, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.branch-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(255, 20, 147, 0.03),
    rgba(138, 43, 226, 0.05),
    rgba(0, 191, 255, 0.03)
  );
  border-radius: 25px;
  z-index: -1;
}

.branch-detail-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    #ff1493, #8a2be2, #00bfff, #32cd32
  );
  border-radius: 27px;
  z-index: -2;
  opacity: 0.1;
  filter: blur(8px);
}

/* Card Content Layout */
.card-content-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* Text Section */
.card-text-section {
  padding-right: 20px;
}

.card-text-section .card-title {
  font-family: 'Dancing Script', cursive;
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, 
    #ff1493 0%, 
    #8a2be2 50%, 
    #00bfff 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(255, 20, 147, 0.3);
}

.card-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 300;
  text-align: left;
  margin-bottom: 30px;
}

/* Inline Schedule Section */
.card-schedule-inline {
  margin-top: 25px;
}

.schedule-inline-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.schedule-badges-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.compact-schedule-badge {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, 
    rgba(139, 69, 19, 0.8) 0%,
    rgba(160, 82, 45, 0.9) 50%,
    rgba(205, 133, 63, 0.8) 100%
  );
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid rgba(160, 82, 45, 0.4);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 
    0 4px 15px rgba(139, 69, 19, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  max-width: 100%;
  overflow: hidden;
}

.compact-schedule-badge .badge-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.schedule-separator {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0 6px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.compact-schedule-badge:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(139, 69, 19, 0.3),
    0 0 25px rgba(160, 82, 45, 0.2);
}

.compact-schedule-badge .badge-day {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.compact-schedule-badge .badge-time {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Hero Image Section */
.card-image-section {
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(139, 69, 19, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-container:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(255, 20, 147, 0.3);
}

.hero-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-image-container:hover .hero-image {
  transform: scale(1.05);
}

.image-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, 
    rgba(255, 20, 147, 0.2),
    rgba(138, 43, 226, 0.2),
    rgba(0, 191, 255, 0.2)
  );
  border-radius: 30px;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.4s ease;
  z-index: -1;
}

.hero-image-container:hover .image-glow {
  opacity: 1;
}

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



/* Branch Images Grid */
.branch-images {
  margin-bottom: 40px;
}

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

.image-item {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.image-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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



/* Loading Indicator */
.loading-indicator {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.8);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid #A0522D;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Branches Responsive Design */
@media (max-width: 1024px) {
  .branches-carousel {
    max-width: 100%;
  }
  
  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .branch-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .branches-section {
    padding: 100px 0;
    overflow-x: hidden;
  }
  
  .branches-container {
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .branches-layout {
    gap: 30px;
  }
  
  .branches-search {
    max-width: 100%;
  }
  
  .search-container {
    gap: 10px;
    align-items: center;
  }
  
  .search-input {
    padding: 12px 45px 12px 15px;
    font-size: 14px;
  }
  
  .search-icon {
    right: 15px;
    font-size: 16px;
  }
  
  /* Fixed All Branches Button Mobile Styles */
  .fixed-all-branches {
    flex-shrink: 0;
  }
  
  .fixed-all-branches .all-branches-btn {
    padding: 12px 18px;
    font-size: 12px;
    border-radius: 20px;
  }
  
  .branches-carousel {
    gap: 10px;
  }
  
  .carousel-btn {
    display: none; /* Hide arrow buttons on mobile */
  }
  
  .carousel-container {
    border-radius: 15px;
    padding: 8px;
  }
  
  .carousel-track {
    gap: 10px;
    padding: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .carousel-track::-webkit-scrollbar {
    display: none;
  }
  
  .branch-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .branches-content-new {
    width: 100%;
    overflow: hidden;
  }
  
  .branches-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
  }
  
  .branch-card {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
  }
  
  .card-image {
    width: 100%;
    overflow: hidden;
  }
  
  .card-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  
  .gradient-title {
    font-size: 2.8rem;
  }
  
  .branch-detail-card {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .card-content-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .card-text-section {
    padding-right: 0;
    order: 1;
  }
  
  .card-image-section {
    order: 2;
  }
  
  .hero-image {
    height: 250px;
  }
  
  .card-title {
    font-size: 2.5rem;
  }
  
  .schedule-badges-inline {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .compact-schedule-badge {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 18px;
  }
  
  .compact-schedule-badge .badge-content {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .schedule-item {
    margin-bottom: 2px;
  }
  
  .schedule-separator {
    margin: 0 4px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .branches-container {
    padding: 0 10px;
  }
  
  .branches-layout {
    gap: 20px;
  }
  
  .search-container {
    gap: 8px;
  }
  
  .search-input {
    padding: 10px 40px 10px 12px;
    font-size: 13px;
  }
  
  /* Fixed All Branches Button Small Mobile Styles */
  .fixed-all-branches .all-branches-btn {
    padding: 10px 15px;
    font-size: 11px;
    border-radius: 18px;
  }
  
  .carousel-track {
    gap: 8px;
    padding: 6px;
  }
  
  .branch-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .branches-grid {
    gap: 15px;
    padding: 0;
  }
  
  .branch-card {
    margin: 0;
    border-radius: 16px;
  }
  
  .gradient-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .branch-detail-card {
    padding: 20px;
    margin: 0;
  }
  
  .card-title {
    font-size: 2rem;
  }
  
  .hero-image {
    height: 200px;
  }
  
  .compact-schedule-badge {
    padding: 8px 15px;
  }
    
  .compact-schedule-badge .badge-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
    
  .schedule-item {
    gap: 6px;
  }
    
  .schedule-separator {
    margin: 2px 0;
    text-align: center;
    width: 100%;
  }
  
  .compact-schedule-badge .badge-day {
    font-size: 0.85rem;
  }
  
  .compact-schedule-badge .badge-time {
    font-size: 0.75rem;
  }
}

/* ============================================= */
/* VIDEO GALLERY SECTION - ENHANCED DESIGN     */
/* ============================================= */

.video-gallery-section {
  padding: 60px 0 120px 0;
  margin-top: -90px;
  background: linear-gradient(135deg, 
    #1a0a2e 0%,
    #16213e 25%,
    #0f3460 50%,
    #16213e 75%,
    #1a0a2e 100%
  );
  position: relative;
  overflow: hidden;
  width: 100%;
}

.video-gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 191, 255, 0.06) 0%, transparent 60%);
  z-index: 1;
}

.video-gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

.video-gallery-header {
  text-align: center;
  margin-bottom: 60px;
  color: white;
}

.video-gallery-header .section-title {
  font-family: 'Dancing Script', cursive;
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, 
    #ff1493 0%, 
    #8a2be2 30%, 
    #00bfff 60%, 
    #32cd32 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffffff00;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(255, 20, 147, 0.4);
}

.video-gallery-header .section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.decoration-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8a2be2, transparent);
  border-radius: 1px;
}

.decoration-dot {
  width: 8px;
  height: 8px;
  background: #ff1493;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
}

/* Video Gallery Layout */
.video-gallery-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Main Video Player Container */
.main-video-player-container {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  max-height: 510px;
}

.video-player-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.active-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.video-player-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.video-player-item.active {
  opacity: 1;
}

.main-video-element,
.main-video-iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 16px;
}

/* Video Controls */
.main-video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.video-sound-toggle {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-sound-toggle:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.sound-icon {
  transition: all 0.3s ease;
}

/* Video Info Overlay */
.video-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    transparent 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.7) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );
  padding: 30px 20px 20px;
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.video-player-wrapper:hover .video-info-overlay {
  transform: translateY(0);
}

.current-video-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  font-family: 'Poppins', sans-serif;
}

.current-video-description {
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* Video Sidebar Container */
.video-sidebar-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 25px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  max-height: 510px;
  overflow-y: auto;
}

.video-sidebar-container::-webkit-scrollbar {
  width: 6px;
  height: 80%;
}

.video-sidebar-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin: 10px 0;
}

.video-sidebar-container::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff1493, #8a2be2);
  border-radius: 3px;
  max-height: 60px;
}

.video-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.video-count {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 20, 147, 0.2);
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 20, 147, 0.3);
}

/* Video Thumbnail List */
.video-thumbnail-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.video-thumbnail-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.video-thumbnail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent
  );
  transition: left 0.5s ease;
}

.video-thumbnail-card:hover::before {
  left: 100%;
}

.video-thumbnail-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 20, 147, 0.3);
}

.video-thumbnail-card.active {
  background: linear-gradient(135deg, 
    rgba(255, 20, 147, 0.2), 
    rgba(138, 43, 226, 0.2)
  );
  border-color: rgba(255, 20, 147, 0.5);
  box-shadow: 0 8px 20px rgba(255, 20, 147, 0.3);
}

/* Thumbnail Video Container */
.thumbnail-video-container {
  top: 10px;
  position: relative;
  width: 100px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
}

.thumbnail-media {
  width: 100%;
  height: 100%;
  position: relative;
}

.thumbnail-image,
.thumbnail-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.thumbnail-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255, 20, 147, 0.3), 
    rgba(138, 43, 226, 0.3)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.play-icon {
  font-size: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.thumbnail-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.video-thumbnail-card:hover .thumbnail-play-overlay {
  opacity: 1;
}

.play-button {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.thumbnail-active-indicator {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #ff1493, #8a2be2);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.video-thumbnail-card.active .thumbnail-active-indicator {
  opacity: 1;
  transform: scale(1);
}

/* Thumbnail Info */
.thumbnail-info {
  position: relative;
  bottom: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 5px 0;
}

.thumbnail-title {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.thumbnail-meta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.video-duration {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.5px;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
  .video-gallery-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .main-video-player-container {
    order: 1;
  }
  
  .video-sidebar-container {
    order: 2;
    max-height: 400px;
  }
  
  .video-player-wrapper {
    padding-bottom: 56.25%; /* Maintain 16:9 aspect ratio */
  }
}

@media (max-width: 768px) {
  .video-gallery-section {
    padding: 40px 0 80px 0;
    margin-top: -40px;
    overflow-x: hidden;
  }
  
  .video-gallery-container {
    padding: 0 15px;
  }
  
  .video-gallery-header {
    margin-bottom: 50px;
  }
  
  .video-gallery-header .section-title {
    font-size: 2.8rem;
  }
  
  .video-gallery-header .section-subtitle {
    font-size: 1rem;
  }
  
  .video-gallery-layout {
    gap: 20px;
  }
  
  .main-video-player-container {
    padding: 15px;
    border-radius: 20px;
  }
  
  .video-player-wrapper {
    border-radius: 12px;
  }
  
  .active-video-container {
    border-radius: 12px;
  }
  
  .main-video-element,
  .main-video-iframe {
    border-radius: 12px;
  }
  
  .video-sidebar-container {
    max-height: 300px;
    padding: 20px;
    border-radius: 20px;
  }
  
  .video-thumbnail-list {
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }
  
  .video-thumbnail-list::-webkit-scrollbar {
    height: 6px;
  }
  
  .video-thumbnail-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
  }
  
  .video-thumbnail-list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff1493, #8a2be2);
    border-radius: 3px;
  }
  
  .video-thumbnail-card {
    flex-direction: column;
    min-width: 160px;
    text-align: center;
    scroll-snap-align: start;
    padding: 12px;
  }
  
  .thumbnail-video-container {
    width: 100%;
    height: 90px;
    margin-bottom: 10px;
  }
  
  .thumbnail-title {
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    line-height: 1.3;
    font-size: 0.85rem;
    margin-bottom: 6px;
  }
  
  .thumbnail-meta {
    justify-content: center;
    gap: 6px;
  }
  
  .video-duration {
    font-size: 0.75rem;
    padding: 2px 6px;
  }
  
  .video-info-overlay {
    transform: translateY(0); /* Always show on mobile */
    background: linear-gradient(
      transparent 40%,
      rgba(0, 0, 0, 0.5) 70%,
      rgba(0, 0, 0, 0.9) 100%
    );
    padding: 20px 15px 15px;
  }
  
  .current-video-title {
    font-size: 1.2rem;
  }
  
  .current-video-description {
    font-size: 0.85rem;
  }
  
  .video-sound-toggle {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .video-gallery-section {
    padding: 30px 0 60px 0;
    margin-top: -30px;
  }
  
  .video-gallery-container {
    padding: 0 10px;
  }
  
  .video-gallery-header .section-title {
    font-size: 2.2rem;
  }
  
  .video-gallery-header .section-subtitle {
    font-size: 0.9rem;
  }
  
  .main-video-player-container {
    padding: 12px;
    border-radius: 16px;
  }
  
  .video-player-wrapper {
    border-radius: 10px;
  }
  
  .active-video-container {
    border-radius: 10px;
  }
  
  .main-video-element,
  .main-video-iframe {
    border-radius: 10px;
  }
  
  .video-sidebar-container {
    padding: 15px;
    border-radius: 16px;
    max-height: 500px;
  }
  
  .video-thumbnail-card {
    min-width: 140px;
    padding: 10px;
  }
  
  .thumbnail-video-container {
    height: 80px;
  }
  
  .thumbnail-title {
    font-size: 0.8rem;
  }
  
  .current-video-title {
    font-size: 1.1rem;
  }
  
  .current-video-description {
    font-size: 0.8rem;
  }
  
  .video-sound-toggle {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* ============================================= */
/* STATISTICS SECTION STYLES                    */
/* ============================================= */

.statistics-section {
  padding: 80px 0;
  background: linear-gradient(135deg, 
    #ffeef7 0%, 
    #f8e8f0 50%, 
    #f0d5e0 100%
  );
  position: relative;
  overflow: hidden;
}

.statistics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, 
    rgba(255, 20, 147, 0.03) 0%,
    transparent 50%
  ),
  radial-gradient(circle at 70% 80%, 
    rgba(219, 112, 147, 0.04) 0%,
    transparent 50%
  );
  z-index: 1;
}

.statistics-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 0;
  background: transparent;
  border: none;
  transition: all 0.4s ease;
  position: relative;
}

.stat-item::before {
  display: none;
}

.stat-item:hover {
  transform: translateY(-8px);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #d63384;
  margin-bottom: 6px;
  line-height: 1;
  transition: all 0.4s ease;
}

.stat-item:hover .stat-number {
  color: #b02a5b;
  transform: scale(1.05);
}

.stat-number::after {
  content: '+';
  font-size: 2.2rem;
  opacity: 0.7;
  margin-left: 2px;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #6c757d;
  text-transform: lowercase;
  letter-spacing: 0.3px;
  transition: all 0.4s ease;
}

.stat-item:hover .stat-label {
  color: #495057;
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item.animated {
  animation: countUp 0.8s ease;
}

.stat-item.animated .stat-number {
  animation: countUp 0.8s ease 0.2s both;
}

.stat-item.animated .stat-label {
  animation: countUp 0.8s ease 0.4s both;
}

/* Statistics Responsive Design */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 600px;
  }
  
  .stat-number {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .statistics-section {
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 400px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .statistics-container {
    padding: 0 15px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .stat-number::after {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
}

/* ============================================= */
/* GLOBAL MOBILE OVERFLOW PREVENTION           */
/* ============================================= */

@media (max-width: 768px) {
  * {
    max-width: 100%;
  }
  
  section {
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
  }
  
  .container,
  .branches-container,
  .contact-container,
  .about-container,
  .statistics-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  iframe {
    max-width: 100%;
  }
}

/* ============================================= */
/* SCROLL ANIMATIONS                            */
/* ============================================= */

/* Base animation states */
.scroll-animate {
  opacity: 0;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
  opacity: 1;
}

/* Hero Section Animations */
.hero {
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero.scroll-animate {
  transform: translateX(-50px);
}

.hero.scroll-animate.animate-in {
  transform: translateX(0);
}

/* About Section Animations */
.about-section .about-container {
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section .about-container.scroll-animate {
  transform: translateY(60px);
  opacity: 0;
}

.about-section .about-container.scroll-animate.animate-in {
  top: 50px;
  transform: translateY(0);
  opacity: 1;
}

/* Branches Section Animations */
.branches-sidebar {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.branches-sidebar.scroll-animate {
  transform: scale(0.9);
  opacity: 0;
}

.branches-sidebar.scroll-animate.animate-in {
  transform: scale(1);
  opacity: 1;
}

.branches-grid .branch-card {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.branches-grid .branch-card.scroll-animate {
  transform: translateY(40px);
  opacity: 0;
}

.branches-grid .branch-card.scroll-animate.animate-in {
  transform: translateY(0);
  opacity: 1;
}

/* Stagger delays for branch cards */
.branches-grid .branch-card:nth-child(1).scroll-animate.animate-in {
  transition-delay: 0.1s;
}

.branches-grid .branch-card:nth-child(2).scroll-animate.animate-in {
  transition-delay: 0.2s;
}

.branches-grid .branch-card:nth-child(3).scroll-animate.animate-in {
  transition-delay: 0.3s;
}

.branches-grid .branch-card:nth-child(4).scroll-animate.animate-in {
  transition-delay: 0.4s;
}

.branches-grid .branch-card:nth-child(5).scroll-animate.animate-in {
  transition-delay: 0.5s;
}

.branches-grid .branch-card:nth-child(6).scroll-animate.animate-in {
  transition-delay: 0.6s;
}

/* Statistics Section Animations */
.statistics-section .stats-grid {
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.statistics-section .stats-grid.scroll-animate {
  transform: translateY(50px);
  opacity: 0;
}

.statistics-section .stats-grid.scroll-animate.animate-in {
  transform: translateY(0);
  opacity: 1;
}

/* Contact Section Animations */
.contact-content {
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-content.scroll-animate {
  transform: translateX(-60px);
  opacity: 0;
}

.contact-content.scroll-animate.animate-in {
  transform: translateX(0);
  opacity: 1;
}

.contact-map {
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-map.scroll-animate {
  transform: translateX(60px);
  opacity: 0;
}

.contact-map.scroll-animate.animate-in {
  transform: translateX(0);
  opacity: 1;
}

/* Hero Bar Responsive */
@media (max-width: 1024px) {
  .hero-bar-container {
    top: 140px;
    left: -10px;
  }
  
  .hero-bar {
    width: 300px;
    padding: 14px 24px 14px 40px;
  }
  
  .hero-bar-text {
    font-size: 1.05rem;
    left: 25px;
    padding-left: 8px;
  }
}

@media (max-width: 768px) {
  .hero-bar-content {
    left: 0px;
  }
  .hero-bar-container {
    top: 100px;
    left: -5px;
  }
  
  .hero-bar {
    width: 280px;
    padding: 12px 20px 12px 35px;
  }
  
  .hero-bar-text {
    font-size: 1rem;
    left: 20px;
    padding-left: 6px;
  }
}

@media (max-width: 480px) {
  .hero-bar-container {
    top: 110px;
    left: -20px;
  }
  
  .hero-bar {
    width: 240px;
    padding: 10px 18px 10px 30px;
    border-radius: 16px;
  }
  
  .hero-bar-text {
    font-size: 0.9rem;
    left: 15px;
    padding-left: 5px;
  }
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .hero.scroll-animate {
    transform: translateY(30px);
  }
  
  .contact-content.scroll-animate,
  .contact-map.scroll-animate {
    transform: translateY(40px);
  }
  
  .contact-content.scroll-animate.animate-in,
  .contact-map.scroll-animate.animate-in {
    transform: translateY(0);
  }
}

/* ============================================= */
/* CONTACT SECTION STYLES                       */
/* ============================================= */

.contact-section {
  padding: 120px 0;
  background: linear-gradient(135deg, 
    #1a0a2e 0%,
    #16213e 25%,
    #0f3460 50%,
    #16213e 75%,
    #1a0a2e 100%
  );
  position: relative;
  overflow: hidden;
  width: 100%;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 191, 255, 0.06) 0%, transparent 60%);
  z-index: 1;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* Left Content */
.contact-content {
  padding-right: 40px;
}

.contact-header {
  margin-bottom: 50px;
}

.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, 
    #ff1493 0%, 
    #8a2be2 50%, 
    #00bfff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  word-wrap: break-word;
}

.contact-description {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.6;
  color: #ccc;
  margin: 0;
  word-wrap: break-word;
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.contact-btn {
  font-family: 'Montserrat', sans-serif;
  min-width: 160px;
  text-align: center;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 20, 147, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.15);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

.contact-icon .icon {
  font-size: 20px;
  /* Emojiler orijinal renklerinde kalacak */
}

.contact-details {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.contact-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-value:hover {
  color: var(--accent-pink);
}

a.contact-value:hover {
  color: var(--accent-pink);
}

.contact-value p {
  margin: 0;
  line-height: 1.5;
}

/* Right Map */
.contact-map {
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 20, 147, 0.1);
  position: relative;
}

.map-container {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 24px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(10px);
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.6;
}

.map-placeholder p {
  font-family: 'Montserrat', sans-serif;
  color: #ccc;
  font-size: 1.1rem;
  margin: 0;
}

/* Contact Responsive Design */
@media (max-width: 1024px) {
  .contact-layout {
    gap: 60px;
  }
  
  .contact-content {
    padding-right: 20px;
  }
  
  .contact-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
    overflow-x: hidden;
  }
  
  .contact-container {
    padding: 0 15px;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-content {
    padding-right: 0;
    text-align: center;
    width: 100%;
  }
  
  .contact-header {
    margin-bottom: 40px;
  }
  
  .contact-title {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }
  
  .contact-description {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    max-width: 100%;
  }
  
  .contact-buttons {
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
  }
  
  .contact-btn {
    min-width: 140px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .contact-info {
    gap: 20px;
  }
  
  .contact-item {
    padding: 18px;
    gap: 15px;
    margin: 0;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
  }
  
  .contact-icon .icon {
    font-size: 18px;
  }
  
  .contact-label {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  
  .contact-value {
    font-size: 0.9rem;
  }
  
  .contact-map {
    height: 300px;
    order: -1;
    margin: 0;
    width: 100%;
  }
  
  .map-container {
    border-radius: 20px;
  }
  
  .map-container iframe {
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 0;
  }
  
  .contact-container {
    padding: 0 10px;
  }
  
  .contact-layout {
    gap: 30px;
  }
  
  .contact-header {
    margin-bottom: 30px;
  }
  
  .contact-title {
    font-size: clamp(1.3rem, 8vw, 2rem);
    margin-bottom: 12px;
  }
  
  .contact-description {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
  }
  
  .contact-btn {
    width: 100%;
    max-width: 250px;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
  
  .contact-info {
    gap: 15px;
  }
  
  .contact-item {
    padding: 15px;
    gap: 12px;
    border-radius: 16px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-icon .icon {
    font-size: 16px;
  }
  
  .contact-label {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }
  
  .contact-value {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .contact-map {
    height: 250px;
    border-radius: 16px;
  }
  
  .map-container {
    border-radius: 16px;
  }
  
  .map-container iframe {
    border-radius: 16px;
  }
}
