@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
:root {
  --primary-orange: #CC4E00;
  --primary-blue: #0B192C;
  --secondary-blue: #1A365D;
  --accent-light: #F8FAFC;
  --text-dark: #1E293B;
  --text-light: #64748B;
  --white: #FFFFFF;
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background-color: var(--accent-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  min-width: 320px;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-blue);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { color: var(--text-light); }
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition-fast);
}
header.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-blue);
}
.logo span {
  color: var(--primary-orange);
}
.logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  color: var(--secondary-blue);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: var(--transition-fast);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-orange);
}
.btn-primary {
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}
.btn-primary:hover {
  background: #E65A00;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}
.btn-secondary {
  background: var(--primary-blue);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: var(--secondary-blue);
  color: var(--white);
  transform: translateY(-2px);
}
.burger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 3px;
  transition: var(--transition-fast);
}
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  border-bottom-left-radius: 30%;
  z-index: -1;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text h1 {
  margin-bottom: 1.5rem;
}
.hero-text h1 span {
  color: var(--primary-orange);
  position: relative;
}
.hero-text h1 span::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 15px;
  background: rgba(255, 107, 0, 0.2);
  z-index: -1;
}
.hero-text p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
}
.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition-slow);
}
.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 25, 44, 0.5), transparent);
}
section {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header span {
  color: var(--primary-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
}
.section-header h2 {
  margin-top: 0.5rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  border: 1px solid rgba(0,0,0,0.03);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 107, 0, 0.2);
}
.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}
.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  background: var(--primary-blue);
  color: var(--white);
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 4rem 0;
}
.stat-item h3 {
  color: var(--primary-orange);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.stat-item p {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.carousel-wrapper {
  position: relative;
  width: 100%;
}
.carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.academy-card {
  flex: 0 0 350px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}
.academy-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.academy-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.academy-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.academy-sport {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary-blue);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 1rem;
}
.academy-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.academy-card p {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 1rem;
}
.location {
  font-size: 0.875rem;
  color: var(--primary-orange);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: rgba(255,107,0,0.1);
  font-family: serif;
}
.testimonial-content {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.author-info p {
  font-size: 0.8rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.newsletter-section {
  background: var(--primary-blue);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 80px;
}
.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.newsletter-form input {
  flex-grow: 1;
  padding: 1rem;
  border-radius: 50px;
  border: none;
  font-family: inherit;
}
.newsletter-form button {
  white-space: nowrap;
}
.cta-section {
  background: var(--primary-blue);
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 60%);
  z-index: 0;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}
footer {
  background: #06111f;
  color: var(--white);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer-brand .logo span {
  color: var(--white);
}
.footer-brand p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  max-width: 300px;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition-fast);
}
.social-links a:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}
.footer-contact li svg {
  color: var(--primary-orange);
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: rgba(255,255,255,0.8);
}
.footer-links a:hover {
  color: var(--primary-orange);
  padding-left: 5px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
}
.payment-methods {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.payment-methods svg {
  height: 24px;
  opacity: 0.7;
}
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.page-header {
  padding: 150px 0 80px;
  background: var(--primary-blue);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
}
.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/hero.webp') center/cover;
  opacity: 0.2;
  mix-blend-mode: overlay;
}
.content-section {
  padding: 60px 0;
}
.content-box {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}
.content-box h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.content-box h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.content-box p {
  margin-bottom: 1rem;
}
.content-box ul {
  list-style: disc inside;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}
.content-box ul li {
  margin-bottom: 0.5rem;
}
.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}
.detail-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}
.sidebar-widget {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}
.sidebar-widget h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-light);
}
.info-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  border-bottom: 1px dashed rgba(0,0,0,0.05);
  padding-bottom: 0.5rem;
}
.info-list li span:first-child {
  font-weight: 600;
  color: var(--text-dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-blue);
}
.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--accent-light);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}
textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}
.filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--primary-blue);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding-top: 1rem;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}
@media (max-width: 1200px) {
  .hero::before { width: 40%; }
}
@media (max-width: 991px) {
  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    padding: 3rem 2rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.05);
    transition: var(--transition-fast);
    align-items: flex-start;
  }
  .nav-links.active { right: 0; }
  .burger { display: flex; }
  .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
  .burger.active span:nth-child(2) { opacity: 0; }
  .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
  .hero { padding-top: 100px; }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero::before {
    width: 100%;
    height: 40%;
    border-bottom-left-radius: 0;
    top: 0;
  }
  .hero-text { color: var(--white); }
  .hero-text h1 span { color: var(--white); }
  .hero-text h1 span::after { background: rgba(255, 255, 255, 0.2); }
  .hero-text p {
    color: rgba(255,255,255,0.9);
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons { justify-content: center; }
  .detail-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sidebar-widget { order: -1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; }
  .catalog-grid, .carousel { grid-template-columns: 1fr; }
  .academy-card { flex: 0 0 100%; }
  .content-box { padding: 2rem 1.5rem; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .nav-wrapper { height: 70px; }
  header { top: 0; }
  .logo { font-size: 1.5rem; }
  .section-header { margin-bottom: 2.5rem; }
  .detail-img { height: 300px; }
  .filters { gap: 0.5rem; }
  .filter-btn {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: var(--surface);
    padding: 40px;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.modal-overlay.active .modal-content {
    transform: translateY(0);
}
.modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.modal-icon svg {
    width: 30px; height: 30px;
}
.modal-content h3 {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 1.5rem;
}
.modal-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.5;
}
.modal-close {
    width: 100%;
}

.payment-methods-img {
    height: 35px;
    object-fit: contain;
    filter: grayscale(0.5) contrast(1.2);
    transition: filter 0.3s ease;
}
.payment-methods-img:hover {
    filter: grayscale(0) contrast(1);
}

.icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
