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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Loading Spinner */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

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

/* HEADER */
header {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #14b8a6 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(14, 165, 233, 0.3);
  backdrop-filter: blur(10px);
}

nav {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  height: 75px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

/* LOGO */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: transform 0.3s ease;
}

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

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo-text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-family: 'Playfair Display', serif;
}

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

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

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

.nav-links a:hover {
  transform: translateY(-2px);
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)),
    url("./hero/hero.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
  max-width: 900px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: 3px;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 300;
  letter-spacing: 1px;
}

.cta-button {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4, #14b8a6);
  color: #fff;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(14, 165, 233, 0.6);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.badge {
  text-align: center;
  color: #fff;
}

.badge-number {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  font-family: 'Playfair Display', serif;
}

.badge-text {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 0.3rem;
}

/* SECTIONS */
.section {
  display: none;
  animation: fadeIn 0.5s ease;
}

.section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.container {
  max-width: 1400px;
  margin: auto;
  padding: 4rem 2rem;
}

h2 {
  text-align: center;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3rem;
  margin-bottom: 3rem;
  font-weight: 800;
  position: relative;
  padding-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4, #14b8a6);
  border-radius: 2px;
}

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

/* CARD */
.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(14, 165, 233, 0.12);
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(14, 165, 233, 0.1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4, #14b8a6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.25);
}

.card h3 {
  color: #0ea5e9;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.card p {
  color: #666;
  line-height: 1.8;
}

/* ABOUT SECTION */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
}

.about-block h3 {
    color: #0ea5e9;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
}

.about-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    padding-left: 0;
}

.about-list li {
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.about-list li::before {
    content: "✓";
    color: #14b8a6;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

/* COURSES SECTION */
.course-card {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
  gap: 0.8rem;
}

.course-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.course-card .learn-more {
  margin-top: 0.5rem;
  color: #0ea5e9;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: underline;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-card:hover .learn-more {
  opacity: 1;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 4rem 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: auto;
}

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(14, 165, 233, 0.12);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #0ea5e9;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-text {
  color: #555;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #0ea5e9;
  font-size: 1.05rem;
}

.testimonial-location {
  color: #999;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  background: #f8f9fa;
  padding: 4rem 2rem;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: #fff;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  background: #f0f9ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: #666;
  line-height: 1.8;
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: #0ea5e9;
}

.faq-icon.active {
  transform: rotate(180deg);
}

/* TEACHER SLIDER */
.teacher-slider {
  position: relative;
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 2rem;
}

.teacher-slide {
  display: none;
  animation: fadeSlide 0.6s ease;
}

.teacher-slide.active {
  display: block;
}

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

.teacher-slide img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid #0ea5e9;
  box-shadow: 0 10px 35px rgba(14, 165, 233, 0.3);
  transition: transform 0.3s ease;
}

.teacher-slide img:hover {
  transform: scale(1.05);
}

.teacher-slide h3 {
  color: #0ea5e9;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.teacher-slide p {
  color: #555;
  max-width: 800px;
  margin: auto;
  line-height: 1.9;
  font-size: 1.05rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(14, 165, 233, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
}

.slider-btn.prev {
  left: -20px;
}

.slider-btn.next {
  right: -20px;
}

/* GALLERY */
.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.35);
}

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form-card {
  padding: 2.5rem;
}

.contact-form-card h3 {
  color: #0ea5e9;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0ea5e9;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

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

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4, #14b8a6);
  color: #fff;
  padding: 1.1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(14, 165, 233, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  display: none;
  border: 1px solid #c3e6cb;
}

.success-message.show {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-info-section .card {
  height: auto;
}

.contact-info-section .card p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.contact-info-section .card a {
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-info-section .card a:hover {
  color: #06b6d4;
  text-decoration: underline;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.map-container:hover {
  transform: scale(1.02);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Floating Buttons */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.instagram-float {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite 0.5s;
}

.instagram-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(225, 48, 108, 0.6);
}

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

/* Home Quick Links */
.home-quick-links {
  background: #f8f9fa;
  padding: 4rem 2rem;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: auto;
}

.quick-link-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
}

.quick-link-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.25);
  border-color: #0ea5e9;
}

.quick-link-card i {
  font-size: 3rem;
  color: #0ea5e9;
  margin-bottom: 1rem;
}

.quick-link-card h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.quick-link-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Home Contact Section */
.home-contact-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.home-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: auto;
}

.home-contact-text h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.home-contact-text h2::after {
  left: 0;
  transform: none;
}

.home-contact-text p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact-highlights {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-highlight {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #0ea5e9;
  font-weight: 600;
}

.contact-highlight i {
  font-size: 1.5rem;
}

.home-contact-form-card {
  padding: 2.5rem;
}

.home-contact-form-card h3 {
  color: #0ea5e9;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

/* Social Follow Section */
.social-follow-section {
  padding: 4rem 2rem;
  background: #fff;
}

.social-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: auto;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  gap: 0.8rem;
}

.social-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.social-link i {
  font-size: 2.5rem;
}

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

.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.facebook {
  background: #1877F2;
}

.social-link.youtube {
  background: #FF0000;
}

.social-link.twitter {
  background: #000000;
}

.social-link.linkedin {
  background: #0A66C2;
}

.social-link.pinterest {
  background: #E60023;
}

.social-link.gmail {
  background: #EA4335;
}

.social-link.whatsapp {
  background: #25D366;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

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

.footer-links a:hover {
  color: #0ea5e9;
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 75px;
    left: -100%;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4, #14b8a6);
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 2rem 0;
    transition: left 0.4s ease;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
  }

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

  .nav-links li {
    margin: 1rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .trust-badges {
    gap: 1.5rem;
  }

  .badge-number {
    font-size: 2rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .contact-info-section {
    gap: 1.5rem;
  }

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

  .logo-img {
    width: 45px;
    height: 45px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .slider-btn.prev {
    left: 5px;
  }

  .slider-btn.next {
    right: 5px;
  }

  .teacher-slide img {
    width: 200px;
    height: 200px;
  }

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

  nav {
    padding: 1rem 1.5rem;
  }

  .container {
    padding: 3rem 1.5rem;
  }

  .testimonials {
    padding: 3rem 1.5rem;
  }

  .faq-section {
    padding: 3rem 1.5rem;
  }

  .whatsapp-float, .instagram-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    right: 20px;
  }

  .instagram-float {
    bottom: 90px;
  }

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

  .home-contact-text h2 {
    text-align: center;
  }

  .home-contact-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-highlights {
    justify-content: center;
  }

  .social-links {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }

  .social-link {
    padding: 1.5rem 0.8rem;
  }

  .social-link i {
    font-size: 2rem;
  }

  .social-link span {
    font-size: 0.9rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .badge-number {
    font-size: 1.8rem;
  }

  .badge-text {
    font-size: 0.85rem;
  }
}