:root {
  --black: #080808;
  --dark: #121212;
  --red: #d90429;
  --white: #ffffff;
  --grey: #282828;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  --radius: 28px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, rgba(217, 4, 41, 0.12), transparent 25%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
  color: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: background-color var(--transition), backdrop-filter var(--transition), padding var(--transition);
  padding: 1.4rem 0;
}

.navbar.scrolled {
  background-color: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(18px);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo {
  width: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  flex-wrap: wrap;
}

.nav-menu a {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  transition: color var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 1rem 1.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, #d90429, #ff1f40);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(217, 4, 41, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 21px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 30px; }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 34%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: -5% 0 0 0;
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.15);
  filter: saturate(0.9) contrast(1.08) brightness(0.72);
}

@media (max-width: 768px) {
  .hero-video {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-position: center center;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.36) 0%, rgba(0,0,0,0.52) 100%);
}

.hero-particles span {
  position: absolute;
  display: none;
  width: 12px;
  height: 12px;
  background: rgba(217, 4, 41, 0.8);
  border-radius: 50%;
  opacity: 0.55;
  animation: float 9s ease-in-out infinite;
}

.hero-particles span:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 35%; left: 72%; animation-delay: 1.6s; }
.hero-particles span:nth-child(3) { top: 60%; left: 18%; animation-delay: 3.1s; }
.hero-particles span:nth-child(4) { top: 25%; left: 45%; animation-delay: 4.6s; }
.hero-particles span:nth-child(5) { top: 75%; left: 68%; animation-delay: 6.8s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(0.76); }
  50% { transform: translateY(-32px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  width: min(440px, calc(100% - 2rem));
  margin-left: clamp(1rem, 6vw, 7.5rem);
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  margin-top: 2rem;
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-brand img {
  width: 58px;
  border-radius: 50%;
  margin: 0;
  display: block;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
  text-align: left;
}

.tagline {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.7rem;
  margin-top: 0.15rem;
}

.hero-actions .btn {
  min-height: 44px;
  padding: 0.72rem 1rem;
  border-radius: 12px;
  flex: 0 1 auto;
  min-width: 135px;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(12,12,12,0.24);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-actions .btn:hover,
.hero-actions .btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.24);
  border-color: rgba(255,255,255,0.28);
}

.hero-actions .btn-primary {
  box-shadow: 0 16px 36px rgba(217, 4, 41, 0.28);
}

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

.scroll-indicator {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
}

.scroll-indicator span {
  width: 2px;
  height: 50px;
  border-radius: 999px;
  background: rgba(255,255,255,0.36);
  position: relative;
}

.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: scrollPulse 1.6s infinite ease-in-out;
}

@keyframes scrollPulse {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.8; }
  50% { transform: translate(-50%, 18px); opacity: 0.2; }
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  color: var(--red);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.section-label.light {
  color: rgba(255,255,255,0.82);
}

.section h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
  line-height: 1.05;
}

.section p {
  color: rgba(255,255,255,0.72);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.85;
}

.text-link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link:hover,
.text-link:focus {
  color: var(--red);
}

.features-grid,
.premium-grid,
.programs-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  gap: 1.8rem;
}

.features-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-slider,
.why-us-slider,
.programs-slider {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 0.5rem 0 1rem;
}

.about-viewport,
.why-us-viewport,
.programs-viewport {
  overflow: hidden;
  position: relative;
  padding: 0.25rem 0;
  cursor: grab;
  touch-action: pan-y;
}

.about-viewport:active,
.why-us-viewport:active,
.programs-viewport:active {
  cursor: grabbing;
}

.about-track,
.why-us-track,
.programs-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  align-items: stretch;
}

.feature-card,
.premium-card,
.program-card,
.testimonial-card,
.contact-card,
.map-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.35);
  padding: 2rem;
  backdrop-filter: blur(16px);
}

.feature-card {
  display: grid;
  gap: 1rem;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card i,
.premium-card i {
  font-size: 1.8rem;
  color: var(--red);
}

.feature-card h3,
.premium-card h3,
.program-card h3,
.testimonial-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.feature-card p,
.premium-card p {
  color: rgba(255,255,255,0.74);
}

.premium-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-us-slider {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 0.5rem 0 1rem;
}

.why-us-viewport {
  overflow: hidden;
  position: relative;
  padding: 0.25rem 0;
  cursor: grab;
  touch-action: pan-y;
}

.why-us-viewport:active {
  cursor: grabbing;
}

.why-us-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  align-items: stretch;
}

/* Mobile spacing between cards */
@media (max-width: 768px) {
  .pricing-grid,
  .features-grid,
  .stats-grid,
  .programs-track,
  .gallery-track {
    gap: 1rem;
  }
}

.premium-card {
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.about-slider .feature-card,
.why-us-slider .premium-card {
  flex: 0 0 calc(50% - 0.64rem);
  opacity: 0.8;
  transform: scale(0.97);
  transition: transform 0.5s ease, opacity 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.about-slider .feature-card.is-active,
.why-us-slider .premium-card.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(217, 4, 41, 0.35);
  box-shadow: 0 0 0 1px rgba(217, 4, 41, 0.12), 0 18px 50px rgba(217, 4, 41, 0.12);
  z-index: 2;
}

.feature-card:hover,
.premium-card:hover {
  opacity: 1;
  transform: translateY(-6px) scale(1);
  border-color: rgba(217, 4, 41, 0.35);
  box-shadow: 0 0 0 1px rgba(217, 4, 41, 0.12), 0 18px 50px rgba(217, 4, 41, 0.12);
  z-index: 2;
}

.why-us-slider .premium-card:hover {
  transform: translateY(-10px) scale(1);
}

.about-arrow,
.why-us-arrow,
.programs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(8,8,8,0.7);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.3s ease, background 0.3s ease;
}

.about-arrow:hover,
.why-us-arrow:hover,
.programs-arrow:hover {
  background: rgba(217,4,41,0.9);
  transform: translateY(-50%) scale(1.04);
}

.about-arrow-prev,
.why-us-arrow-prev,
.programs-arrow-prev {
  left: 0.5rem;
}

.about-arrow-next,
.why-us-arrow-next,
.programs-arrow-next {
  right: 0.5rem;
}

.about-dots,
.why-us-dots,
.programs-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.about-dot,
.why-us-dot,
.programs-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-dot.is-active,
.why-us-dot.is-active,
.programs-dot.is-active {
  width: 32px;
  background: var(--red);
}

.program-card {
  flex: 0 0 calc(25% - 0.94rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0.8;
  transform: scale(0.97);
  transition: transform 0.5s ease, opacity 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.program-card.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(217, 4, 41, 0.35);
  box-shadow: 0 0 0 1px rgba(217, 4, 41, 0.12), 0 18px 50px rgba(217, 4, 41, 0.12);
  z-index: 2;
}

.program-image {
  min-height: 240px;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  margin-bottom: 1.6rem;
  filter: brightness(0.88);
}

.program-card h3 {
  margin-bottom: 0.8rem;
}

.program-card p {
  color: rgba(255,255,255,0.72);
  flex-grow: 1;
}

.btn-program {
  margin-top: 1.6rem;
  width: fit-content;
}

.program-card:hover {
  opacity: 1;
  transform: translateY(-6px) scale(1);
  border-color: rgba(217, 4, 41, 0.35);
  box-shadow: 0 0 0 1px rgba(217, 4, 41, 0.12), 0 18px 50px rgba(217, 4, 41, 0.12);
  z-index: 2;
}

.programs-arrow,
.why-us-arrow {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(8,8,8,0.7);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.3s ease, background 0.3s ease;
}

.programs-arrow:hover,
.why-us-arrow:hover {
  background: rgba(217,4,41,0.9);
  transform: translateY(-50%) scale(1.04);
}

.programs-arrow-prev,
.why-us-arrow-prev {
  left: 0.5rem;
}

.programs-arrow-next,
.why-us-arrow-next {
  right: 0.5rem;
}

.programs-dots,
.why-us-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.programs-dot,
.why-us-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.programs-dot.is-active,
.why-us-dot.is-active {
  width: 32px;
  background: var(--red);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fee-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.fee-card:hover {
  transform: translateY(-10px);
  border-color: rgba(217,4,41,0.35);
}

.fee-card h3 {
  margin-bottom: 0.9rem;
}

.fee-card .price {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
  color: rgba(255,255,255,0.92);
}

.fee-card p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.fee-card .note {
  color: rgba(255,255,255,0.56);
  font-size: 0.92rem;
  margin-top: 1rem;
}

.stats {
  background: linear-gradient(140deg, rgba(217,4,41,0.14), transparent 60%), rgba(11, 11, 11, 0.96);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  padding: 2rem;
  text-align: center;
}

.stat-card .counter {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.8rem;
}

.stat-card p {
  color: rgba(255,255,255,0.72);
}

.gallery-slider {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 0.5rem 0 1rem;
}

.gallery-viewport {
  overflow: hidden;
  position: relative;
  padding: 0.25rem 0;
  cursor: grab;
  touch-action: pan-y;
}

.gallery-viewport:active {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  align-items: center;
}

.gallery-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: clamp(320px, 52vw, 560px);
  overflow: hidden;
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.35);
  opacity: 0.7;
  transform: scale(0.96);
  transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
  filter: saturate(0.75);
}

.gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: rgba(8, 8, 8, 0.9);
  transition: transform 0.8s ease, filter 0.8s ease;
  cursor: pointer;
}

.gallery-slide:hover img {
  transform: scale(1.08);
}

.gallery-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.56) 100%);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(8,8,8,0.7);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.3s ease, background 0.3s ease;
}

.gallery-arrow:hover {
  background: rgba(217,4,41,0.9);
  transform: translateY(-50%) scale(1.04);
}

.gallery-arrow-prev {
  left: 0.5rem;
}

.gallery-arrow-next {
  right: 0.5rem;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.is-active {
  width: 32px;
  background: var(--red);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 2000;
  padding: 1.5rem;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox img {
  max-width: min(90vw, 1000px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  animation: galleryZoom 0.28s ease;
}

.gallery-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
}

@keyframes galleryZoom {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.testimonial-card p {
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial-meta h4 {
  font-size: 1.1rem;
}

.stars {
  color: #ffcc29;
  letter-spacing: 0.1em;
}

.cta-section {
  padding: 4rem 0;
}

.cta-card {
  background: linear-gradient(130deg, rgba(217,4,41,0.95), rgba(191,0,28,0.92));
  border-radius: 32px;
  padding: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 34px 100px rgba(217,4,41,0.26);
}

.cta-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-top: 0.8rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-grid {
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
}

.contact-card h3 {
  margin-bottom: 1rem;
}

.contact-card p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.4rem;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

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

.social-links a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  transition: transform var(--transition), background var(--transition);
}



.social-links{
    display:flex;
    gap:18px;
    align-items:center;
}

.social-links a{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#181818;
    color:#fff;
    font-size:24px;
    text-decoration:none;
    border:2px solid rgba(255,255,255,.08);
    transition:.35s ease;
}

.social-links a:hover{
    transform:translateY(-6px) scale(1.08);
    background:#d90429;
    box-shadow:0 0 25px rgba(217,4,41,.6);
}
.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 28px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 72px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer a,
.footer p {
  display: block;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.9rem;
}

.copyright {
  text-align: center;
  color: rgba(255,255,255,0.55);
}

.float-buttons {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(15, 15, 15, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255,255,255,0.1);
}

.float-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #08b45d);
}

.float-btn.instagram {
  background: linear-gradient(135deg, #ff9a3d, #d62976 35%, #4f5bd5);
}

.float-btn:hover {
  transform: translateY(-3px);
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 9rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform var(--transition);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(-8px);
}

.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: grid;
  place-items: center;
  z-index: 2000;
}

.spinner {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 8px solid rgba(255,255,255,0.12);
  border-top-color: var(--red);
  animation: spin 1.2s linear infinite;
}

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

@media (max-width: 1024px) {
  .features-grid,
  .premium-grid,
  .testimonial-grid,
  .contact-grid,
  .gallery-grid,
  .footer-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-card {
    flex-basis: calc(50% - 0.7rem);
  }

  .about-slider .feature-card,
  .why-us-slider .premium-card {
    flex-basis: calc(50% - 0.7rem);
  }

  .gallery-slide {
    flex-basis: 46%;
    height: 360px;
  }

  .hero-content {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .contact-card[data-aos],
  .map-card[data-aos],
  [data-aos='fade-left'],
  [data-aos='fade-right'] {
    transform: translate3d(0, 0, 0) !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
  }

  .navbar {
    padding: 0.9rem 0;
  }

  .logo {
    width: 48px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 88vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5.5rem 1.25rem 1.5rem;
    gap: 0.5rem;
    background: rgba(11, 11, 11, 0.98);
    border-left: 1px solid rgba(255,255,255,0.08);
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.36);
    transition: right 0.35s ease;
    z-index: 998;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    width: 100%;
    padding: 0.9rem 0;
    font-size: 1rem;
  }

  .nav-menu .btn {
    width: 100%;
    margin-top: 0.5rem;
  }

  .hero {
    min-height: 70vh;
    padding-top: 3.8rem;
  }

  .hero-content {
    width: min(100%, 300px);
    padding: 0;
    gap: 0.15rem;
    margin-left: 0;
    text-align: center;
    align-items: center;
  }

  .hero-brand img {
    width: 46px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8.5vw, 2.6rem);
    letter-spacing: 0.03em;
    line-height: 0.9;
    text-align: center;
  }

  .tagline {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: none;
    flex-basis: auto;
    min-width: 0;
  }

  .section {
    padding: 4rem 0;
  }

  .section-intro h2,
  .section h2 {
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 1.08;
  }

  .section-intro p,
  .section p {
    font-size: 0.97rem;
  }

  .premium-grid,
  .features-grid,
  .testimonial-grid,
  .gallery-grid,
  .stats-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    flex-basis: 100%;
  }

  .about-slider .feature-card,
  .why-us-slider .premium-card {
    flex-basis: 100%;
  }

  .about-arrow,
  .programs-arrow,
  .why-us-arrow {
    display: none;
  }

  .gallery-slide {
    flex-basis: 100%;
    height: 420px;
  }

  .gallery-arrow {
    display: none;
  }

  .cta-card,
  .contact-grid {
    align-items: stretch;
  }

  .fee-card,
  .program-card,
  .feature-card,
  .premium-card,
  .contact-card,
  .stat-card {
    padding: 1.2rem;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
  }

  .float-buttons {
    right: 1rem;
    bottom: 7rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1rem, 1200px);
  }

  .navbar {
    padding: 0.8rem 0;
  }

  .hero {
    padding-top: 5.1rem;
  }

  .hero-content {
    padding: 1rem 0.8rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 15vw, 2.8rem);
    letter-spacing: 0.06em;
  }

  .tagline {
    font-size: 0.85rem;
  }

  .btn {
    padding: 0.9rem 1.2rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-intro h2,
  .section h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .cta-card {
    padding: 1.4rem;
  }
}
