/* === ОСНОВНИ СТИЛОВЕ === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #f4f4f4;
  --accent-color: #ff6b35;
  --text-color: #333;
  --text-light: #555;
  --text-white: #ffffff;
  --background-dark: #151515;
  --background-light: #f8f9fa;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --gradient: linear-gradient(135deg, #2e2e2e 0%, #444444 100%);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* === ОБЩИ СТИЛОВЕ === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  background: #ffffff;
  color: var(--text-color);
}

.section-dark {
  background: var(--gradient);
  color: var(--text-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 300;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.8);
}

/* === БУТОНИ === */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border-color: var(--text-white);
}

.btn-secondary:hover {
  background: var(--text-white);
  color: var(--primary-color);
}

/* === НАВИГАЦИЯ === */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

#navbar.scrolled {
  padding: 10px 0;
  background: rgba(26, 26, 26, 0.98);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 40px;
  width: auto;
}

.club-name {
  color: var(--text-white);
  font-size: 1.5rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  text-align: center;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-white);
  margin: 3px 0;
  transition: 0.3s;
}

/* === НАЧАЛНА СЕКЦИЯ === */
.hero-combined {
  min-height: 200vh;
  position: relative;
  background: #1a1a1a;
}

.splash-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  gap: 0;
  padding: 90px 20px 20px;
}

.splash-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  letter-spacing: 1px;
  animation: splashFadeIn 1.2s ease forwards;
  opacity: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 5px;
  flex-shrink: 0;
}

.splash-image {
  max-width: 750px;
  width: 85%;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(255, 107, 53, 0.3));
  animation: splashEntry 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  flex-shrink: 1;
  min-height: 0;
  object-fit: contain;
}

.splash-logo-img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.4));
  animation: splashFadeIn 2s ease 0.5s forwards;
  opacity: 0;
  flex-shrink: 0;
  margin-top: 5px;
}

@keyframes splashEntry {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes splashFadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-overlay-blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: rgba(30, 30, 30, 0.6);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.hero-content-fade-wrapper {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content-fade {
  opacity: 0;
  transform: translateY(60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-section {
  min-height: 100vh;
  background: var(--gradient);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-text {
  color: var(--text-white);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

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

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

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

.hero-logo {
  width: 300px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.3));
  animation: float 6s ease-in-out infinite;
}

.hero-action-img {
  width: 520px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(255, 107, 53, 0.4)) drop-shadow(0 0 80px rgba(255, 107, 53, 0.15));
  animation: heroEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards, heroFloat 5s ease-in-out 1.2s infinite;
  opacity: 0;
  transform: translateX(60px) scale(0.9);
}

@keyframes heroEntrance {
  0% {
    opacity: 0;
    transform: translateX(60px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-12px) rotate(0.5deg); }
  75% { transform: translateY(8px) rotate(-0.5deg); }
}

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

/* === ЗА КЛУБА === */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--text-light);
  line-height: 1.7;
}

.mission-values {
  display: grid;
  gap: 25px;
  margin-top: 40px;
}

.value-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.value-item p {
  margin: 0;
  font-size: 1rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(100px) rotateY(15deg);
  animation: slideInFromRight 0.8s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }

.stat-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.5s ease;
}

.stat-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-15px) scale(1.05) rotateY(0deg);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

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

.stat-item:hover .stat-number {
  animation: numberPulse 0.6s ease;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
  color: var(--primary-color);
}

/* === ИНСТРУКТОР === */
.instructor-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.instructor-info h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--text-white);
}

.instructor-title {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 30px;
  font-weight: 600;
}

.instructor-details p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

.credentials {
  margin-top: 30px;
  padding: 25px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
}

.credentials h4 {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.credentials ul {
  list-style: none;
}

.credentials li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
}

.credentials li:last-child {
  border-bottom: none;
}

.credentials li::before {
  content: '✓';
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 10px;
}

/* === ПРОГРАМИ === */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.program-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  animation: slideInUp 0.8s ease forwards;
}

.program-card:nth-child(1) { animation-delay: 0.1s; }
.program-card:nth-child(2) { animation-delay: 0.2s; }
.program-card:nth-child(3) { animation-delay: 0.3s; }
.program-card:nth-child(4) { animation-delay: 0.4s; }

.program-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.program-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.program-card p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.program-card ul {
  list-style: none;
  text-align: left;
}

.program-card li {
  padding: 8px 0;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
}

.program-card li:last-child {
  border-bottom: none;
}

.program-card li::before {
  content: '▶';
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 0.8rem;
}

/* === РАЗПИСАНИЕ === */
.schedule-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.schedule-day {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.schedule-day h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
}

.time-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin-bottom: 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.time-slot:hover {
  background: rgba(255,255,255,0.2);
}

.time {
  font-weight: 600;
  color: var(--text-white);
}

.group {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}

.schedule-note {
  text-align: center;
  padding: 25px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.schedule-note p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin: 0;
}

/* === ЗАПИСВАНЕ === */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.join-info {
  background: var(--background-light);
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
}

.join-info h3 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.join-benefits ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.join-benefits li {
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.join-benefits li:hover {
  transform: translateY(-3px);
}

.join-benefits li::before {
  content: '✓';
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 10px;
}

.membership-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.membership-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.02);
}

.membership-card:hover {
  transform: translateY(-5px) scale(1.02);
}

.membership-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.membership-description {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.membership-benefits h4 {
  color: var(--accent-color);
  margin-bottom: 15px;
}

.membership-benefits ul {
  list-style: none;
  margin-bottom: 25px;
}

.membership-benefits li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
}

.membership-benefits li:last-child {
  border-bottom: none;
}

.membership-benefits li::before {
  content: '✓';
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 10px;
}

.membership-note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}

.membership-process {
  background: var(--background-light);
  border-radius: 20px;
  padding: 40px;
}

.membership-process h3 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.step {
  text-align: center;
  position: relative;
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  animation: bounceInUp 0.8s ease forwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.3s; }
.step:nth-child(3) { animation-delay: 0.5s; }
.step:nth-child(4) { animation-delay: 0.7s; }

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  line-height: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
}

.step h4 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.step p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* === НОВИНИ === */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.news-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border-left: 4px solid var(--accent-color);
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease forwards;
}

.news-item:nth-child(1) { animation-delay: 0.1s; }
.news-item:nth-child(2) { animation-delay: 0.3s; }
.news-item:nth-child(3) { animation-delay: 0.5s; }

.news-item {
  cursor: pointer;
}

.news-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-left-width: 8px;
}

.news-item.expanded {
  grid-column: 1 / -1;
  border-left-color: var(--primary-color);
  border-left-width: 6px;
  transform: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.news-item.expanded:hover {
  transform: none;
}

.news-full {
  display: none;
}

.news-item.expanded .news-preview {
  display: none;
}

.news-item.expanded .news-full {
  display: block;
}

.news-item .news-full p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.news-highlight {
  background: rgba(255, 107, 53, 0.08);
  border-left: 3px solid var(--accent-color);
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  line-height: 1.7;
  color: var(--text-color);
}

.news-expand-hint {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.news-item:hover .news-expand-hint {
  transform: translateX(3px);
}

.news-date {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.news-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.news-item p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* === КАЛЕНДАР НА СЪБИТИЯ === */
.events-calendar {
  background: var(--background-light);
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
}

.events-calendar h3 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 40px;
}

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

.event-item {
  display: flex;
  gap: 20px;
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border-left: 4px solid var(--accent-color);
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease forwards;
}

.event-item:nth-child(1) { animation-delay: 0.1s; }
.event-item:nth-child(2) { animation-delay: 0.3s; }
.event-item:nth-child(3) { animation-delay: 0.5s; }
.event-item:nth-child(4) { animation-delay: 0.7s; }

.event-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-left-width: 8px;
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: white;
  border-radius: 12px;
  min-width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.event-day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 2px;
}

.event-info {
  flex: 1;
}

.event-info h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.event-info p {
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.5;
}

.event-time {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.calendar-note {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.calendar-note p {
  color: var(--text-color);
  margin: 0;
  font-size: 0.9rem;
}

/* === ОТЗИВИ === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.no-testimonials {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 40px;
  background: var(--background-light);
  border-radius: 20px;
  border: 2px dashed var(--accent-color);
  color: var(--text-light);
}

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

.no-testimonials h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.no-testimonials p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin: 0;
}

.testimonial-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  margin-bottom: 15px;
}

.testimonial-header h4 {
  margin: 0 0 5px 0;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.testimonial-type {
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
}

.testimonial-rating {
  margin: 8px 0;
  font-size: 1.1rem;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
  margin: 15px 0;
  color: var(--text-color);
}

.testimonial-period {
  color: var(--text-light);
  font-size: 0.85rem;
}

.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  padding: 40px;
  background: var(--background-light);
  border-radius: 20px;
}

.testimonial-stats .stat-item {
  text-align: center;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow);
  border: none;
  animation: none;
  opacity: 1;
  transform: none;
}

.stat-stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-top: 10px;
}

.add-testimonial {
  text-align: center;
  padding: 40px;
  background: var(--background-light);
  border-radius: 20px;
  border: 2px dashed var(--accent-color);
}

.add-testimonial h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.add-testimonial p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* === МОДАЛ ЗА ОТЗИВИ === */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: white;
  border-radius: 20px;
  padding: 0;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  opacity: 0;
  animation: modalFadeIn 0.3s ease forwards;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px 20px;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.6rem;
}

.close-modal {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--accent-color);
}

.testimonial-form {
  padding: 30px 40px 40px;
}

.testimonial-form .form-group {
  margin-bottom: 25px;
}

.testimonial-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-color);
  font-weight: 500;
}

.testimonial-form input,
.testimonial-form select,
.testimonial-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.testimonial-form input:focus,
.testimonial-form select:focus,
.testimonial-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.rating-input {
  display: flex;
  flex-direction: row-reverse;
  gap: 5px;
  justify-content: flex-end;
}

.rating-input input[type="radio"] {
  display: none;
}

.rating-input label {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s ease;
  margin-bottom: 0;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input[type="radio"]:checked ~ label {
  color: #ffd700;
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

/* === СТЕНА НА СЛАВАТА === */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.profile-card {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  animation: slideInUp 0.8s ease forwards;
}

.profile-card:nth-child(1) { animation-delay: 0.1s; }
.profile-card:nth-child(2) { animation-delay: 0.2s; }
.profile-card:nth-child(3) { animation-delay: 0.3s; }
.profile-card:nth-child(4) { animation-delay: 0.4s; }

.profile-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: var(--accent-color);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.profile-photo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.profile-photo img {
  width: 120px !important;
  height: 120px !important;
  min-width: 120px !important;
  min-height: 120px !important;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
  transition: all 0.3s ease;
  background-color: var(--background-light);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.profile-card:hover .profile-photo img {
  transform: scale(1.1);
  border-width: 4px;
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
}

.photo-placeholder {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--accent-color);
  margin: 0 auto;
}

.photo-placeholder span {
  color: var(--accent-color);
  font-size: 2rem;
  text-align: center;
}

.gallery-placeholder {
  width: 100%;
  height: 200px;
  background: var(--background-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--accent-color);
  color: var(--text-light);
  font-weight: 500;
  text-align: center;
}

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

.profile-info h3 {
  color: var(--text-white);
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 600;
}

.profile-age {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1rem;
}

.profile-belt {
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
  font-weight: 500;
}

.profile-achievements {
  color: rgba(255,255,255,0.8);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.profile-quote {
  color: rgba(255,255,255,0.7);
  font-style: italic;
  line-height: 1.4;
  margin-top: 15px;
  padding: 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border-left: 3px solid var(--accent-color);
}

.profile-description {
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
}

.profile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, var(--accent-color), rgba(255, 107, 53, 0.8));
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.placeholder-card {
  opacity: 0.7;
  cursor: default;
}

.placeholder-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255,255,255,0.3);
}

.hall-note {
  text-align: center;
  padding: 25px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.hall-note p {
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin: 0;
}

/* === ИНДИВИДУАЛНИ ПРОФИЛИ === */
.profile-section {
  background: var(--background-light);
  min-height: 100vh;
}

.profile-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.profile-main-photo {
  text-align: center;
}

.profile-main-photo img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid var(--accent-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  background-color: var(--background-light);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.photo-placeholder-large {
  width: 250px;
  height: 250px;
  background: var(--background-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--accent-color);
  margin: 0 auto;
}

.photo-placeholder-large span {
  color: var(--accent-color);
  font-size: 4rem;
}

.profile-name {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 700;
}

.profile-details {
  display: grid;
  gap: 15px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: var(--background-light);
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.detail-label {
  font-weight: 600;
  color: var(--primary-color);
}

.detail-value {
  color: var(--text-light);
  font-weight: 500;
}

.profile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.profile-story,
.achievements-timeline {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.profile-story h2,
.achievements-timeline h2 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.profile-story p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.student-quote {
  background: var(--background-light);
  border-left: 4px solid var(--accent-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 10px;
  font-style: italic;
  color: var(--text-color);
  position: relative;
}

.student-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--accent-color);
}

.timeline-date {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.timeline-content h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.timeline-content p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9rem;
}

.profile-gallery {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.profile-gallery h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 1.8rem;
  text-align: center;
}

/* === RESPONSIVE ЗА ПРОФИЛИ === */
@media (max-width: 768px) {
  .profile-header {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .profile-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .profile-main-photo img,
  .photo-placeholder-large {
    width: 200px;
    height: 200px;
  }

  .profile-name {
    font-size: 2rem;
  }

  .detail-item {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

/* === ТЕРМИНОЛОГИЯ === */
.terminology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.term-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent-color);
}

.term-item:hover {
  transform: translateY(-5px);
}

.term-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.term-item p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* === ГАЛЕРИЯ === */
.gallery-categories {
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.category-card {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px) rotateX(15deg);
  animation: flipInUp 0.8s ease forwards;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }

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

.category-card:hover {
  transform: translateY(-15px) scale(1.05) rotateX(0deg);
  border-color: var(--accent-color);
  background: rgba(255,255,255,0.2);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

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

.category-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.category-card h3 {
  color: var(--text-white);
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 600;
}

.category-card p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  line-height: 1.5;
}

.category-count {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Галерия стилове */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

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

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.gallery-placeholder span {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  text-align: center;
}

.gallery-note {
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin: 0;
}

/* === КОНТАКТИ === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 30px;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--background-light);
  border-radius: 15px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.6s ease forwards;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }

.contact-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 1.5rem;
  width: 50px;
  text-align: center;
}

.contact-item h4 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
}

.contact-item small {
  color: var(--accent-color);
  font-style: italic;
}

/* Стил за линк към Google Maps */
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.map-link:hover {
  color: var(--primary-color);
  border-bottom-color: var(--accent-color);
  transform: translateX(5px);
}

/* === СОЦИАЛНИ МРЕЖИ === */
.social-media {
  margin-top: 40px;
}

.social-media h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: white;
  border-radius: 15px;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: 2px solid transparent;
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.social-link.facebook:hover {
  border-color: #1877f2;
  box-shadow: 0 5px 20px rgba(24, 119, 242, 0.2);
}

.social-link.instagram:hover {
  border-color: #e4405f;
  box-shadow: 0 5px 20px rgba(228, 64, 95, 0.2);
}

.social-link.tiktok:hover {
  border-color: #000000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.social-icon {
  font-size: 1.5rem;
}

.social-link span {
  font-weight: 600;
}

/* === КАЛЕНДАР PLACEHOLDER === */
.events-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
}

.coming-soon-events {
  text-align: center;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 20px;
  padding: 40px;
  border: 2px dashed var(--accent-color);
  max-width: 500px;
}

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

.coming-soon-events h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.coming-soon-events p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 10px;
}

.coming-soon-events p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--accent-color);
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin-bottom: 30px;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-color);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc3545;
  background-color: #fff5f5;
}

.field-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}

.form-group {
  position: relative;
}

/* Loading стейт за форми */
.form-loading {
  opacity: 0.7;
  pointer-events: none;
}

.form-loading .btn {
  position: relative;
}

.form-loading .btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

/* === ФУТЪР === */
.footer {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 40px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
  color: var(--text-white);
}

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

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

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 5px;
  font-size: 0.9rem;
}

/* === ОПТИМИЗАЦИИ ЗА ПРОИЗВОДИТЕЛНОСТ === */
/* Намаляване на анимациите за слаби устройства */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Оптимизация на шрифтовете */
@font-face {
  font-family: 'Inter';
  font-display: swap;
}

/* Lazy loading за снимки */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Подобряване на scroll производителността */
.section {
  contain: layout style paint;
}

/* GPU ускорение за анимации */
.hero-logo,
.stat-item,
.program-card,
.category-card {
  will-change: transform;
}

/* === ACCESSIBILITY === */
/* Focus indicators */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000000;
    --text-color: #000000;
    --background-light: #ffffff;
    --border-color: #000000;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === RESPONSIVE ДИЗАЙН === */

/* === ТАБЛЕТИ (max-width: 1024px) === */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .profile-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .membership-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .instructor-card {
    padding: 30px;
  }
  
  .section {
    padding: 70px 0;
  }
}

/* === МОБИЛНИ УСТРОЙСТВА (max-width: 768px) === */
@media (max-width: 768px) {
  /* Предотвратяване на horizontal scroll */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  .social-links {
    flex-direction: column;
    gap: 15px;
  }

  .social-link {
    justify-content: center;
  }

  /* Подобряване на touch таргетите */
  .nav-link, .btn, .social-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .splash-image {
    width: 95%;
    max-width: 400px;
  }

  .hero-content-fade {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding: 0 15px;
  }

  /* Hero Section Fixes */
  .hero-section {
    min-height: auto;
    padding: 100px 0 60px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding: 0 15px;
  }
  
  .hero-text {
    order: 1;
  }
  
  .hero-image {
    order: 2;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
    word-wrap: break-word;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    min-width: 180px;
  }
  
  .hero-logo {
    width: 180px;
  }

  .hero-action-img {
    width: 320px;
  }
  
  /* Hero Social Links Fix */
  .hero-social-links {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 25px !important;
  }
  
  .hero-social-links .social-link {
    padding: 8px 14px !important;
    font-size: 0.9rem;
  }
  
  /* Оптимизиране на контактите за мобилни устройства */
  .contact-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .contact-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .map-link {
    justify-content: center;
    margin: 10px auto 0;
  }

  /* Подобряване на мобилното меню */
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 20px;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.mobile-active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    display: block;
    line-height: 1.4;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Navbar fixes */
  #navbar {
    padding: 10px 0;
  }
  
  .logo-section {
    gap: 10px;
  }
  
  .logo {
    height: 35px;
  }
  
  .club-name {
    font-size: 1.2rem;
  }

  .events-placeholder {
    padding: 40px 20px;
  }

  .coming-soon-events {
    padding: 30px 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px 15px;
  }

  .add-testimonial {
    padding: 30px 20px;
  }

  .modal-content {
    width: 95%;
    margin: 20px;
  }

  .modal-header,
  .testimonial-form {
    padding: 20px;
  }

  .form-actions {
    flex-direction: column;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 140px;
    padding: 20px 15px;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .schedule-table {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .schedule-day {
    padding: 20px 15px;
  }
  
  .time-slot {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 12px;
  }
  
  /* Programs Grid Fix */
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .program-card {
    padding: 25px 20px;
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  /* Gallery Grid Fix */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .gallery-item img {
    height: 150px !important;
  }
  
  /* Category Grid Fix */
  .category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .category-card {
    padding: 25px 20px;
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  /* Membership Grid Fix */
  .membership-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .membership-card {
    padding: 25px 20px;
  }
  
  .membership-card.featured {
    transform: none;
  }
  
  /* Join Benefits Fix */
  .join-benefits ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .join-info {
    padding: 25px 20px;
  }
  
  /* News Grid Fix */
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .news-item {
    padding: 20px 15px;
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  /* Events Grid Fix */
  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .event-item {
    flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .event-date {
    width: 100%;
    flex-direction: row;
    gap: 10px;
    height: auto;
    padding: 12px;
  }
  
  /* Profiles Grid Fix */
  .profiles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .profile-card {
    padding: 25px 20px;
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  /* Process Steps Fix */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .step {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  /* Footer Fix */
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-section ul {
    text-align: center;
  }
  
  /* Instructor Card Fix */
  .instructor-card {
    padding: 25px 20px;
  }
  
  .instructor-info h3 {
    font-size: 1.8rem;
  }
  
  .instructor-title {
    font-size: 1rem;
  }
  
  .credentials {
    padding: 20px 15px;
  }
  
  /* Terminology Grid Fix */
  .terminology-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .term-item {
    padding: 20px 15px;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .section {
    padding: 50px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .container {
    padding: 0 15px;
  }
}

/* === МАЛКИ ТЕЛЕФОНИ (max-width: 480px) === */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  
  /* Hero Section - Small Phones */
  .hero-section {
    padding: 90px 0 50px;
  }
  
  .hero-content {
    padding: 0 12px;
    gap: 25px;
  }

  .hero-title {
    font-size: 1.7rem;
    line-height: 1.25;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    min-width: unset;
    padding: 14px 20px;
  }
  
  .hero-logo {
    width: 150px;
  }
  
  /* Hero Social Links - Small Phones */
  .hero-social-links {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: center !important;
  }
  
  .hero-social-links .social-link,
  .hero-social-links a {
    width: 100% !important;
    max-width: 200px !important;
    justify-content: center !important;
    padding: 10px 15px !important;
  }
  
  /* Navbar - Small Phones */
  #navbar {
    padding: 8px 0;
  }
  
  .nav-container {
    padding: 0 12px;
  }
  
  .logo {
    height: 30px;
  }
  
  .club-name {
    font-size: 1rem;
  }
  
  .main-nav {
    top: 60px;
    height: calc(100vh - 60px);
    padding: 20px 15px;
  }
  
  .nav-link {
    font-size: 1rem;
    padding: 14px 10px;
    text-align: center;
    display: block;
  }

  .contact-form,
  .instructor-card,
  .membership-process {
    padding: 20px 15px;
  }

  .program-card {
    padding: 20px 15px;
  }
  
  /* По-малки шрифтове за мобилни */
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-title::after {
    width: 40px;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  p {
    font-size: 0.9rem;
  }
  
  /* Оптимизиране на формулярите */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Предотвратява zoom при фокус на iOS */
    padding: 12px;
  }
  
  /* По-добро използване на пространството */
  .section {
    padding: 40px 0;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  /* About Stats - Small Phones */
  .about-stats {
    flex-direction: column;
  }
  
  .stat-item {
    flex: 1 1 100%;
    padding: 18px 15px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  /* Schedule - Small Phones */
  .schedule-day {
    padding: 15px 12px;
  }
  
  .schedule-day h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .time-slot {
    padding: 10px;
    margin-bottom: 10px;
  }
  
  .time {
    font-size: 0.95rem;
  }
  
  .group {
    font-size: 0.85rem;
  }
  
  /* Gallery - Small Phones */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .gallery-item img {
    height: 200px !important;
  }
  
  /* Category Cards - Small Phones */
  .category-card {
    padding: 20px 15px;
  }
  
  .category-icon {
    font-size: 2.5rem;
  }
  
  .category-card h3 {
    font-size: 1.25rem;
  }
  
  /* Membership - Small Phones */
  .membership-card {
    padding: 20px 15px;
  }
  
  .membership-card h3 {
    font-size: 1.4rem;
  }
  
  .join-info {
    padding: 20px 15px;
  }
  
  .join-info h3 {
    font-size: 1.4rem;
  }
  
  .join-benefits li {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  /* Contact - Small Phones */
  .contact-form {
    padding: 20px 15px;
  }
  
  .contact-form h3 {
    font-size: 1.4rem;
  }
  
  .contact-info h3 {
    font-size: 1.4rem;
  }
  
  .contact-item {
    padding: 15px 12px;
  }
  
  .contact-item h4 {
    font-size: 1rem;
  }
  
  .contact-item p {
    font-size: 0.9rem;
  }
  
  /* Social Links - Small Phones */
  .social-media h4 {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .social-link {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  /* Map link оптимизации */
  .map-link {
    font-size: 0.9rem;
    padding: 10px 12px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    margin-top: 12px;
    display: block;
    width: 100%;
  }
  
  /* Footer - Small Phones */
  .footer {
    padding: 30px 0 15px;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .footer-section h3,
  .footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .footer-section p,
  .footer-section a {
    font-size: 0.9rem;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
  }
  
  /* Instructor - Small Phones */
  .instructor-info h3 {
    font-size: 1.5rem;
  }
  
  .instructor-title {
    font-size: 0.95rem;
  }
  
  .instructor-details p {
    font-size: 0.95rem;
  }
  
  .credentials {
    padding: 15px 12px;
  }
  
  .credentials h4 {
    font-size: 1.1rem;
  }
  
  .credentials li {
    font-size: 0.9rem;
    padding: 6px 0;
  }
  
  /* News - Small Phones */
  .news-item {
    padding: 18px 15px;
  }
  
  .news-item h3 {
    font-size: 1.15rem;
  }
  
  .news-date {
    font-size: 0.85rem;
  }
  
  /* Events - Small Phones */
  .event-item {
    padding: 15px 12px;
  }
  
  .event-date {
    padding: 10px;
  }
  
  .event-day {
    font-size: 1.4rem;
  }
  
  .event-month {
    font-size: 0.75rem;
  }
  
  .event-info h4 {
    font-size: 1.1rem;
  }
  
  .event-info p {
    font-size: 0.9rem;
  }
  
  /* Profiles - Small Phones */
  .profile-card {
    padding: 20px 15px;
  }
  
  .profile-info h3 {
    font-size: 1.2rem;
  }
  
  .profile-photo img {
    width: 100px !important;
    height: 100px !important;
    min-width: 100px !important;
    min-height: 100px !important;
  }
  
  .photo-placeholder {
    width: 100px;
    height: 100px;
  }
  
  /* Process Steps - Small Phones */
  .membership-process h3 {
    font-size: 1.4rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1rem;
  }
  
  .step h4 {
    font-size: 1rem;
  }
  
  .step p {
    font-size: 0.85rem;
  }
  
  /* Testimonials - Small Phones */
  .testimonial-card {
    padding: 18px 15px;
  }
  
  .testimonial-header h4 {
    font-size: 1rem;
  }
  
  .testimonial-text {
    font-size: 0.9rem;
  }
  
  .no-testimonials {
    padding: 40px 20px;
  }
  
  .no-testimonials h3 {
    font-size: 1.4rem;
  }
  
  .no-testimonials-icon {
    font-size: 3rem;
  }
  
  /* Terminology - Small Phones */
  .term-item {
    padding: 18px 15px;
  }
  
  .term-item h3 {
    font-size: 1.15rem;
  }
  
  /* Bутони на мобилни */
  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
  
  /* Profile Page - Small Phones */
  .profile-main-photo img,
  .photo-placeholder-large {
    width: 180px;
    height: 180px;
  }
  
  .profile-name {
    font-size: 1.6rem;
  }
  
  .profile-story,
  .achievements-timeline {
    padding: 25px 18px;
  }
  
  .profile-story h2,
  .achievements-timeline h2 {
    font-size: 1.4rem;
  }
  
  .profile-gallery {
    padding: 25px 18px;
  }
  
  .profile-gallery h2 {
    font-size: 1.4rem;
  }
  
  /* Modals - Small Phones */
  .modal-content {
    width: 98%;
    margin: 10px;
    max-height: 95vh;
  }
  
  .modal-header {
    padding: 15px;
  }
  
  .modal-header h3 {
    font-size: 1.2rem;
  }
  
  .testimonial-form {
    padding: 15px;
  }
  
  .close-modal {
    font-size: 1.5rem;
    min-width: 44px;
    min-height: 44px;
  }
  
  /* Таблици на мобилни */
  table {
    font-size: 0.8rem;
  }
  
  /* Coming Soon Events */
  .coming-soon-events {
    padding: 25px 15px;
  }
  
  .coming-soon-events h3 {
    font-size: 1.4rem;
  }
  
  .events-icon {
    font-size: 3rem;
  }
}

/* === АНИМАЦИИ === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@keyframes flipInUp {
  from {
    opacity: 0;
    transform: translateY(60px) rotateX(15deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  60% {
    opacity: 1;
    transform: scale(1.1) translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px) rotateY(15deg);
  }
  70% {
    opacity: 1;
    transform: translateX(-10px) rotateY(-5deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
  }
}

@keyframes numberPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2) rotate(5deg);
    color: #ff4500;
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

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

.section {
  animation: fadeInUp 0.6s ease-out;
}

/* Pulse анимация за accent елементи */
.category-icon,
.program-icon {
  animation: pulse 2s ease-in-out infinite;
}

/* === SCROLL BEHAVIOR === */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-logo {
    animation: none;
  }

  .section {
    animation: none;
  }
}
/* === ВИЗИЯ НА КЛУБА - КАРУСЕЛ === */
.vision-section .section-subtitle {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.vision-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  background: #000;
}

.vision-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.vision-slide {
  position: relative;
  min-width: 100%;
  flex: 0 0 100%;
}

.vision-slide img {
  width: 100%;
  height: 560px;
  object-fit: contain;
  background: #111;
  display: block;
}

.vision-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 60px 40px 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: #fff;
  text-align: left;
}

.vision-tag {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.vision-caption h3 {
  font-size: 1.6rem;
  margin: 0 0 8px;
  color: #fff;
}

.vision-caption p {
  font-size: 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

.vision-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.vision-arrow:hover {
  background: var(--accent-color);
  transform: translateY(-50%) scale(1.1);
}

.vision-prev { left: 16px; }
.vision-next { right: 16px; }

.vision-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.vision-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.vision-dot.active {
  background: var(--accent-color);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .vision-slide img { height: 380px; }
  .vision-caption { padding: 50px 20px 24px; }
  .vision-caption h3 { font-size: 1.25rem; }
  .vision-caption p { font-size: 0.9rem; }
  .vision-arrow { width: 42px; height: 42px; font-size: 1.6rem; }
  .vision-prev { left: 8px; }
  .vision-next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .vision-track { transition: none; }
}
