* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
header {
    background-color: #284272;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-weight: 700;
    font-size: 2.5rem;
    color: #FFCE44;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #FFCE44;
}

.btn-coba {
    background-color: #26B572;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-coba:hover {
    background-color: #1d8a57;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    margin-top: 80px; 
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

.hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-daftar {
    display: inline-block;
    background-color: #26B572;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-daftar:hover {
    background-color: #1d8a57;
    transform: translateY(-5px);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(38, 181, 114, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    z-index: 3;
}

.slider-btn:hover {
    background-color: rgba(38, 181, 114, 1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}


.slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Why Section Styles */
.why-section {
    padding: 80px 0;
    background-color: #FFF3E0;
}

.why-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.why-content {
    flex: 1;
    padding-right: 40px;
    min-width: 300px;
}

.why-content h2 {
    font-size: 2.5rem;
    color: #284272;
    margin-bottom: 10px;
}

.why-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}

.cta-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
}

.features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 300px;
}

.feature-card {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.feature-card p {
    font-weight: 600;
}

/* Feature Card Colors */
.orange {
    background-color: #FF9F5A;
    color: #fff;
}

.green {
    background-color: #26B572;
    color: #fff;
}

.yellow {
    background-color: #FFCE44;
    color: #333;
}

.blue {
    background-color: #7DC8E8;
    color: #333;
}

.pink {
    background-color: #F0858A;
    color: #fff;
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background-color: #FFF3E0;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #284272;
    margin-bottom: 30px;
}

.about-content {
    max-width: 1200px;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.vision-mission {
    margin-top: 10px;
}

.vision, .mission {
    margin-bottom: 10px;
}

.vision h3, .mission h3 {
    font-size: 1.5rem;
    color: #284272;
    margin-bottom: 20px;
}

.mission ul {
    padding-left: 20px;
}

.mission ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555;
}

/* Class Section Styles */
.class-section {
    padding: 100px 0;
    background-color: #FFF3E0;
    text-align: center;
}

.class-section h2 {
    font-size: 2.5rem;
    color: #284272;
    margin-bottom: 40px;
}

.class-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.class-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.class-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.class-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 20px 0;
}

.class-card.orange {
    background-color: #FF9F5A;
}

.class-card.green {
    background-color: #26B572;
}

.class-card.navy {
    background-color: #284272;
}

.class-card.purple {
    background-color: #9A7DFF;
}

.class-card.pink {
    background-color: #F0858A;
}

.class-card.blue-light {
    background-color: #7DC8E8;
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Testimonial Section Styles */
.testimonial-section {
    padding: 80px 0;
    background-color: #FFF3E0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-section h2 {
    font-size: 3rem;
    color: #284272;
    margin-bottom: 20px;
}

.rating {
    margin-bottom: 30px;
}

.star {
    font-size: 2rem;
    color: #FFCE44;
    margin: 0 5px;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.quote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.testimonial-card {
    width: 320px;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 5px solid white;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .profile-pic {
    transform: translateY(-5px);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
    line-height: 1.4;
}

.class-tag {
    display: inline-block;
    background-color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-card.orange .class-tag {
    color: #FF9F5A;
}

.testimonial-card.green .class-tag {
    color: #26B572;
}

.testimonial-card.yellow .class-tag {
    color: #FFCE44;
}

.quote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
    transition: opacity 0.3s ease;
}


.contact-section {
    background-color: #FFF3E0;
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    color: #284272;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.divider {
    border-top: 1px solid rgba(0,0,0,0.2);
    margin: 30px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.contact-item {
    flex: 1 1 250px;
}

.contact-title {
    color: #FFC857;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-info {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.contact-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
}

.contact-nav a {
    color: #333;
    text-decoration: none;
}

.contact-nav a:hover {
    text-decoration: underline;
}

.contact-branches {
    max-width: 1200px;
    margin: 0 auto 30px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
}

.footer-links a {
    text-decoration: none;
    color: #333;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-buttons {
    display: flex;
    gap: 10px;
}

.btn-footer {
    background-color: #1FA65A;
    color: white;
    padding: 8px 16px;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-footer:hover {
    background-color: #178a48;
}

.form-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding-top: 80px; 
}  
  
.form-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6); 
}
  
.form-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-box {
    background-color: rgba(255, 241, 220, 0.95);
    padding: 40px;
    border-radius: 24px;
    max-width: 500px;
    width: 80%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.form-box .form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.form-box .form-group label {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #000;
}

.form-box .form-group input,
.form-box .form-group select {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    background-color: #B1D7B0; 
    color: #000;
}


.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit button {
    padding: 12px 30px;
    border: none;
    border-radius: 9999px;
    background-color: #008C4A;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1100px;
    width: 90%;
    justify-content: center;
    align-items: stretch; 
}

.form-box, .payment-box {
    background-color: #FFF1DC;
    padding: 30px;
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.payment-box {
    display: flex;
    flex-direction: column;
}

.payment-box h3 {
    margin-bottom: 15px;
    color: #333;
}

.payment-box ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.payment-box li {
    margin-bottom: 10px;
}

.upload-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: #B1D7B0;
    color: #000;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
}

.upload-btn:hover {
    background-color: #9BC99B;
}

.payment-info {
    font-size: 0.9rem;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .btn-daftar {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .why-section .container {
        flex-direction: column;
    }
    
    .why-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .about-section h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .logo a {
        font-size: 2rem;
    }
    
    nav ul li {
        margin-left: 15px;
    }
    
    .slide h1, .why-content h2, .about-section h2 {
        font-size: 2rem;
    }
    
    .slide p, .why-content p, .about-content p {
        font-size: 1rem;
    }
    
    .vision h3, .mission h3 {
        font-size: 1.3rem;
    }
    
    .mission ul li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .slide h1, .why-content h2, .about-section h2 {
        font-size: 1.7rem;
    }
    
    .btn-daftar {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .why-content, .features {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .class-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .class-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-content {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        width: 80%;
        max-width: 400px;
        margin-bottom: 20px;
    }
    
    .quote {
        font-size: 1.3rem;
    }
    
}

@media (max-width: 768px) {
    .testimonial-section h2 {
        font-size: 2.5rem;
    }
    
    .star {
        font-size: 1.8rem;
    }
    
    .quote {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    
}

@media (max-width: 480px) {
    .testimonial-section h2 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        width: 95%;
    }
    
    .profile-info h3 {
        font-size: 1.1rem;
    }
    
    .class-tag {
        font-size: 0.8rem;
    }
    
}

@media(min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-socials {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #333;
  }
  
  .footer-socials a {
    color: #333;
    text-decoration: none;
    margin: 0 5px;
  }
  
  .footer-socials a:hover {
    color: #FFCE44; 
  }
  