/* ESENLER S?R?C? KURSU - ULTRA PREMIUM */

:root {
  --primary: #e50914;
  --secondary: #ff6b35;
  --accent: #00c853;
  --gold: #ffd700;
  --dark-bg: #0a0a0a;
  --dark-surface: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* HEADER - HYPER PREMIUM */
.premium-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(30px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
}

.premium-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 50%, transparent 100%);
  pointer-events: none;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  position: relative;
  z-index: 2;
}

/* LOGO - HYPER PREMIUM */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.logo::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--gold));
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.logo:hover::before {
  opacity: 0.1;
}

.logo:hover {
  transform: scale(1.08) translateY(-2px);
}

.logo-badge {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--gold) 100%);
  color: white;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
}

.logo-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.logo:hover .logo-badge::before {
  left: 100%;
}

.logo-text h1 {
  font-size: 16px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

/* NAVIGATION - HYPER PREMIUM */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: transparent;
  border: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

/* DROPDOWN SYSTEM - ANTI-FLICKER */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i,
.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  min-width: 280px;
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px) scale(0.95);
  transition: all 0.3s ease;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  z-index: 99999;
  pointer-events: none;
}

/* Anti-Flicker: Bridge between toggle and menu */
.dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
  z-index: 10;
}

.dropdown.active .dropdown-menu,
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  color: white;
  border-left-color: var(--primary);
  background: rgba(255, 107, 53, 0.1);
  transform: translateX(8px);
}

.dropdown-menu a i {
  margin-right: 12px;
  font-size: 16px;
  color: var(--secondary);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  padding: 12px;
  border-radius: 12px;
  transition: var(--transition);
}

.menu-line {
  width: 24px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* MAIN LAYOUT - HYPER PREMIUM */
.main-content {
  margin-top: 95px;
  min-height: calc(100vh - 95px);
}

/* BUTTONS - ULTRA PREMIUM */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary::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.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.6);
}

/* Header button specific styles */
.main-nav .btn-primary {
  padding: 6px 12px;
  font-size: 11px;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.main-nav .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-secondary::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.6s ease;
}

.btn-secondary:hover::before {
  left: 100%;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

/* STORIES SECTION - HYPER PREMIUM & COMPACT */
.stories-section {
  padding-top: 120px;
  padding-bottom: 30px;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  backdrop-filter: blur(20px);
  z-index: 100;
}

.stories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stories-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  gap: 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 30px;
}

.stories-text {
  flex: 0 0 250px;
  max-width: 250px;
}

.stories-title {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stories-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.3;
}

.stories-container-wrapper {
  flex: 1;
  max-width: 450px;
  overflow: hidden;
}

.stories-container {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.stories-container::-webkit-scrollbar {
  display: none;
}

.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 55px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-item:hover {
  transform: translateY(-8px) scale(1.05);
}

.story-ring {
  width: 55px;
  height: 55px;
  background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--gold));
  border-radius: 50%;
  padding: 2.5px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  transition: all 0.4s ease;
  position: relative;
}

.story-ring::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--gold));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.story-ring:hover::before {
  opacity: 0.6;
}

.story-ring:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
}

.story-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #000000;
  background: #000000;
  position: relative;
}

.story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-item:hover .story-avatar img {
  transform: scale(1.15);
}

.story-name {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-align: center;
  max-width: 55px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* STORY VIEWER MODAL - INSTAGRAM STYLE */
.story-viewer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.98);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.story-viewer.active {
  display: flex;
  opacity: 1;
}

.story-viewer-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('/assets/images/empstory.png') center/cover no-repeat;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.story-viewer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.story-viewer-background.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e50914 0%, #ff6b35 50%, #ffd700 100%);
  font-size: 180px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  letter-spacing: -5px;
}

.story-viewer-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  z-index: 10;
}

.story-viewer-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.story-progress-bar {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.story-progress-fill {
  height: 100%;
  background: #fff;
  width: 0%;
  transition: width 0.1s linear;
}

.story-viewer-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-viewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.story-viewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-viewer-avatar.no-image {
  background: linear-gradient(135deg, #e50914 0%, #ff6b35 50%, #ffd700 100%);
  font-size: 16px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.5px;
}

.story-viewer-username {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.story-viewer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 11;
}

.story-viewer-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.story-viewer-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  z-index: 10;
}

.story-viewer-comment {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  margin: 0;
}

.story-viewer-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  cursor: pointer;
  z-index: 5;
}

.story-viewer-nav.prev {
  left: 0;
}

.story-viewer-nav.next {
  right: 0;
}

/* Mobile Responsive for Story Viewer */
@media (max-width: 768px) {
  .story-viewer-content {
    max-width: 100%;
    height: 100vh;
    border-radius: 0;
  }
  
  .story-viewer-header {
    padding: 16px;
  }
  
  .story-viewer-footer {
    padding: 20px;
  }
  
  .story-viewer-comment {
    font-size: 14px;
  }
}

/* HERO SECTION - ULTRA PREMIUM */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  z-index: 10;
  max-width: 1000px;
  padding: 0 24px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  margin-bottom: 32px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  min-width: 150px;
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--secondary);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CARDS - ULTRA PREMIUM */
.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border-color: var(--primary);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* GRID SYSTEM */
.grid {
  display: grid;
  gap: 32px;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* COURSE CARDS - ULTRA PREMIUM */
.course-card {
  background: linear-gradient(135deg, var(--glass-bg) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.course-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 40px 100px rgba(255, 107, 53, 0.3);
  border-color: var(--primary);
}

.course-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  color: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.course-card:hover .course-icon {
  transform: scale(1.1);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
}

.course-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.course-description {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.course-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

/* HYPER PREMIUM SLIDERS */
.premium-slider-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  position: relative;
  overflow: hidden;
}

.premium-slider-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.05) 0%, transparent 80%);
  pointer-events: none;
}

.slider-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.premium-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.slider-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  overflow: hidden;
}

.slider-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05), rgba(0, 200, 83, 0.05));
  z-index: 1;
}

.slider-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 40px;
  position: relative;
}

.slider-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.slider-description {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.slider-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.slider-btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.slider-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
}

.slider-btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 50px rgba(255, 107, 53, 0.6);
}

.slider-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.slider-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary);
  transform: translateY(-4px);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.slider-nav:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.5);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

/* Hero Slider Responsive Navigation */
@media (max-width: 1200px) {
    .slider-nav {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    /* Container Extra Small */
    .container {
        padding: 0 15px !important;
    }
    
    /* Header Extra Small */
    .logo-text h1 {
        font-size: 12px !important;
    }
    
    .logo-badge {
        padding: 5px 10px !important;
        font-size: 9px !important;
    }
    
    /* Hero Extra Small */
    .hero-slider {
        min-height: 550px !important;
    }
    
    .slide-content {
        padding: 100px 0 60px !important;
    }
    
    .hero-badge {
        font-size: 10px !important;
        padding: 6px 12px !important;
    }
    
    .hero-title {
        font-size: 26px !important;
        line-height: 1.2 !important;
    }
    
    .hero-description {
        font-size: 14px !important;
        margin-bottom: 25px !important;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        padding: 14px 20px !important;
        font-size: 14px !important;
    }
    
    .hero-stats {
        gap: 15px !important;
    }
    
    .stat-number {
        font-size: 24px !important;
    }
    
    .stat-label {
        font-size: 10px !important;
    }
    
    /* Slider Navigation */
    .slider-nav {
        width: 40px !important;
        height: 40px !important;
        font-size: 14px !important;
    }
    
    .slider-prev {
        left: 5px !important;
    }
    
    .slider-next {
        right: 5px !important;
    }
    
    /* Stories Extra Small */
    .stories-title {
        font-size: 20px !important;
    }
    
    .story-ring {
        width: 55px !important;
        height: 55px !important;
    }
    
    .story-avatar {
        width: 50px !important;
        height: 50px !important;
    }
    
    .story-name {
        font-size: 10px !important;
    }
    
    /* Sections Extra Small */
    section {
        padding: 40px 0 !important;
    }
    
    .section-title {
        font-size: 24px !important;
    }
    
    .section-description {
        font-size: 14px !important;
    }
    
    /* Feature Items Extra Small */
    .feature-item {
        flex-direction: column !important;
        text-align: center !important;
        padding: 20px 15px !important;
    }
    
    .feature-icon {
        margin-bottom: 12px !important;
    }
    
    .feature-content h3 {
        font-size: 15px !important;
        margin-bottom: 8px !important;
    }
    
    .feature-content p {
        font-size: 12px !important;
    }
    
    /* Stats Grid Extra Small */
    .stat-card {
        padding: 20px 15px !important;
    }
    
    .stat-card .stat-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }
    
    .stat-card h3 {
        font-size: 28px !important;
    }
    
    .stat-card p {
        font-size: 12px !important;
    }
    
    /* Team Cards Extra Small */
    .team-card {
        width: 260px !important;
    }
    
    /* Footer Extra Small */
    .footer-stats-bar .stat-item {
        padding: 18px 15px !important;
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .footer-stats-bar .stat-icon {
        margin-bottom: 12px !important;
    }
    
    .kainzem-logo {
        font-size: 28px !important;
        letter-spacing: 2px !important;
    }
    
    .kainzem-logo i {
        font-size: 24px !important;
    }
    
    .kainzem-subtitle {
        font-size: 12px !important;
    }
    
    .kainzem-text {
        font-size: 11px !important;
    }
}

@media (max-width: 375px) {
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .slider-prev {
        left: 2px;
    }
    
    .slider-next {
        right: 2px;
    }
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-indicator.active {
  background: var(--primary);
  transform: scale(1.3);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.5);
}

.slider-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

/* Auto-playing animation */
@keyframes slideProgress {
  from { width: 0%; }
  to { width: 100%; }
}

.slider-indicator.active::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  animation: slideProgress 5s linear infinite;
}

/* Featured Courses Slider */
.featured-courses-slider {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
}

.courses-slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.courses-slider-track {
  display: flex;
  transition: transform 0.6s ease;
  gap: 30px;
  padding: 20px;
}

.course-slide {
  min-width: 350px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.course-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.course-slide:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(255, 107, 53, 0.3);
  border-color: var(--primary);
}

.course-slide-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  color: white;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
}

.course-slide-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.course-slide-description {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.course-slide-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 24px;
}

/* DETAIL PAGES - ULTRA PREMIUM */
.detail-header {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  position: relative;
  overflow: hidden;
}

.detail-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(255, 107, 53, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.detail-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.detail-meta {
  display: flex;
  gap: 32px;
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.detail-meta span {
  background: var(--glass-bg);
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.detail-content {
  padding: 80px 0;
}

.tabs {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  border-bottom: 2px solid var(--glass-border);
  flex-wrap: wrap;
  justify-content: center;
}

.tab-button {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 24px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  border-radius: 8px 8px 0 0;
}

.tab-button:hover,
.tab-button.active {
  color: var(--text-primary);
  border-bottom-color: var(--primary);
  background: var(--glass-bg);
}

.tab-content {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FOOTER - ULTRA PREMIUM */
.ultra-premium-footer {
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
  padding: 0;
  margin-top: 0;
  border-top: none;
  position: relative;
  overflow: hidden;
}

.ultra-premium-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(0, 150, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

/* Animated Background Shapes */
.footer-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-shapes .shape {
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 150, 255, 0.1));
  border-radius: 50%;
  filter: blur(60px);
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 250px;
  height: 250px;
  top: 60%;
  right: 10%;
  animation-delay: -5s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 50%;
  animation-delay: -10s;
}

.shape-4 {
  width: 350px;
  height: 350px;
  top: 40%;
  right: 30%;
  animation-delay: -15s;
}

.shape-5 {
  width: 280px;
  height: 280px;
  bottom: 10%;
  left: 20%;
  animation-delay: -7s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.5;
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.4;
  }
}

/* Footer Stats Bar */
.footer-stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 60px;
}

.footer-stats-bar .stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-stats-bar .stat-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
}

.footer-stats-bar .stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.05));
  border-radius: 16px;
  font-size: 28px;
  color: var(--secondary);
}

.footer-stats-bar .stat-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-stats-bar .stat-number {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.footer-stats-bar .stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-logo-badge {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 15px;
  position: relative;
  padding-left: 20px;
}

.footer-description i {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-size: 12px;
  opacity: 0.5;
}

/* Footer Section Headers */
.footer-section h3 {
  color: var(--text-primary);
  margin-bottom: 28px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section h3 i {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
}

.footer-links li a:hover {
  color: var(--secondary);
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateX(5px);
}

.footer-links li a i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  opacity: 0.6;
}

/* Footer Contact Info */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 107, 53, 0.05);
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateX(5px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details a,
.contact-details span {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--secondary);
}

/* Social Links */
.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-weight: 600;
}

.social-link i {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link.facebook:hover {
  background: linear-gradient(135deg, #1877f2, #0c5dbe);
  border-color: #1877f2;
  color: white;
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4);
}

.social-link.instagram:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e6683c;
  color: white;
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.4);
}

.social-link.twitter:hover {
  background: linear-gradient(135deg, #1da1f2, #0c85d0);
  border-color: #1da1f2;
  color: white;
  box-shadow: 0 8px 24px rgba(29, 161, 242, 0.4);
}

.social-link.youtube:hover {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  border-color: #ff0000;
  color: white;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4);
}

.social-link.linkedin:hover {
  background: linear-gradient(135deg, #0077b5, #005582);
  border-color: #0077b5;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 119, 181, 0.4);
}

.social-link.whatsapp:hover {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-color: #25d366;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* Footer Certificates */
.footer-certificates {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.certificate-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.certificate-item:hover {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateX(5px);
}

.certificate-item i {
  color: var(--secondary);
  font-size: 18px;
}

/* Footer Map */
.footer-map-container {
  margin-top: 24px;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.map-wrapper:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
}

/* Footer Bottom */
.footer-bottom {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.copyright {
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.copyright i {
  color: var(--secondary);
}

.copyright strong {
  color: var(--text-primary);
  font-weight: 700;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 8px;
}

.footer-bottom-links a:hover {
  color: var(--secondary);
  background: rgba(255, 107, 53, 0.1);
}

.footer-bottom-links a i {
  font-size: 12px;
}

.footer-developer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 150, 255, 0.1));
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
}

.footer-developer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 107, 53, 0.1),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.footer-developer:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 107, 53, 0.6);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(0, 150, 255, 0.15));
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.kainzem-logo {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff0000 0%, #ff6b35 50%, #00c853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
  position: relative;
  z-index: 1;
  animation: glow 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 12px;
}

.kainzem-logo i {
  font-size: 40px;
  background: linear-gradient(135deg, #ff0000 0%, #ff6b35 50%, #00c853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 2s infinite;
}

@keyframes glow {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
  }
  50% {
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
  }
}

.kainzem-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--text-secondary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kainzem-text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  font-style: italic;
}

/* Responsive Footer */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 0;
    gap: 16px;
  }
  
  .footer-stats-bar .stat-item {
    padding: 20px 16px;
  }
  
  .footer-stats-bar .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .footer-stats-bar .stat-number {
    font-size: 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
  }
  
  .kainzem-logo {
    font-size: 36px;
  }
  
  .footer-developer {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-stats-bar {
    grid-template-columns: 1fr;
  }
  
  .ultra-premium-footer {
    padding: 0;
  }
  
  .footer-stats-bar {
    padding: 30px 0;
  }
}

/* SOCIAL SHARE */
.social-share {
  display: flex;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.share-btn {
  background: var(--glass-bg);
  color: white;
  border: 1px solid var(--glass-border);
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
}

.share-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.share-btn.facebook:hover { background: #1877f2; }
.share-btn.twitter:hover { background: #1da1f2; }
.share-btn.whatsapp:hover { background: #25d366; }

/* READING PROGRESS */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 9999;
}

.reading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  width: 0%;
  transition: width 0.1s ease;
}

/* RESPONSIVE DESIGN - HYPER PREMIUM */
@media (max-width: 768px) {
    /* Container */
    .container {
      /*  padding: 0 20px !important;
        max-width: 100% !important;*/
    }
    
    /* Header Mobile */
    .premium-header {
        padding: 12px 0 !important;
    }
    
    .header-content {
        padding: 0 !important;
        gap: 15px;
    }
    
    .logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .logo-badge {
        padding: 6px 12px !important;
        font-size: 10px !important;
    }
    
    .logo-text h1 {
        font-size: 14px !important;
        white-space: nowrap;
    }
    
    /* Mobile Menu */
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(30px);
        z-index: 9999;
        transition: left 0.3s ease;
        overflow-y: auto;
        padding-top: 80px;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 8px;
        align-items: stretch;
    }
    
    .main-nav ul li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 16px 20px !important;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        text-align: left;
        border: 1px solid var(--glass-border);
        font-size: 15px !important;
        width: 100%;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px !important;
        font-size: 15px !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.03);
        margin-top: 8px;
        border-radius: 12px;
        padding: 8px;
    }
    
    .dropdown-menu li a {
        padding: 12px 16px !important;
        font-size: 14px !important;
    }
    
    /* Hero Slider Mobile */
    .hero-slider {
        height: 80vh !important;
        min-height: 600px;
        margin-top: -40px;
    }
    
    .slide-content {
        padding: 120px 0 80px !important;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 11px !important;
        padding: 8px 16px !important;
    }
    
    .hero-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    
    .hero-description {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
    }
    
    .hero-actions {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100%;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100% !important;
        justify-content: center !important;
        padding: 16px 24px !important;
        font-size: 15px !important;
    }
    
    .hero-stats {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 20px !important;
        margin-top: 40px !important;
    }
    
    .hero-stats .stat-item {
        flex: 1;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 28px !important;
    }
    
    .stat-label {
        font-size: 11px !important;
    }
    
    /* Stories Mobile */
    .stories-section {
        padding-top: 54px !important;
        padding-bottom: 0px !important;
    }
    
    .stories-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0;
    }
    
    .stories-title {
        font-size: 22px !important;
    }
    
    .stories-text {
        max-width: 100%;
        flex: none;
    }
    
    .stories-container-wrapper {
        width: 100%;
        max-width: none;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .stories-container {
        padding-bottom: 15px;
    }
    
    .story-ring {
        width: 50px !important;
        height: 50px !important;
    }
    
    .story-avatar {
        width: 100% !important;
        height: 100% !important;
    }
    
    .story-item {
        min-width: 50px !important;
        gap: 4px !important;
    }
    
    .story-name {
        font-size: 10px !important;
        max-width: 50px !important;
    }
    
    /* Sections Mobile */
    section {
        padding: 50px 0 !important;
    }
    
    .section-header {
        margin-bottom: 40px !important;
        padding: 0 !important;
    }
    
    .section-badge {
        font-size: 12px !important;
        padding: 8px 16px !important;
        margin-bottom: 15px !important;
    }
    
    .section-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .section-description {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
    
    /* Why Us Section Mobile */
    .why-us-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .features-list {
        gap: 15px !important;
    }
    
    .feature-item {
        flex-direction: row !important;
        padding: 16px !important;
        gap: 15px !important;
    }
    
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 22px !important;
    }
    
    .feature-content h3 {
        font-size: 16px !important;
    }
    
    .feature-content p {
        font-size: 13px !important;
    }
    
    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .stat-card {
        padding: 25px 20px !important;
    }
    
    .stat-card .stat-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }
    
    .stat-card h3 {
        font-size: 32px !important;
    }
    
    .stat-card p {
        font-size: 13px !important;
    }
    
    /* Courses Section Mobile */
    .courses-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Team Section Mobile */
    .team-section {
        padding: 50px 0 !important;
    }
    
    .team-card {
        width: 280px !important;
    }
    
    .team-nav-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 16px !important;
    }
    
    .team-nav-btn.prev {
        left: 5px !important;
    }
    
    .team-nav-btn.next {
        right: 5px !important;
    }
    
    /* Success Section Mobile */
    .success-stats {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .success-stat-card {
        padding: 20px !important;
    }
    
    .success-stat-number {
        font-size: 28px !important;
    }
    
    /* Gallery Section Mobile */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* Google Reviews Mobile */
    .google-reviews-header {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px;
    }
    
    .google-reviews-stats {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .google-reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .google-review-card {
        padding: 20px !important;
    }
    
    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 28px !important;
    }
    
    .cta-content p {
        font-size: 15px !important;
    }
    
    .cta-actions {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100% !important;
    }
    
    /* FAQ Section Mobile */
    .faq-container {
        grid-template-columns: 1fr !important;
    }
    
    /* Footer Mobile */
    .footer-stats-bar {
        grid-template-columns: 1fr !important;
        padding: 30px 0 !important;
        gap: 15px !important;
    }
    
    .footer-stats-bar .stat-item {
        padding: 20px !important;
    }
    
    .footer-stats-bar .stat-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }
    
    .footer-stats-bar .stat-number {
        font-size: 24px !important;
    }
    
    .footer-stats-bar .stat-label {
        font-size: 12px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .social-links {
        grid-template-columns: 1fr !important;
    }
    
    .footer-bottom-content {
        flex-direction: column !important;
        text-align: center;
        gap: 20px !important;
    }
    
    .footer-bottom-links {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px;
    }
    
    .kainzem-logo {
        font-size: 32px !important;
    }
    
    .kainzem-subtitle {
        font-size: 14px !important;
    }
    
    .kainzem-text {
        font-size: 12px !important;
    }
    
    .story-item {
        min-width: 60px;
    }
    
    .story-name {
        max-width: 60px;
        font-size: 10px;
    }
    
    /* Slider Mobile */
    .hero-slider {
        height: 70vh;
    }
    
    .slide-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 30px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stats .stat-item {
        min-width: 100px;
        padding: 16px;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .slider-indicators {
        bottom: 20px;
        gap: 12px;
    }
    
    .slider-indicator {
        width: 12px;
        height: 12px;
    }
    
    .course-slide {
        min-width: 280px;
        padding: 30px 20px;
    }
    
    .course-slide-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .detail-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .tabs {
        gap: 16px;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .tabs::-webkit-scrollbar {
        display: none;
    }
    
    .tab-button {
        white-space: nowrap;
        min-width: 120px;
    }
    
    .course-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

.hidden { display: none; }
.visible { display: block; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }

.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.glass-bg { background: var(--glass-bg); }
.glass-border { border: 1px solid var(--glass-border); }

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-surface);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #b8070e, var(--primary));
}

/* SELECTION STYLES */
::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

/* LOADING SCREEN - HYPER PREMIUM */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
    max-width: 400px;
}

.loader-logo .logo-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--gold) 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
}

.loader-text {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-top-color: var(--secondary);
    animation-duration: 0.8s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-top-color: var(--accent);
    animation-duration: 0.6s;
}

.loader-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* SLIDER ANIMATIONS */
@keyframes slideContentIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* PREMIUM ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* HERO SLIDER - ULTRA PREMIUM FIXED */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background: #0a0a0a;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* İlk slide hızlı yükleme */
.hero-slide:first-child {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: transform 8s ease-out;
    z-index: 1;
}

.hero-slide.active .slide-bg {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    width: 100%;
    animation: slideContentIn 1.2s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: bounceIn 1s ease-out 0.3s both;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-badge i {
    color: var(--gold);
    font-size: 16px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    animation: slideProgress 2s ease-out 1s both;
}

.hero-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.hero-stats .stat-item {
    animation: bounceIn 0.8s ease-out;
}

.hero-stats .stat-item:nth-child(1) { animation-delay: 1.3s; }
.hero-stats .stat-item:nth-child(2) { animation-delay: 1.5s; }
.hero-stats .stat-item:nth-child(3) { animation-delay: 1.7s; }

/* SLIDER NAVIGATION - ULTRA PREMIUM */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.slider-nav:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
    border-color: var(--primary);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* SLIDER INDICATORS - ULTRA PREMIUM */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 100;
}

.slider-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.slider-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.slider-indicator.active {
    background: var(--primary);
    transform: scale(1.4);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.6);
    border-color: var(--secondary);
}

.slider-indicator.active::before {
    width: 100%;
    height: 100%;
}

.slider-indicator:hover:not(.active) {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

/* AUTO-PROGRESS ANIMATION */
@keyframes autoProgress {
    from { 
        width: 0;
        height: 0;
    }
    to { 
        width: 100%;
        height: 100%;
    }
}

.slider-indicator.active::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    animation: autoProgress 5s linear;
/* =================
   HERO SLIDER NAVIGATION
   ================= */

/* Hero Navigation Buttons */
.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 107, 53, 0.7);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    color: #ffffff;
}

.hero-prev {
    left: 10px;
}

.hero-next {
    right: 10px;
}

/* Hero Navigation Icons */
.hero-prev i,
.hero-next i {
    font-size: 16px;
    line-height: 1;
    margin: 0;
    padding: 0;
    font-weight: normal;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.3);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

.hero-indicator.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.6);
}

.hero-indicator.active::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    animation: heroProgress 5s linear;
}

@keyframes heroProgress {
    from { 
        clip-path: circle(0 at center); 
    }
    to { 
        clip-path: circle(100% at center); 
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 75vh;
    }
    
    .hero-prev,
    .hero-next {
        width: 35px;
        height: 35px;
        font-size: 12px;
        top: 50%;
    }
    
    .hero-prev {
        left: 8px;
    }
    
    .hero-next {
        right: 8px;
    }
    
    .hero-prev i,
    .hero-next i {
        font-size: 12px;
    }
    
    .hero-indicators {
        bottom: 15px;
        gap: 6px;
    }
    
    .hero-indicator {
        width: 6px;
        height: 6px;
    }
}

/* ============= ULTRA PREMIUM SECTIONS - FIXED ============= */
/* Updated: 2025-11-02 - COMPLETE REDESIGN */

/* Trust Section - Ultra Premium */
.trust-section {
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    position: relative !important;
    z-index: 1 !important;
}

.trust-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.badge-item {
    flex: 1 1 300px !important;
    max-width: 350px !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 25px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    transition: all 0.3s ease !important;
}

.badge-item:hover {
    background: rgba(255, 107, 53, 0.1) !important;
    border-color: rgba(255, 107, 53, 0.3) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2) !important;
}

.badge-icon {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    color: #ff6b35 !important;
    flex-shrink: 0 !important;
}

.badge-content {
    flex: 1 !important;
}

.badge-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 5px 0 !important;
}

.badge-subtitle {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s;
}

.badge-item:hover::before {
    left: 100%;
}

.badge-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.badge-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.badge-content {
    flex: 1;
}

.badge-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.badge-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

/* Classes Section - Ultra Premium */
.classes-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(5, 5, 5, 0.98) 0%, 
        rgba(15, 15, 15, 0.95) 50%, 
        rgba(10, 10, 10, 0.98) 100%);
    position: relative;
}

.classes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary), #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), #ff6b35);
    border-radius: 2px;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.class-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.class-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.class-card:hover::before {
    opacity: 1;
}

.class-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.2);
}

.class-card.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-color: rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), #ff6b35);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.class-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary);
    margin: 0 auto 25px;
    transition: all 0.4s;
}

.class-card:hover .class-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.15));
}

.class-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.class-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.class-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.class-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.class-features li i {
    color: var(--primary);
    font-size: 16px;
}

.class-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #ff6b35);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.class-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.6s;
}

.class-btn:hover::before {
    left: 100%;
}

.class-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .badge-item {
        padding: 25px;
        gap: 15px;
    }
    
    .badge-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .badge-title {
        font-size: 20px;
    }
    
    .classes-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .classes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .class-card {
        padding: 30px 25px;
    }
    
    .class-card.featured {
        transform: none;
    }
}

/* ========== CARD SECTIONS FIX - 2025-11-02 ========== */

/* Trust Section Clean Fix */
.trust-section {
    padding: 60px 0 !important;
    background: #111 !important;
    color: white !important;
}

.trust-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: center !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.trust-section .badge-item {
    flex: 1 1 250px !important;
    max-width: 300px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    color: white !important;
}

.trust-section .badge-item:hover {
    background: rgba(255, 107, 53, 0.1) !important;
    border-color: #ff6b35 !important;
    transform: translateY(-3px) !important;
}

.trust-section .badge-icon {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 107, 53, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    color: #ff6b35 !important;
    flex-shrink: 0 !important;
}

.trust-section .badge-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: white !important;
    margin: 0 0 3px 0 !important;
}

.trust-section .badge-subtitle {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
}

/* Classes Section Clean Fix */
.classes-section {
    padding: 60px 0 !important;
    background: #0a0a0a !important;
    color: white !important;
}

.classes-section .section-header {
    text-align: center !important;
    margin-bottom: 40px !important;
}

.classes-section .section-badge {
    display: inline-block !important;
    background: rgba(255, 107, 53, 0.2) !important;
    color: #ff6b35 !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
}

.classes-section .section-title {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: white !important;
    margin: 0 0 15px 0 !important;
}

.classes-section .section-title .highlight {
    color: #ff6b35 !important;
}

.classes-section .section-description {
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 500px !important;
    margin: 0 auto !important;
}

.classes-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 25px !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.classes-section .class-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    padding: 25px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.classes-section .class-card:hover {
    background: rgba(255, 107, 53, 0.1) !important;
    border-color: #ff6b35 !important;
    transform: translateY(-5px) !important;
}

.classes-section .class-card.featured {
    border-color: #ff6b35 !important;
    background: rgba(255, 107, 53, 0.1) !important;
}

.classes-section .featured-badge {
    position: absolute !important;
    top: -10px !important;
    right: 15px !important;
    background: #ff6b35 !important;
    color: white !important;
    padding: 5px 12px !important;
    border-radius: 15px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}

.classes-section .class-icon {
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 107, 53, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    color: #ff6b35 !important;
    margin: 0 auto 15px !important;
}

.classes-section .class-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: white !important;
    margin: 0 0 10px 0 !important;
}

.classes-section .class-description {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 0 15px 0 !important;
}

.classes-section .class-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
    text-align: left !important;
}

.classes-section .class-features li {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 4px 0 !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.classes-section .class-features li i {
    color: #ff6b35 !important;
    font-size: 12px !important;
}

.classes-section .class-btn {
    display: inline-block !important;
    background: #ff6b35 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.classes-section .class-btn:hover {
    background: #c40819 !important;
    transform: translateY(-2px) !important;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .trust-section .badge-item {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .classes-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Ultra Premium 4-Card Layout */
.classes-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Tablet Responsive - 2 cards per row */
@media (max-width: 1024px) {
    .classes-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

/* Mobile Responsive - 1 card per row */
@media (max-width: 768px) {
    .classes-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

/* ========== TEAM SLIDER STYLES ========== */
.team-slider-container {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.team-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.team-slider .team-member {
    flex: 0 0 280px;
    min-width: 280px;
}

/* Pulse Animation for Phone Icon */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* CTA Section Responsive */
@media (max-width: 768px) {
    .cta-content {
        padding: 40px 25px !important;
    }
    
    .cta-content h2 {
        font-size: 36px !important;
    }
    
    .cta-content p {
        font-size: 18px !important;
    }
    
    .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100% !important;
        max-width: 300px !important;
        justify-content: center !important;
    }
}

/* Shimmer Animation for Rating Bars */
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Google Reviews Responsive */
@media (max-width: 1200px) {
    .google-reviews-stats {
        grid-template-columns: 350px 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 768px) {
    .google-reviews-stats {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .google-reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
}

@media (max-width: 480px) {
    .google-review-card {
        padding: 25px 20px !important;
    }
    
    .reviewer-avatar img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .review-text {
        font-size: 15px !important;
    }
}
.team-nav-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    border: none !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    pointer-events: all !important;
}

.team-nav-btn:hover {
    background: var(--primary) !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.5) !important;
}

.team-nav-btn.prev {
    left: 20px !important;
}

.team-nav-btn.next {
    right: 20px !important;
}

.team-nav-btn i {
    font-size: 20px !important;
}

/* Remove padding from team slider container */
.team-slider-container {
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 auto !important;
    max-width: 1400px !important;
}

/* Team Section Navigation Responsive - Same as Hero */
@media (max-width: 1200px) {
    .team-nav-btn {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
    
    .team-nav-btn.prev {
        left: 15px;
    }
    
    .team-nav-btn.next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .team-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .team-nav-btn.prev {
        left: 10px;
    }
    
    .team-nav-btn.next {
        right: 10px;
    }
    
    .team-nav-btn i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .team-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .team-nav-btn.prev {
        left: 5px;
    }
    
    .team-nav-btn.next {
        right: 5px;
    }
    
    .team-nav-btn i {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .team-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .team-nav-btn.prev {
        left: 2px;
    }
    
    .team-nav-btn.next {
        right: 2px;
    }
    
    .team-nav-btn i {
        font-size: 12px;
    }
}

/* Dots Navigation */
.team-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.team-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-dot.active {
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .team-slider .team-member {
        flex: 0 0 260px;
        min-width: 260px;
    }
    
    .team-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .team-nav-btn i {
        font-size: 12px;
    }
    
    .team-nav-btn.prev {
        left: -15px;
    }
    
    .team-nav-btn.next {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .team-slider .team-member {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .team-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .team-nav-btn i {
        font-size: 14px;
    }
    
    .team-nav-btn.prev {
        left: -20px;
    }
    
    .team-nav-btn.next {
        right: -20px;
    }
    
    /* Mobile team section adjustments */
    .team-section {
        padding: 60px 0 !important;
    }
    
    .team-section .section-header {
        padding: 20px !important;
        margin-bottom: 40px !important;
    }
    
    .team-section .section-title {
        font-size: 32px !important;
    }
    
    .team-section .section-description {
        font-size: 16px !important;
    }
}

/* Tablet responsive adjustments */
@media (max-width: 1024px) {
    .team-slider .team-member {
        flex: 0 0 320px;
        min-width: 320px;
    }
    
    .team-section .section-title {
        font-size: 36px !important;
    }
}

/* Ultra-responsive for very small screens */
@media (max-width: 375px) {
    .team-slider .team-member {
        flex: 0 0 240px;
        min-width: 240px;
        padding: 20px !important;
    }
    
    .team-nav-btn {
        width: 30px;
        height: 30px;
    }
    
    .team-nav-btn i {
        font-size: 10px;
    }
    
    .team-nav-btn.prev {
        left: -10px;
    }
    
    .team-nav-btn.next {
        right: -10px;
    }
    
    .team-section .section-title {
        font-size: 28px !important;
    }
    
    .team-section .section-description {
        font-size: 14px !important;
    }
}
/* Add to the end of CSS file */

/* ========== ULTRA PREMIUM WHATSAPP WIDGET ========== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.whatsapp-float-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.whatsapp-float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: bounce 1s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate(0, 0);
    }
    40%, 43% {
        transform: translate(-5px, -5px);
    }
    70% {
        transform: translate(-3px, -3px);
    }
    90% {
        transform: translate(-1px, -1px);
    }
}

.whatsapp-popup {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 350px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.popup-header {
    background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.agent-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.agent-details h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.status {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 5px;
}

.status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4fc3f7;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.close-popup {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    padding: 5px;
    border-radius: 50%;
}

.close-popup:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.popup-body {
    padding: 25px;
}

.chat-message {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
}

.chat-message::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #f0f0f0;
}

.chat-message p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.chat-message p:last-child {
    margin-bottom: 0;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: #075e54;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-action:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25d366;
    transform: translateX(5px);
    color: #075e54;
}

.quick-action i {
    font-size: 18px;
    color: #25d366;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-btn {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .whatsapp-popup {
        width: 300px;
        bottom: 80px;
    }
    
    .popup-header {
        padding: 15px;
    }
    
    .agent-avatar {
        width: 40px;
        height: 40px;
    }
    
    .popup-body {
        padding: 20px;
    }
    
    .quick-action {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .whatsapp-popup {
        width: 280px;
        right: -10px;
    }
}

/* ========== ULTRA PREMIUM WHATSAPP WIDGET FORCED STYLES ========== */
#whatsapp-widget {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 99999 !important;
    font-family: Arial, sans-serif !important;
}

#whatsapp-btn {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    border: none !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 32px !important;
    cursor: pointer !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    animation: pulse 2s infinite !important;
}

#whatsapp-btn:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6) !important;
}

#notification-badge {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    background: #ff4757 !important;
    color: white !important;
    border-radius: 50% !important;
    width: 24px !important;
    height: 24px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid white !important;
    animation: bounce 1s infinite !important;
}

#whatsapp-popup {
    position: absolute !important;
    bottom: 90px !important;
    right: 0 !important;
    width: 350px !important;
    background: white !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(20px) scale(0.9) !important;
    transition: all 0.4s ease !important;
    z-index: 100000 !important;
}

.whatsapp-popup-active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

/* Mobile WhatsApp Widget Responsive */
@media (max-width: 768px) {
    #whatsapp-widget {
        bottom: 20px !important;
        right: 20px !important;
    }
    
    #whatsapp-btn {
        width: 60px !important;
        height: 60px !important;
        font-size: 26px !important;
    }
    
    #whatsapp-popup {
        width: 300px !important;
        bottom: 80px !important;
        right: -10px !important;
    }
}

@media (max-width: 480px) {
    #whatsapp-popup {
        width: 280px !important;
        right: -15px !important;
    }
}

/* Why Us Stats Cards */
.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
}

.stat-card h3 {
    animation: countUp 1s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card .stat-icon {
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Stats Grid */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   ULTRA PREMIUM MOBILE RESPONSIVE DESIGN
   ============================================ */

/* Tablet & Mobile (768px and below) */
@media (max-width: 768px) {
    /* Container Padding */
    .container {
        padding: 0 20px;
    }
    
    /* Hero Section Mobile */
    .hero-slider {
        height: 600px !important;
    }
    
    .slide-content {
        padding: 100px 0 60px !important;
    }
    
    .slide-content h1 {
        font-size: 36px !important;
        line-height: 1.2 !important;
    }
    
    .slide-content p {
        font-size: 16px !important;
    }
    
    .slide-actions {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        justify-content: center !important;
        padding: 16px 32px !important;
    }
    
    /* Stories Section Mobile */
    .stories-section {
        padding: 40px 0 !important;
    }
    
    .stories-title {
        font-size: 24px !important;
    }
    
    
    .story-avatar {
        width: 62px !important;
        height: 62px !important;
    }
    
    .story-name {
        font-size: 11px !important;
    }
    
    /* Courses Section Mobile */
    .courses-section {
        padding: 60px 0 !important;
    }
    
    .section-title {
        font-size: 32px !important;
    }
    
    .section-description {
        font-size: 16px !important;
    }
    
    .courses-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    /* Why Us Section Mobile */
    .why-us-section {
        padding: 60px 0 !important;
    }
    
    .why-us-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .feature-item {
        padding: 18px !important;
    }
    
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
    
    .feature-item h3 {
        font-size: 16px !important;
    }
    
    .feature-item p {
        font-size: 13px !important;
    }
    
    .stats-grid {
        gap: 15px !important;
    }
    
    .stat-card {
        padding: 25px 20px !important;
    }
    
    .stat-card .stat-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 28px !important;
    }
    
    .stat-card h3 {
        font-size: 32px !important;
    }
    
    .stat-card p {
        font-size: 13px !important;
    }
    
    /* Team Section Mobile */
    .team-section {
        padding: 60px 0 !important;
    }
    
    .team-card {
        width: 280px !important;
    }
    
    .team-nav-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 18px !important;
    }
    
    .team-nav-btn.prev {
        left: 10px !important;
    }
    
    .team-nav-btn.next {
        right: 10px !important;
    }
    
    /* Success Stories Mobile */
    .success-section {
        padding: 60px 0 !important;
    }
    
    .success-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .success-stat-card {
        padding: 25px 20px !important;
    }
    
    .success-stat-number {
        font-size: 32px !important;
    }
    
    /* Gallery Section Mobile */
    .gallery-section {
        padding: 60px 0 !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    /* Google Reviews Mobile */
    .google-reviews-section {
        padding: 60px 0 !important;
    }
    
    .google-reviews-header {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .google-reviews-stats {
        grid-template-columns: 1fr !important;
    }
    
    .google-reviews-grid {
        grid-template-columns: 1fr !important;
    }
    
    .google-review-card {
        padding: 25px 20px !important;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 0 !important;
    }
    
    .cta-content h2 {
        font-size: 32px !important;
    }
    
    .cta-content p {
        font-size: 16px !important;
    }
    
    /* FAQ Section Mobile */
    .faq-section {
        padding: 60px 0 !important;
    }
    
    .faq-container {
        grid-template-columns: 1fr !important;
    }
    
    /* Footer Mobile */
    .footer-stats-bar {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 40px 0 !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .social-links {
        grid-template-columns: 1fr !important;
    }
    
    .footer-bottom-content {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .footer-bottom-links {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .kainzem-logo {
        font-size: 36px !important;
    }
    
    /* Header Mobile Menu */
    .premium-header {
        padding: 0 !important;
    }
    
    .logo-text h1 {
        font-size: 16px !important;
    }
    
    .logo-badge {
        padding: 8px 12px !important;
        font-size: 11px !important;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    /* Extra Small Adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Hero Extra Small */
    .hero-slider {
        height: 500px !important;
    }
    
    .slide-content h1 {
        font-size: 28px !important;
    }
    
    .slide-content p {
        font-size: 14px !important;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px !important;
        font-size: 14px !important;
    }
    
    /* Stories Extra Small */
    .story-ring {
        width: 45px !important;
        height: 45px !important;
    }
    
    .story-avatar {
        width: 100% !important;
        height: 100% !important;
    }
    
    .story-item {
        min-width: 45px !important;
        gap: 3px !important;
    }
    
    .story-name {
        font-size: 9px !important;
        max-width: 45px !important;
    }
    
    /* Section Titles Extra Small */
    .section-title {
        font-size: 26px !important;
    }
    
    .section-description {
        font-size: 14px !important;
    }
    
    /* Feature Items Extra Small */
    .feature-item {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .feature-icon {
        margin-bottom: 15px !important;
    }
    
    /* Stats Grid Extra Small */
    .footer-stats-bar,
    .success-stats {
        grid-template-columns: 1fr !important;
    }
    
    .stat-card {
        padding: 20px 15px !important;
    }
    
    .stat-card .stat-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 22px !important;
    }
    
    .stat-card h3 {
        font-size: 28px !important;
    }
    
    /* Gallery Extra Small */
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Team Cards Extra Small */
    .team-card {
        width: 260px !important;
    }
    
    /* Footer Extra Small */
    .footer-stats-bar {
        padding: 30px 0 !important;
    }
    
    .footer-stats-bar .stat-item {
        padding: 20px 15px !important;
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .footer-stats-bar .stat-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }
    
    .footer-stats-bar .stat-number {
        font-size: 24px !important;
    }
    
    .kainzem-logo {
        font-size: 28px !important;
        letter-spacing: 2px !important;
    }
    
    .kainzem-logo i {
        font-size: 28px !important;
    }
    
    .kainzem-subtitle {
        font-size: 12px !important;
    }
    
    .kainzem-text {
        font-size: 11px !important;
    }
    
    /* Logo Extra Small */
    .logo-text h1 {
        font-size: 14px !important;
    }
    
    .logo-badge {
        padding: 6px 10px !important;
        font-size: 10px !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .btn-primary:hover,
    .btn-secondary:hover,
    .course-card:hover,
    .feature-item:hover,
    .stat-card:hover {
        transform: none !important;
    }
    
    /* Increase touch targets */
    .btn-primary,
    .btn-secondary,
    a,
    button {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better touch scrolling */
    .team-slider-track,
    .stories-container {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 400px !important;
    }
    
    .slide-content {
        padding: 80px 0 40px !important;
    }
    
    .slide-content h1 {
        font-size: 32px !important;
    }
    
    .premium-header {
        padding: 8px 0 !important;
    }
}

/* High DPI Screens (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Sharper borders and shadows */
    .course-card,
    .feature-item,
    .stat-card,
    .team-card {
        border-width: 0.5px;
    }
}

/* Print Styles */
@media print {
    .premium-header,
    .mobile-menu-toggle,
    .btn-primary,
    .btn-secondary,
    .team-nav-btn,
    .whatsapp-widget,
    .floating-shapes {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: 100% !important;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    * {
        animation-duration: 0.3s !important;
    }
    
    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Better scrolling */
    html {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Prevent text size adjustment on orientation change */
    body {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Mobile safe area padding (for notch devices) */
    .premium-header {
        padding-top: env(safe-area-inset-top);
    }
    
    .container {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    /* Optimize touch interactions */
    button,
    a,
    .btn-primary,
    .btn-secondary,
    .nav-link {
        -webkit-tap-highlight-color: rgba(255, 107, 53, 0.3);
        touch-action: manipulation;
    }
    
    /* Remove outline on touch */
    *:focus {
        outline: none;
    }
    
    /* Better font rendering on mobile */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
}

/* iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix iOS scroll issues */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix iOS input zoom */
    input,
    select,
    textarea {
        font-size: 16px !important;
    }
    
    /* Fix iOS button styles */
    button,
    input[type="submit"],
    input[type="button"] {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0;
    }
}

/* Android Specific Fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
    /* Android specific styles */
    select {
        background-image: none;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-bg: #000000;
        --dark-surface: #0a0a0a;
    }
}

/* Mobile Menu Enhancement */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(30px);
        transition: left 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        padding-top: 80px;
    }
    
    /* Mobile Menu Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        display: none;
        z-index: 9998;
    }
    
    .menu-overlay.active {
        display: block;
    }
}

/* ============================================
   CRITICAL MOBILE FIXES
   ============================================ */

/* Prevent horizontal scroll */
body, html {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

* {
    box-sizing: border-box !important;
}

/* Fix all full-width sections */
@media (max-width: 768px) {
    section,
    .hero-slider,
    .premium-header,
    footer {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Fix hero slider overflow */
    .hero-slide,
    .slide-bg,
    .slide-overlay,
    .slide-content {
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    /* Fix container overflow */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Fix grid overflow */
    .courses-grid,
    .stats-grid,
    .footer-content,
    .why-us-content {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Fix images */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Fix buttons */
    .btn-primary,
    .btn-secondary {
        max-width: 100% !important;
    }
    
    /* Better text wrapping */
    h1, h2, h3, h4, h5, h6, p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    /* Fix slider indicators */
    .slider-indicators {
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        padding: 0 20px;
    }
    
    /* Fix hero stats wrapping */
    .hero-stats {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 30px 0 0 0 !important;
    }
    
    .hero-stats .stat-item {
        min-width: 0 !important;
        flex: 1 1 auto !important;
    }
    
    /* Fix stories overflow */
    .stories-container {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 20px 10px 20px !important;
    }
    
    .story-item {
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
    }
    
    /* Fix WhatsApp widget mobile */
    #whatsapp-widget {
        bottom: 20px !important;
        right: 15px !important;
    }
    
    #whatsapp-btn {
        width: 55px !important;
        height: 55px !important;
        font-size: 26px !important;
    }
    
    #whatsapp-popup {
        width: calc(100vw - 30px) !important;
        max-width: 320px !important;
        bottom: 80px !important;
        right: 0 !important;
    }
}

/* Ultra Small Devices (iPhone SE, etc.) */
@media (max-width: 375px) {
    .container {
        padding: 0 12px !important;
    }
    
    .hero-title {
        font-size: 22px !important;
    }
    
    .section-title {
        font-size: 22px !important;
    }
    
    .hero-stats {
        gap: 10px !important;
    }
    
    .stat-number {
        font-size: 20px !important;
    }
    
    .stat-label {
        font-size: 9px !important;
    }
    
    .logo-text h1 {
        font-size: 11px !important;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 80vh !important;
        min-height: 450px !important;
    }
    
    .slide-content {
        padding: 80px 0 40px !important;
    }
    
    .hero-title {
        font-size: 28px !important;
    }
    
    .hero-description {
        font-size: 14px !important;
    }
    
    .hero-stats {
        margin-top: 20px !important;
    }
    
    .premium-header {
        padding: 8px 0 !important;
    }
}

/* iOS Safari Fixes */
@supports (-webkit-touch-callout: none) {
    .hero-slider {
        min-height: -webkit-fill-available !important;
    }
    
    @media (max-width: 768px) {
        .hero-slider {
            height: 100vh !important;
            min-height: -webkit-fill-available !important;
        }
    }
}

/* ============================================
   ULTRA PREMIUM COURSES PAGE
   ============================================ */

/* Ultra Premium Page Header */
.ultra-premium-page-header {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
    padding: 150px 0 100px;
}

.page-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.float-element.element-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-element.element-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.float-element.element-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.float-element.element-4 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 25%;
    animation-delay: 9s;
}

.float-element.element-5 {
    width: 220px;
    height: 220px;
    bottom: 30%;
    right: 35%;
    animation-delay: 12s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, 50px) scale(1.2);
        opacity: 0.6;
    }
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.premium-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.premium-breadcrumb:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    color: #e50914;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.current-page {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.ultra-page-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.title-word {
    color: #fff;
    display: inline-block;
}

.title-highlight {
    background: linear-gradient(135deg, #e50914 0%, #ff6b35 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.title-decoration {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e50914, transparent);
    border-radius: 2px;
}

.ultra-page-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.highlight-text {
    color: #ffd700;
    font-weight: 700;
}

.page-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e50914, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Ultra Premium Courses Section */
.ultra-premium-courses {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.courses-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: orbFloat 20s infinite ease-in-out;
}

.gradient-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: #e50914;
    top: -200px;
    left: -200px;
}

.gradient-orb.orb-2 {
    width: 600px;
    height: 600px;
    background: #ff6b35;
    top: 50%;
    right: -250px;
    animation-delay: 5s;
}

.gradient-orb.orb-3 {
    width: 400px;
    height: 400px;
    background: #ffd700;
    bottom: -150px;
    left: 30%;
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 100px);
    }
}

.ultra-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: #e50914;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.premium-badge:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: #e50914;
    transform: translateY(-2px);
}

.ultra-section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #e50914, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e50914, transparent);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ultra Categories Grid */
.ultra-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.ultra-category-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.ultra-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ultra-category-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.ultra-category-card:hover::before {
    opacity: 1;
}

.ultra-category-card.featured {
    border: 2px solid rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 107, 53, 0.03) 100%);
}

.card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.ultra-category-card:hover .card-glow-effect {
    opacity: 1;
}

.card-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.ultra-category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e50914, #ff6b35);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.ultra-category-card:hover .ultra-category-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0.5;
}

.ultra-category-icon i {
    font-size: 32px;
    color: #fff;
    z-index: 1;
}

.ultra-popular-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50px;
    color: #0a0a0a;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ultra-category-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.ultra-category-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.ultra-category-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.ultra-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #00c853;
    font-size: 18px;
}

.ultra-category-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #e50914, #ff6b35);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.ultra-category-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;
}

.ultra-category-btn:hover::before {
    left: 100%;
}

.ultra-category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ultra-category-btn:hover .btn-glow {
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ultra-premium-page-header {
        padding: 120px 0 60px;
        min-height: 50vh;
    }
    
    .ultra-page-title {
        font-size: 2.5rem;
    }
    
    .ultra-page-description {
        font-size: 1rem;
    }
    
    .page-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .ultra-premium-courses {
        padding: 80px 0;
    }
    
    .ultra-section-title {
        font-size: 2rem;
    }
    
    .ultra-categories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .ultra-category-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .ultra-page-title {
        font-size: 2rem;
    }
    
    .premium-breadcrumb {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .ultra-category-card {
        padding: 24px;
    }
    
    .ultra-category-icon {
        width: 60px;
        height: 60px;
    }
    
    .ultra-category-icon i {
        font-size: 28px;
    }
    
    .ultra-category-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   ULTRA PREMIUM COURSES PAGE - COMPLETE STYLES
   ============================================ */

/* Ultra Premium Page Header */
.ultra-premium-page-header {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
    padding: 150px 0 100px;
}

.page-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    animation: floatAnimation 20s infinite ease-in-out;
}

.float-element.element-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-element.element-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.float-element.element-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.float-element.element-4 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 25%;
    animation-delay: 9s;
}

.float-element.element-5 {
    width: 220px;
    height: 220px;
    bottom: 30%;
    right: 35%;
    animation-delay: 12s;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, 50px) scale(1.2);
        opacity: 0.6;
    }
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.premium-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.premium-breadcrumb:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    color: #e50914;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.current-page {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.ultra-page-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.title-word {
    color: #fff;
    display: inline-block;
}

.title-highlight {
    background: linear-gradient(135deg, #e50914 0%, #ff6b35 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.title-decoration {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e50914, transparent);
    border-radius: 2px;
}

.ultra-page-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.highlight-text {
    color: #ffd700;
    font-weight: 700;
}

.page-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-stats .stat-item {
    text-align: center;
}

.page-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e50914, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.page-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Ultra Premium Courses Section */
.ultra-premium-courses {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.courses-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: orbFloat 20s infinite ease-in-out;
}

.gradient-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: #e50914;
    top: -200px;
    left: -200px;
}

.gradient-orb.orb-2 {
    width: 600px;
    height: 600px;
    background: #ff6b35;
    top: 50%;
    right: -250px;
    animation-delay: 5s;
}

.gradient-orb.orb-3 {
    width: 400px;
    height: 400px;
    background: #ffd700;
    bottom: -150px;
    left: 30%;
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 100px);
    }
}

.ultra-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: #e50914;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.premium-badge:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: #e50914;
    transform: translateY(-2px);
}

.ultra-section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #e50914, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e50914, transparent);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ultra Categories Grid */
.ultra-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.ultra-category-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.ultra-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ultra-category-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.ultra-category-card:hover::before {
    opacity: 1;
}

.ultra-category-card.featured {
    border: 2px solid rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 107, 53, 0.03) 100%);
}

.card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.ultra-category-card:hover .card-glow-effect {
    opacity: 1;
}

.card-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.ultra-category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e50914, #ff6b35);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.ultra-category-card:hover .ultra-category-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0.5;
}

.ultra-category-icon i {
    font-size: 32px;
    color: #fff;
    z-index: 1;
    position: relative;
}

.ultra-popular-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50px;
    color: #0a0a0a;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ultra-category-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.ultra-category-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.ultra-category-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.ultra-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #00c853;
    font-size: 18px;
}

.ultra-category-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #e50914, #ff6b35);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.ultra-category-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;
}

.ultra-category-btn:hover::before {
    left: 100%;
}

.ultra-category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ultra-category-btn:hover .btn-glow {
    opacity: 0.6;
}

/* Registration CTA Section */
.registration-cta {
    background: linear-gradient(135deg, #e50914 0%, #ff6b35 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.registration-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="30" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.cta-text h2 .highlight {
    color: #ffd700;
}

.cta-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #fff;
    color: #e50914;
}

.btn-primary:hover {
    background: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #e50914;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .registration-cta {
        padding: 60px 0;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-actions {
        justify-content: center;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        flex: 1;
        justify-content: center;
        min-width: 200px;
    }
}
}
@keyframes pulse {
    0%, 100%

{
    transform: scale(1);
}

50% {
    transform: scale(1.05);
}

}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(5deg);
    }

    66% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

@keyframes slide {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }

    100% {
        transform: translateX(100%) translateY(100%);
    }
}

/* Enhanced WhatsApp Widget Responsive Design */
@media (max-width: 480px) {
    div [style*="width: 350px"] {
        width: 300px !important;
        right: 15px !important;
    }

    div[style*="bottom: 30px; right: 30px"] {
        bottom: 20px !important;
        right: 20px !important;
    }

    button[style*="width: 70px; height: 70px"] {
        width: 60px !important;
        height: 60px !important;
        font-size: 24px !important;
    }

    /* Footer responsive */
    div[style*="grid-template-columns: 2fr 1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 375px) {
    div [style*="width: 350px"] {
        width: 280px !important;
        right: 10px !important;
    }

    div[style*="padding: 25px"] {
        padding: 20px !important;
    }
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slide {
    position: relative;
    overflow: hidden;
}
/* ULTRA PREMIUM TEAM NAVIGATION BUTTONS - BOTTOM POSITIONED */
.team-nav-btn {
    position: absolute !important;
    bottom: 20px !important; /* Kartların altında konumlandır */
    top: auto !important; /* Top pozisyonunu iptal et */
    transform: translateX(0) !important; /* Y eksenini kaldır */
    /* Ultra Premium Styling */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08)) !important;
    backdrop-filter: blur(25px) !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    width: 70px !important;
    height: 70px !important;
    color: white !important;
    font-size: 24px !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    /* Ultra Premium Box Shadow */
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 2px 0 rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 107, 53, 0.2) !important;
    /* Premium Glow Effect */
    position: relative;
}

    /* Ultra Premium Hover Effects */
    .team-nav-btn:hover {
        background: linear-gradient(135deg, #ff6b35, #c40819) !important;
        border-color: rgba(255, 255, 255, 0.6) !important;
        transform: translateY(-5px) scale(1.15) !important;
        box-shadow: 0 25px 80px rgba(255, 107, 53, 0.8), 0 0 0 2px rgba(255, 255, 255, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.4), 0 0 50px rgba(255, 107, 53, 0.6) !important;
        /* Ultra Premium Pulsing */
        animation: premiumPulse 0.6s ease-out !important;
    }

/* Premium Glow Animation */
@keyframes premiumPulse {
    0% {
        box-shadow: 0 25px 80px rgba(255, 107, 53, 0.8), 0 0 0 2px rgba(255, 255, 255, 0.4), 0 0 50px rgba(255, 107, 53, 0.6);
    }

    50% {
        box-shadow: 0 30px 100px rgba(255, 107, 53, 1), 0 0 0 4px rgba(255, 255, 255, 0.6), 0 0 80px rgba(255, 107, 53, 0.8);
    }

    100% {
        box-shadow: 0 25px 80px rgba(255, 107, 53, 0.8), 0 0 0 2px rgba(255, 255, 255, 0.4), 0 0 50px rgba(255, 107, 53, 0.6);
    }
}

/* Bottom Centered Positioning */
.team-nav-btn.prev {
    left: 50% !important;
    margin-left: -200px !important; /* Sol tarafa yerleştir */
}

.team-nav-btn.next {
    right: 50% !important;
    margin-right: -200px !important; /* Sağ tarafa yerleştir */
}

/* Premium Glow Background Effect */
.team-nav-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.15) 50%, transparent 70%);
    border-radius: 50%;
    animation: rotate 8s linear infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-nav-btn:hover::before {
    opacity: 1;
}

/* Ultra Premium Icon Styling */
.team-nav-btn i {
    font-size: 24px !important;
    font-weight: bold !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    position: relative !important;
    z-index: 2 !important;
    transition: all 0.3s ease !important;
}

.team-nav-btn:hover i {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.1) !important;
}

/* Premium Ripple Effect */
.team-nav-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    pointer-events: none;
}

.team-nav-btn:active::after {
    width: 150px;
    height: 150px;
}

/* Team Section Container Adjustment */
.team-slider-container {
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 100px !important; /* Navigation buttonlar için boşluk */
}

/* Mobile Responsive - Ultra Premium */
@media (max-width: 1400px) {
    .team-nav-btn.prev {
        margin-left: -150px !important;
    }

    .team-nav-btn.next {
        margin-right: -150px !important;
    }
}

@media (max-width: 1200px) {
    .team-nav-btn {
        width: 60px !important;
        height: 60px !important;
        font-size: 20px !important;
        bottom: 15px !important;
    }

        .team-nav-btn.prev {
            margin-left: -100px !important;
        }

        .team-nav-btn.next {
            margin-right: -100px !important;
        }

    .team-slider-container {
        padding-bottom: 80px !important;
    }
}

@media (max-width: 768px) {
    .team-nav-btn {
        width: 55px !important;
        height: 55px !important;
        font-size: 18px !important;
        bottom: 10px !important;
    }

        .team-nav-btn.prev {
            margin-left: -80px !important;
        }

        .team-nav-btn.next {
            margin-right: -80px !important;
        }

    .team-slider-container {
        padding-bottom: 70px !important;
    }
}

@media (max-width: 480px) {
    .team-nav-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 16px !important;
        bottom: 5px !important;
    }

        .team-nav-btn.prev {
            margin-left: -60px !important;
        }

        .team-nav-btn.next {
            margin-right: -60px !important;
        }

    .team-slider-container {
        padding-bottom: 60px !important;
    }
}

/* Ultra Premium Breathing Animation */
@keyframes breathe {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 107, 53, 0.2);
    }

    50% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 2px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 107, 53, 0.4);
    }
}

.team-nav-btn {
    animation: breathe 4s ease-in-out infinite !important;
}

    /* Ultra Premium Focus State */
    .team-nav-btn:focus {
        outline: none !important;
        border-color: rgba(255, 107, 53, 0.8) !important;
        box-shadow: 0 25px 80px rgba(255, 107, 53, 0.8), 0 0 0 3px rgba(255, 107, 53, 0.4), 0 0 50px rgba(255, 107, 53, 0.6) !important;
    }

/* Dots Navigation positioned above buttons */
.team-dots {
    position: absolute;
    bottom: 100px !important; /* Buttonların üzerinde */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 999;
}

.team-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .team-dot.active {
        background: linear-gradient(135deg, #ff6b35, #ff6b35);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        transform: scale(1.2);
    }

    .team-dot:hover:not(.active) {
        background: rgba(255, 255, 255, 0.6);
        transform: scale(1.1);
    }