:root {
  --primary: #6b6b6b;
  --secondary: #b3b3b3;
  --dark: #111827;
  --dark-blue: #1f2937;
  --light: #ffffff;
  --gray: #9ca3af;
  --gradient: linear-gradient(135deg, #6b6b6b, #b3b3b3);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

section {
  padding: 80px 0;
  position: relative;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 5%;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(107, 107, 107, 0.1);
}

nav.scrolled {
  padding: 0.7rem 5%;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  background: rgba(17, 24, 39, 0.98);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--light);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.cta-btn {
  background: var(--gradient);
  color: var(--light);
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 107, 107, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--light);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(107, 107, 107, 0.1) 0%,
    transparent 60%
  );
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.02)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: "Poppins", sans-serif;
}

.btn-primary {
  background: var(--gradient);
  color: var(--light);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(107, 107, 107, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.admission-alert {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(107, 107, 107, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(107, 107, 107, 0.3);
  font-weight: 500;
  animation: pulse 2s infinite;
}

.admission-alert i {
  color: var(--primary);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(107, 107, 107, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(107, 107, 107, 0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 2rem;
  color: var(--primary);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.special-offer {
  background: var(--dark-blue);
  padding: 3rem 0;
  border-top: 1px solid rgba(107, 107, 107, 0.1);
  border-bottom: 1px solid rgba(107, 107, 107, 0.1);
}

.offer-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  background: var(--gradient);
  padding: 2rem 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.offer-icon {
  font-size: 4rem;
  color: var(--light);
}

.offer-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.offer-highlight {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.offer-text p {
  margin-bottom: 0.3rem;
}

.offer-urgency {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 500;
}

.offer-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  background: var(--light);
  color: var(--primary);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
}

.offer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
}

.about {
  background: var(--dark);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gradient);
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  backdrop-filter: blur(10px);
}

.about-badge i {
  font-size: 2rem;
}

.about-badge h4 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.about-badge p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
}

.about-text .lead {
  font-size: 1.1rem;
  color: var(--light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-weight: 500;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.about-feature-item i {
  color: var(--primary);
  font-size: 1.8rem;
  min-width: 30px;
}

.about-feature-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--light);
}

.about-feature-item p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

.programs {
  background: var(--dark-blue);
}

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

.program-card {
  background: var(--dark);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.program-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--light);
}

.program-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.program-card > p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.program-points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  color: var(--gray);
  font-size: 0.95rem;
}

.program-points i {
  color: var(--primary);
  font-size: 0.85rem;
}

.program-note {
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: center;
  padding: 1.2rem 2rem;
  background: rgba(107, 107, 107, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(107, 107, 107, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.program-note i {
  color: var(--primary);
  font-size: 1.5rem;
}

.program-note p {
  color: var(--gray);
  margin: 0;
}

.why-us {
  background: var(--dark);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--dark-blue);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(107, 107, 107, 0.1);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.why-card p {
  color: var(--gray);
  line-height: 1.6;
}

.schedule {
  background: var(--dark-blue);
}

.schedule-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.schedule-card {
  background: var(--dark);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.schedule-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.schedule-card.featured {
  border: 2px solid var(--primary);
}

.schedule-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.schedule-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--light);
}

.schedule-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.schedule-time {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.schedule-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.schedule-info i {
  color: var(--primary);
}

.schedule-btn {
  width: 100%;
  padding: 0.9rem;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.schedule-btn:hover {
  background: var(--gradient);
  color: var(--light);
  border-color: transparent;
}

.schedule-note {
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: center;
  padding: 1.2rem 2rem;
  background: rgba(107, 107, 107, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(107, 107, 107, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.schedule-note i {
  color: var(--primary);
  font-size: 1.5rem;
}

.schedule-note p {
  color: var(--gray);
  margin: 0;
}

.contact {
  background: var(--dark);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 10px;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--light);
}

.contact-item p {
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

.contact-note {
  font-size: 0.85rem;
  opacity: 0.8;
}

.cta-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--gradient);
  border-radius: 12px;
  margin-top: 2rem;
}

.cta-box i {
  font-size: 2.5rem;
}

.cta-box h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.cta-box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-form-wrapper {
  background: var(--dark-blue);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--light);
}

.contact-form > p {
  color: var(--gray);
  margin-bottom: 2rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group i {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 1.1rem;
}

.form-group textarea + i {
  top: 1.5rem;
  transform: none;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1rem 1rem 3.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--light);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-group select option {
  background: var(--dark-blue);
  color: var(--light);
}

.full-width {
  width: 100%;
  justify-content: center;
}

.footer {
  background: var(--dark-blue);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 0.8rem;
}

.footer-logo i {
  color: var(--primary);
  font-size: 1.6rem;
}

.footer-tagline {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: var(--light);
}

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

.footer-links ul li {
  margin-bottom: 0.7rem;
}

.footer-links ul li a {
  color: var(--gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--light);
  transform: translateX(3px);
}

.footer-links ul li a i {
  font-size: 0.8rem;
}

.footer-contact ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gray);
  margin-bottom: 0.8rem;
}

.footer-contact ul li i {
  color: var(--primary);
  width: 20px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--light);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--gray);
}

.footer-bottom p {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border: none;
  border-radius: 10px;
  color: var(--light);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107, 107, 107, 0.4);
}

[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-blue);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .cta-btn {
    display: none;
  }

  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .programs-grid,
  .why-us-grid,
  .schedule-content {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .offer-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 1.2rem;
  }

  .logo i {
    font-size: 1.4rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .about-image img {
    height: 350px;
  }

  .scroll-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  .offer-content {
    padding: 1.5rem;
  }

  .offer-text h3 {
    font-size: 1.4rem;
  }

  .offer-icon {
    font-size: 3rem;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }
}


/* ============================================
   WEEKLY TESTS SECTION
   ============================================ */
.tests {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.tests-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b3b3b3;
}

.tests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.test-category {
    background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid #3a3a3a;
    transition: all 0.3s ease;
}

.test-category:hover {
    border-color: #6b6b6b;
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(107, 107, 107, 0.2);
}

.test-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #3a3a3a;
}

.test-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6b6b6b, #8a8a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.test-icon.education {
    background: linear-gradient(135deg, #4a90e2, #357abd);
}

.test-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.test-frequency {
    color: #6b6b6b;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.test-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.test-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #6b6b6b;
    transition: all 0.3s ease;
}

.test-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #8a8a8a;
}

.test-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6b6b6b;
    flex-shrink: 0;
}

.test-item-icon.education {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
}

.test-item-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.test-item-content p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.test-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.test-metrics span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(107, 107, 107, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #b3b3b3;
}

.test-metrics span i {
    color: #6b6b6b;
}

.tests-benefits {
    margin: 4rem 0 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
    border-radius: 20px;
    border: 2px solid #3a3a3a;
}

.tests-benefits h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: white;
}

.tests-benefits h3 i {
    color: #6b6b6b;
    margin-right: 0.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #6b6b6b;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.benefit-item p {
    color: #b3b3b3;
    font-size: 0.95rem;
}

.tests-note {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border-left: 4px solid #6b6b6b;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.tests-note i {
    font-size: 1.5rem;
    color: #6b6b6b;
}

.tests-note p {
    margin: 0;
    color: #b3b3b3;
    line-height: 1.6;
}


/* Responsive Styles for Tests Section */
@media (max-width: 768px) {
    .tests-grid {
        grid-template-columns: 1fr;
    }
    
    .test-item {
        flex-direction: column;
        text-align: center;
    }
    
    .test-item-icon {
        margin: 0 auto;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .test-metrics {
        justify-content: center;
    }
}
