/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-blue: #63a9dd;
  --color-blue-light: #c6dff5;
  --color-orange: #ef9a4d;
  --color-orange-light: #f7c9aa;
  --color-green: #b6d299;
  --color-green-light: #d4e8c4;
  --color-yellow: #f6ce6f;
  --color-yellow-light: #fae9b8;
  --color-text: #2d3748;
  --color-text-muted: #718096;
  --color-border: #e2e8f0;
  --color-bg: #f7f9fc;
  --color-dark: #2d3748;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  background-color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--color-blue);
  color: white;
  box-shadow: 0 4px 14px rgba(99, 169, 221, 0.3);
}

.btn-primary:hover {
  background-color: #5299cd;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
}

.btn-outline:hover {
  background-color: var(--color-orange);
  color: white;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.hidden {
  display: none !important;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

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

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo-text {
  display: none;
}

.logo-name {
  font-weight: 700;
  color: var(--color-blue);
  font-size: 1.125rem;
  display: block;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-desktop a:hover {
  color: var(--color-blue);
}

.btn-cta-desktop {
  display: none;
}

.menu-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-text);
}

.nav-mobile {
  padding: 1rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile a {
  color: var(--color-text);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav-mobile a:hover {
  color: var(--color-blue);
}

.btn-mobile {
  margin-top: 0.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198, 223, 245, 0.3) 0%, white 50%, rgba(247, 201, 170, 0.2) 100%);
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.hero-decoration-1 {
  top: 8rem;
  left: 2.5rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(182, 210, 153, 0.3);
}

.hero-decoration-2 {
  bottom: 8rem;
  right: 2.5rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(246, 206, 111, 0.3);
}

.hero-decoration-3 {
  top: 50%;
  right: 25%;
  width: 4rem;
  height: 4rem;
  background-color: rgba(99, 169, 221, 0.2);
}

.hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(182, 210, 153, 0.2);
  color: #5a8a3d;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-green);
  border-radius: 50%;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.text-blue {
  color: var(--color-blue);
}

.text-orange {
  color: var(--color-orange);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  border-radius: 3rem;
  background: linear-gradient(135deg, rgba(99, 169, 221, 0.2) 0%, rgba(182, 210, 153, 0.2) 100%);
  transform: rotate(3deg);
}

.hero-image-container {
  position: relative;
  aspect-ratio: 1;
  border-radius: 3rem;
  background-color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: bounce 3s infinite;
}

.floating-card-left {
  left: -1rem;
  top: 25%;
}

.floating-card-right {
  right: -1rem;
  bottom: 25%;
  animation-delay: 0.5s;
}

.floating-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.floating-card-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
}

.floating-card-subtitle {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.wave-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.wave-separator svg {
  display: block;
  width: 100%;
}

/* Section Styles */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

/* About Section */
.about {
  padding: 5rem 0 8rem;
  background-color: white;
}

.vision-mission-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 5rem;
}

.vision-card,
.mission-card {
  border-radius: 1.5rem;
  padding: 2rem;
}

.vision-card {
  background: linear-gradient(135deg, rgba(198, 223, 245, 0.3) 0%, rgba(99, 169, 221, 0.1) 100%);
}

.mission-card {
  background: linear-gradient(135deg, rgba(247, 201, 170, 0.3) 0%, rgba(239, 154, 77, 0.1) 100%);
}

.vm-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.vision-card h3,
.mission-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.vision-card p,
.mission-card p {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  background-color: white;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Services Section */
.services {
  padding: 5rem 0 8rem;
  background-color: var(--color-bg);
}

.services-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto 3rem;
}

.service-card {
  background-color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--color-border);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

.services-cta {
  text-align: center;
}

/* Education Section */
.education {
  padding: 5rem 0 8rem;
  background-color: white;
  overflow: hidden;
}

.topics-grid {
  display: grid;
  gap: 1.5rem;
}

.topic-card {
  position: relative;
  background-color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 2px solid var(--color-border);
  transition: all 0.3s ease;
}

.topic-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.topic-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.topic-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.topic-card p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

.education-quote {
  margin-top: 4rem;
  text-align: center;
}

.education-quote blockquote {
  display: inline-block;
  background: linear-gradient(
    90deg,
    rgba(198, 223, 245, 0.5) 0%,
    rgba(182, 210, 153, 0.3) 50%,
    rgba(247, 201, 170, 0.5) 100%
  );
  border-radius: 1rem;
  padding: 2rem 3rem;
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  max-width: 40rem;
}

/* Join Section */
.join {
  padding: 5rem 0 8rem;
  background: linear-gradient(
    135deg,
    rgba(99, 169, 221, 0.1) 0%,
    rgba(198, 223, 245, 0.2) 50%,
    rgba(182, 210, 153, 0.1) 100%
  );
  position: relative;
  overflow: hidden;
}

.join-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.join-decoration-1 {
  top: 5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(246, 206, 111, 0.2);
}

.join-decoration-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 10rem;
  height: 10rem;
  background-color: rgba(99, 169, 221, 0.2);
}

.join-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.join-card {
  background-color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.join-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--color-border);
}

.join-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.join-card:hover .join-icon {
  transform: scale(1.1);
}

.join-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.join-card p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0 8rem;
  background-color: white;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
  background-color: var(--color-bg);
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
}

.testimonial-quote {
  position: absolute;
  top: -1rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card blockquote {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-bar {
  width: 0.25rem;
  height: 2rem;
  border-radius: 9999px;
}

.testimonial-card footer span {
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Contact Section */
.contact {
  padding: 5rem 0 8rem;
  background-color: var(--color-bg);
}

.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.contact-card-value {
  font-weight: 600;
  color: var(--color-text);
}

.contact-link {
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--color-blue);
}

.map-placeholder {
  background-color: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  height: 16rem;
  background: linear-gradient(135deg, var(--color-blue-light) 0%, rgba(182, 210, 153, 0.3) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-title {
  font-weight: 600;
  color: var(--color-text);
  margin-top: 0.75rem;
}

.map-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.contact-form-wrapper {
  background-color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
  background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(99, 169, 221, 0.2);
}

.form-group textarea {
  resize: none;
}

/* Footer */
.footer {
  background-color: var(--color-dark);
  color: white;
}

.footer .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

.footer-brand {
  grid-column: 1 / -1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-name {
  font-weight: 700;
  font-size: 1.25rem;
  display: block;
}

.footer-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  max-width: 28rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.social-link:hover {
  background-color: var(--color-blue);
}

.footer-links h4,
.footer-contact h4 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-blue);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--color-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: white;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Styles */
@media (min-width: 640px) {
  .logo-text {
    display: block;
  }

  .header-container {
    height: 5rem;
  }

  .logo-icon {
    width: 3rem;
    height: 3rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

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

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

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

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

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }

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

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

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

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

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

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

  .map-placeholder {
    height: 20rem;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .nav-desktop {
    display: flex;
  }

  .btn-cta-desktop {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

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

  .hero-content {
    text-align: left;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-title {
    font-size: 3.75rem;
  }

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

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

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

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

  .footer-brand {
    grid-column: auto;
  }
}
