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

body {
  font-family: 'Poppins', sans-serif;
  background: #FFF9F5;
  color: #264653;
  overflow-x: hidden;
}

:root {
  --primary: #F4A261;
  --secondary: #2A9D8F;
  --accent: #E76F51;
  --dark: #264653;
  --light: #FFF9F5;
}

/* =========================
   NAVBAR
========================= */
.custom-navbar {
  width: 100%;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 18px 0;
  box-shadow:
    0 2px 20px rgba(0,0,0,0.04);
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
   BRAND
========================= */
.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.navbar-brand-custom img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.navbar-brand-custom span {
  font-size: 24px;
  font-weight: 800;
  color: #f2a056;
  line-height: 1;
}

/* =========================
   MENU
========================= */

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 42px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #264653;
  transition: 0.3s;
}

.navbar-menu li a:hover {
  color: #f2a056;
}

/* =========================
   BUTTON
========================= */

.navbar-action {
  display: flex;
  align-items: center;
}

.btn-register {
  background: #f2a056;
  color: white;
  text-decoration: none;
  padding:
    16px 42px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-register:hover {
  background: #e58b39;
  color: white;
  transform: translateY(-2px);
}

/* =========================
   MOBILE
========================= */

.mobile-toggle {
  display: none;
  font-size: 28px;
  color: #264653;
  cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .navbar-menu,
  .navbar-action {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .navbar-brand-custom span {
    font-size: 28px;
  }
  .navbar-brand-custom img {
    width: 48px;
    height: 48px;
  }
}

/* HERO */
.hero-section {
  padding-top: 50px;
  position: relative;
}

.hero-badge {
  background: rgba(244,162,97,0.15);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 25px;
  font-weight: 600;
}

.hero-title {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 25px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #666;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: var(--primary);
  color: white;
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  background: var(--secondary);
  color: white;
}

.btn-outline-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 50px;
  position: relative;
  z-index: 2;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  animation: float 5s infinite ease-in-out;
}

.shape-1 {
  width: 120px;
  height: 120px;
  background: rgba(244,162,97,0.2);
  top: -20px;
  right: -20px;
}

.shape-2 {
  width: 80px;
  height: 80px;
  background: rgba(42,157,143,0.2);
  bottom: 50px;
  left: -20px;
}

.shape-3 {
  width: 50px;
  height: 50px;
  background: rgba(231,111,81,0.2);
  bottom: -10px;
  right: 80px;
}

@keyframes float {
  0% {transform: translateY(0px);}
  50% {transform: translateY(-15px);}
  100% {transform: translateY(0px);}
}

/* ABOUT */

.about-section {
  padding: 50px 0;
}

.about-image {
  width: 100%;
  border-radius: 40px;
}

.section-badge {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 15px;
}

.principal-name {
  color: var(--secondary);
  margin-bottom: 25px;
}

.about-description {
  line-height: 2;
}

/* SECTION HEADER */

.section-header {

  max-width: 750px;

  margin: auto;

  margin-bottom: 40px;
}

.section-subtitle {

  color: #666;

  line-height: 1.8;

  margin-top: 20px;
}

/* VISI MISI */

.vision-mission-section {

  padding: 120px 0;

  background: white;

  position: relative;
}

.vision-card,
.mission-card {

  background: #FFF9F5;

  padding: 50px;

  border-radius: 35px;

  height: 100%;

  transition: 0.4s;

  position: relative;

  overflow: hidden;
}

.vision-card:hover,
.mission-card:hover {

  transform: translateY(-10px);

  box-shadow:
    0 15px 40px rgba(0,0,0,0.08);
}

.vision-card::before,
.mission-card::before {

  content: '';

  position: absolute;

  width: 180px;

  height: 180px;

  border-radius: 50%;

  top: -70px;

  right: -70px;

  opacity: 0.08;
}

.vision-card::before {

  background: var(--primary);
}

.mission-card::before {

  background: var(--secondary);
}

.vision-icon,
.mission-icon {

  width: 90px;

  height: 90px;

  border-radius: 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 40px;

  margin-bottom: 30px;
}

.vision-icon {

  background:
    rgba(244,162,97,0.15);
}

.mission-icon {

  background:
    rgba(42,157,143,0.15);
}

.vision-card h3,
.mission-card h3 {

  font-size: 32px;

  margin-bottom: 25px;

  font-weight: 700;
}

.vision-card p,
.mission-card p,
.vision-card li,
.mission-card li {

  line-height: 2;

  color: #555;
}

.mission-card ul {

  padding-left: 20px;
}

/* =========================
   VISION MISSION CONTENT
========================= */

#visionContent,
#missionContent {

  margin-top: 20px;

  color: #555;

  line-height: 1.9;

  font-size: 16px;
}

#visionContent ul,
#missionContent ul {

  padding-left: 20px;
}

#visionContent li,
#missionContent li {

  margin-bottom: 10px;
}

/* MOBILE */

@media(max-width:768px) {
  .vision-card,
  .mission-card {
    padding: 35px;
  }
  .vision-card h3,
  .mission-card h3 {
    font-size: 26px;
  }
}

/* PROGRAM SECTION */

.program-section {

  padding: 120px 0;

  background: #FFF9F5;
}

.program-card {

  background: white;

  border-radius: 35px;

  overflow: hidden;

  transition: 0.4s;

  height: 100%;

  position: relative;
}

.program-card:hover {

  transform: translateY(-10px);

  box-shadow:
    0 20px 45px rgba(0,0,0,0.08);
}

.program-image {

  width: 100%;

  height: 240px;

  object-fit: cover;
}

.program-content {

  padding: 30px;
}

.program-content h3 {

  font-size: 28px;

  font-weight: 700;

  margin-bottom: 20px;

  color: var(--dark);
}

.program-content p {

  line-height: 1.8;

  color: #666;
}

.program-card::after {

  content: '';

  position: absolute;

  width: 120px;

  height: 120px;

  background:
    rgba(244,162,97,0.08);

  border-radius: 50%;

  bottom: -40px;

  right: -40px;
}

/* MOBILE */

@media(max-width:768px) {
  .program-content h3 {
    font-size: 24px;
  }
}

/* =========================
   FACILITIES
========================= */

.facilities-section {

  padding: 120px 0;

  background: #fff;
}

.section-header {

  text-align: center;

  margin-bottom: 70px;
}

.section-badge {

  display: inline-block;

  padding:
    10px 20px;

  border-radius: 999px;

  background: #fff3e8;

  color: #f2a056;

  font-weight: 700;

  font-size: 14px;

  margin-bottom: 20px;
}

.section-header h2 {

  font-size: 52px;

  font-weight: 800;

  line-height: 1.2;

  color: #264653;

  margin-bottom: 20px;
}

.section-header p {

  max-width: 700px;

  margin: auto;

  font-size: 18px;

  color: #6c757d;

  line-height: 1.8;
}

/* =========================
   GRID
========================= */

.facilities-grid {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 28px;
}

/* =========================
   CARD
========================= */

.facility-card {

  position: relative;

  overflow: hidden;

  border-radius: 32px;

  height: 340px;

  cursor: pointer;

  box-shadow:
    0 10px 40px rgba(0,0,0,0.08);

  transition: 0.4s ease;
}

.facility-card:hover {

  transform:
    translateY(-8px);
}

.facility-card img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.6s ease;
}

.facility-card:hover img {

  transform: scale(1.08);
}

/* =========================
   OVERLAY
========================= */

.facility-overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.78),
      rgba(0,0,0,0.15),
      transparent
    );

  display: flex;

  align-items: flex-end;

  padding: 32px;
}

.facility-content h3 {

  font-size: 32px;

  font-weight: 800;

  color: white;

  margin-bottom: 12px;
}

.facility-content p {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  .section-header h2 {
    font-size: 38px;
  }
  .facility-card {
    height: 280px;
  }
}

/* TEACHERS SECTION */

.teachers-section {

  padding: 120px 0;

  background: #FFF9F5;

  position: relative;
}

.teacher-card {

  background: white;

  border-radius: 35px;

  overflow: hidden;

  transition: 0.4s;

  text-align: center;

  padding-bottom: 35px;

  position: relative;
}

.teacher-card:hover {

  transform: translateY(-10px);

  box-shadow:
    0 20px 45px rgba(0,0,0,0.08);
}

.teacher-image-wrapper {

  position: relative;

  padding: 25px;
}

.teacher-image {

  width: 100%;

  height: 320px;

  object-fit: cover;

  border-radius: 30px;
}

.teacher-shape {

  position: absolute;

  width: 120px;

  height: 120px;

  background:
    rgba(244,162,97,0.15);

  border-radius: 50%;

  top: -30px;

  right: -30px;

  z-index: 0;
}

.teacher-content {

  padding: 0 25px;
}

.teacher-content h3 {

  font-size: 28px;

  font-weight: 700;

  margin-bottom: 10px;

  color: var(--dark);
}

.teacher-content p {

  color: var(--secondary);

  font-weight: 600;

  margin-bottom: 0;
}

/* SWIPER */

.teacherSwiper {

  padding-bottom: 60px;
}

.swiper-pagination-bullet {

  width: 12px;

  height: 12px;

  background: var(--primary);

  opacity: 0.4;
}

.swiper-pagination-bullet-active {

  opacity: 1;
}

/* MOBILE */

@media(max-width:768px) {
  .teacher-image {
    height: 280px;
  }
  .teacher-content h3 {
    font-size: 24px;
  }
}

/* TESTIMONIAL */

.testimonial-section {

  padding: 120px 0;

  background: white;
}

.testimonial-card {

  background: #FFF9F5;

  border-radius: 35px;

  padding: 40px;

  position: relative;

  overflow: hidden;

  transition: 0.4s;

  height: 100%;
}

.testimonial-card:hover {

  transform: translateY(-10px);

  box-shadow:
    0 20px 45px rgba(0,0,0,0.08);
}

.testimonial-quote {

  font-size: 90px;

  position: absolute;

  top: 10px;

  right: 25px;

  color:
    rgba(244,162,97,0.15);

  font-weight: bold;

  line-height: 1;
}

.testimonial-text {

  line-height: 2;

  color: #555;

  margin-bottom: 35px;

  position: relative;

  z-index: 2;
}

.testimonial-user {

  display: flex;

  align-items: center;

  gap: 18px;
}

.testimonial-user img {

  width: 80px;

  height: 80px;

  border-radius: 50%;

  object-fit: cover;

  border: 5px solid white;
}

.testimonial-user h4 {

  margin-bottom: 5px;

  font-size: 22px;

  font-weight: 700;
}

.testimonial-user p {

  margin: 0;

  color: var(--secondary);

  font-weight: 500;
}

.testimonialSwiper {

  padding-bottom: 60px;
}

/* MOBILE */

@media(max-width:768px) {
  .testimonial-card {
    padding: 30px;
  }
  .testimonial-user img {
    width: 65px;
    height: 65px;
  }
}

/* NEWS SECTION */

.news-section {
  padding: 120px 0;
  background: #FFF9F5;
}

.news-card {
  background: white;
  border-radius: 35px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 45px rgba(0,0,0,0.08);
}

.news-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.news-content {
  padding: 35px;
}

.news-date {
  display: inline-block;
  background:
    rgba(244,162,97,0.12);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.news-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.news-content p {
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
}

.news-button {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
}
.news-button:hover {

  color: var(--primary);
}



/* =========================
   NEWS
========================= */

.news-link {
  text-decoration: none;
  color: inherit;
}

.news-card {
  background: white;
  border-radius: 40px;
  overflow: hidden;
  box-shadow:
    0 10px 40px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  height: 100%;
}

.news-card:hover {
  transform:
    translateY(-8px);
}

.news-image {
  height: 320px;
  overflow: hidden;
}

.news-image img {

  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.news-card:hover img {
  transform: scale(1.08);
}

.news-content {
  padding: 40px;
}

.news-date {
  display: inline-block;
  background: #fff3e8;
  color: #f2a056;
  padding:
    10px 18px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 24px;
}

.news-content h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  color: #264653;
  margin-bottom: 24px;
}

.news-content p {
  color: #6c757d;
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 24px;
}

.news-read-more {
  font-weight: 700;
  color: #f2a056;
}

@media (max-width: 992px) {
  .news-content h3 {
    font-size: 30px;
  }

  .news-image {
    height: 240px;
  }
}

/* MOBILE */

@media(max-width:768px) {
  .news-content {
    padding: 25px;
  }
  .news-content h3 {
    font-size: 24px;
  }
}

/* NEWS SLIDER */

.news-slider-wrapper {
  position: relative;
}

.news-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - 16px);
  gap: 32px;

  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 0;
}

.news-slider::-webkit-scrollbar {
  display: none;
}

.news-slide {
  width: 100%;
}

.news-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: #F4A261;
  color: white;
  font-size: 28px;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.news-nav.prev {
  left: -28px;
}

.news-nav.next {
  right: -28px;
}

.news-nav:hover {
  background: #e58f43;
}

/* MOBILE */

@media(max-width:768px){

  .news-slide{
    min-width: 100%;
  }

  .news-nav{
    display:none;
  }

}

/* CALENDAR SECTION */

.calendar-section {

  padding: 120px 0;

  background: white;
}

.calendar-timeline {

  position: relative;

  max-width: 900px;

  margin: auto;
}

.calendar-timeline::before {

  content: '';

  position: absolute;

  left: 30px;

  top: 0;

  width: 4px;

  height: 100%;

  background:
    rgba(244,162,97,0.2);

  border-radius: 10px;
}

.calendar-item {

  position: relative;

  padding-left: 90px;

  margin-bottom: 50px;
}

.calendar-dot {

  position: absolute;

  left: 12px;

  top: 10px;

  width: 40px;

  height: 40px;

  border-radius: 50%;

  background: var(--primary);

  border: 6px solid white;

  box-shadow:
    0 0 0 6px rgba(244,162,97,0.2);
}

.calendar-card {

  background: #FFF9F5;

  border-radius: 30px;

  padding: 35px;

  transition: 0.4s;
}

.calendar-card:hover {

  transform: translateY(-8px);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.08);
}

.calendar-date {

  display: inline-block;

  background:
    rgba(42,157,143,0.12);

  color: var(--secondary);

  padding: 8px 18px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 20px;
}

.calendar-card h3 {

  font-size: 28px;

  font-weight: 700;

  margin-bottom: 18px;
}

.calendar-card p {

  line-height: 1.9;

  color: #666;

  margin-bottom: 0;
}

/* MOBILE */

@media(max-width:768px) {

  .calendar-item {

    padding-left: 70px;
  }

  .calendar-card {

    padding: 25px;
  }

  .calendar-card h3 {

    font-size: 22px;
  }
}

/* INSTAGRAM */

.instagram-section {

  padding: 120px 0;

  background: #FFF9F5;
}

.instagram-wrapper {
  background: white;
  border-radius: 40px;
  padding: 30px;
  box-shadow:
    0 15px 45px rgba(0,0,0,0.05);
}

/* REGISTRATION */

.registration-section {

  padding: 120px 0;

  background: white;
}

.registration-wrapper {

  background: #FFF9F5;

  border-radius: 50px;

  padding: 70px;

  position: relative;

  overflow: hidden;
}

.registration-wrapper::before {

  content: '';

  position: absolute;

  width: 350px;

  height: 350px;

  background:
    rgba(244,162,97,0.08);

  border-radius: 50%;

  top: -120px;

  right: -120px;
}

.registration-title {

  font-size: 52px;

  line-height: 1.3;

  font-weight: 700;

  margin-bottom: 25px;
}

.registration-description {

  line-height: 2;

  color: #666;

  margin-bottom: 35px;
}

.registration-info {

  display: flex;

  flex-direction: column;

  gap: 20px;
}

.info-item {

  display: flex;

  align-items: center;

  gap: 18px;

  font-weight: 500;
}

.info-icon {

  width: 55px;

  height: 55px;

  border-radius: 18px;

  background:
    rgba(42,157,143,0.12);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 24px;
}

.registration-card {

  background: white;

  border-radius: 40px;

  padding: 45px;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.05);

  position: relative;

  z-index: 2;
}

.custom-input {

  border-radius: 18px;

  border: 1px solid #eee;

  padding: 16px 20px;

  min-height: 58px;
}

.custom-input:focus {

  box-shadow: none;

  border-color: var(--primary);
}

.btn-submit-registration {

  width: 100%;

  background: var(--primary);

  border: none;

  color: white;

  padding: 18px;

  border-radius: 20px;

  font-size: 18px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-submit-registration:hover {

  background: var(--secondary);
}

/* MOBILE */

@media(max-width:992px) {

  .registration-wrapper {

    padding: 40px 25px;
  }

  .registration-title {

    font-size: 38px;
  }

  .registration-card {

    margin-top: 50px;

    padding: 30px;
  }
}

@media(max-width:576px) {
  .registration-title {
    font-size: 30px;
  }
}

/* FLOATING WHATSAPP */

.floating-whatsapp {

  position: fixed;

  width: 65px;

  height: 65px;

  background: #25D366;

  border-radius: 50%;

  right: 25px;

  bottom: 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 32px;

  color: white;

  text-decoration: none;

  z-index: 9999;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.2);

  animation: pulse 2s infinite;
}

@keyframes pulse {

  0% {

    transform: scale(1);
  }

  50% {

    transform: scale(1.08);
  }

  100% {

    transform: scale(1);
  }
}

/* SCROLL TOP */

.scroll-top-btn {

  position: fixed;

  right: 25px;

  bottom: 105px;

  width: 55px;

  height: 55px;

  border: none;

  border-radius: 50%;

  background: var(--primary);

  color: white;

  font-size: 24px;

  display: none;

  z-index: 999;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.15);
}

/* STICKY NAVBAR */

.custom-navbar.scrolled {

  padding: 14px 0;

  backdrop-filter: blur(10px);

  background:
    rgba(255,255,255,0.92);
}

/* LOADING */

.loading-screen {

  position: fixed;

  inset: 0;

  background: white;

  z-index: 99999;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;
}

.loading-spinner {
  width: 70px;
  height: 70px;
  border:
    7px solid rgba(244,162,97,0.2);
  border-top:
    7px solid var(--primary);
  border-radius: 50%;
  animation:
    spin 1s linear infinite;
}

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

.active-nav {
  color: var(--primary) !important;
  font-weight: 700;
}

/* FOOTER */

.footer {
  background: var(--dark);
  color: white;
  padding: 80px 0 30px;
}

.footer-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* RESPONSIVE */

@media(max-width: 992px) {

  .hero-title {

    font-size: 42px;
  }

  .hero-section {

    text-align: center;
  }

  .hero-buttons {

    justify-content: center;
  }

  .about-section {

    text-align: center;
  }

  .about-image {

    margin-bottom: 40px;
  }
}

@media(max-width: 576px) {

  .hero-title {

    font-size: 34px;
  }

  .section-title {

    font-size: 30px;
  }
}