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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(145deg, #f9fbf6 0%, #f0f4ea 100%);
    color: #1a2e1f;
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 16px; /* base size, no zoom needed */
}

/* Background shapes */
.bg-shape {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}
.shape-1 { width: 500px; height: 500px; background: #c8e6c9; top: -200px; left: -200px; }
.shape-2 { width: 600px; height: 600px; background: #ffecb3; bottom: -250px; right: -200px; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Animations */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(47,111,99,0.4); }
    70% { box-shadow: 0 0 0 12px rgba(47,111,99,0); }
    100% { box-shadow: 0 0 0 0 rgba(47,111,99,0); }
}
.fade-up { animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.15s; }
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating WhatsApp */
.float-wa {
    position: fixed;
    bottom: 30px;
    left: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    z-index: 99;
    transition: 0.2s;
    animation: pulseGlow 1.8s infinite;
    text-decoration: none;
}
.float-wa:hover { transform: scale(1.1); background: #128C7E; }

/* Navbar */
.navbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #e8f5e9;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 18px 24px;
}
.logo h1 {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2F6F63, #3d8a7a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.logo p {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #2F6F63;
    font-weight: 600;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #1f3d2c;
    transition: 0.2s;
    position: relative;
}
.nav-links a:hover, .nav-links a.active {
    color: #2F6F63;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #2F6F63;
    transition: 0.3s;
}
.nav-links a:hover::after {
    width: 100%;
}
.menu-icon {
    font-size: 1.8rem;
    display: none;
    cursor: pointer;
    color: #2F6F63;
}

/* Buttons */
.btn-primary {
    background: #2F6F63;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(47,111,99,0.3);
}
.btn-primary:hover {
    background: #235a50;
    transform: scale(1.02);
}
.btn-outline {
    background: transparent;
    border: 2px solid #2F6F63;
    color: #2F6F63;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.2s;
    text-decoration: none;
}
.btn-outline:hover {
    background: #2F6F63;
    color: white;
}
.btn-mobile-full {
    display: inline-block;
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 60px 0 40px;
}
.hero-content {
    flex: 1;
}
.academy-badge {
    display: inline-block;
    background: #2F6F63;
    color: white;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2F6F63, #4caf50);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}
.hero-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    color: #c8a951;
}
.hero-divider {
    width: 80px;
    height: 3px;
    background: #c8a951;
    margin: 20px 0;
    border-radius: 4px;
}
.hero-desc {
    margin: 20px 0 28px;
    font-size: 1rem;
    color: #3a5a40;
    max-width: 550px;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-icon {
    flex: 1;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}
.hero-icon i {
    color: #2F6F63;
    opacity: 0.8;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 60px 0 30px;
    color: #2F6F63;
    position: relative;
}
.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #c8a951;
    margin: 12px auto 0;
    border-radius: 4px;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 30px 0;
}
.course-card {
    background: white;
    border-radius: 28px;
    padding: 32px 24px;
    text-align: left;
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.course-card i {
    font-size: 2.5rem;
    color: #2F6F63;
    margin-bottom: 20px;
}
.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.course-card p {
    color: #3a5a40;
    margin-bottom: 16px;
}
.course-card ul {
    list-style: none;
    margin-top: 12px;
}
.course-card li {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}
.course-card li i {
    font-size: 1rem;
    margin: 0;
    color: #2F6F63;
}
.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
}
.text-center {
    text-align: center;
}

/* Metrics */
.metrics-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    background: white;
    border-radius: 60px;
    padding: 40px 20px;
    margin: 50px auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
.metric-card {
    text-align: center;
    min-width: 140px;
}
.metric-icon {
    font-size: 2.8rem;
    color: #c8a951;
    margin-bottom: 12px;
}
.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2F6F63;
}

/* About */
.about-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 48px;
    padding: 40px;
    margin: 40px auto;
    max-width: 1200px;
}
.about-text {
    flex: 1.5;
}
.about-text h2 {
    font-size: 2rem;
    color: #2F6F63;
    margin-bottom: 20px;
}
.about-text h2 span {
    color: #c8a951;
}
.about-list {
    list-style: none;
    margin: 20px 0;
}
.about-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-list i {
    color: #2F6F63;
}
.about-icon i {
    color: #c8a951;
    font-size: 6rem;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 40px 0;
}
.testimonial-card {
    background: white;
    border-radius: 32px;
    padding: 28px;
    max-width: 340px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    transition: 0.2s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.testimonial-card i.fa-quote-left {
    color: #c8a951;
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.student {
    font-weight: 700;
    color: #2F6F63;
    margin-top: 12px;
}

/* Admission Form */
.form-card-glass {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius: 42px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.2);
    padding: 40px 42px;
    margin: 60px auto;
    max-width: 1000px;
}
.card-header {
    text-align: center;
    margin-bottom: 36px;
}
.card-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2F6F63;
}
.required {
    color: #c7522a;
}
.premium-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.form-group {
    flex: 1;
    min-width: 220px;
    position: relative;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px 14px 44px;
    border: 1.5px solid #e2e8e0;
    border-radius: 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #2F6F63;
    outline: none;
    box-shadow: 0 0 0 3px rgba(47,111,99,0.15);
}
.input-icon {
    position: absolute;
    left: 18px;
    top: 42px;
    color: #8d9e8a;
    font-size: 1rem;
    pointer-events: none;
}
.textarea-icon {
    top: 40px;
}
.form-footer {
    text-align: center;
    margin-top: 20px;
}
.btn-submit {
    background: linear-gradient(105deg, #2F6F63, #235a50);
    border: none;
    padding: 16px 38px;
    border-radius: 60px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 12px 24px -8px rgba(47,111,99,0.4);
}
.btn-submit:hover {
    transform: scale(1.02);
}
.form-note {
    font-size: 0.8rem;
    color: #6b7c6b;
    margin-top: 18px;
}

/* Footer */
footer {
    background: #2F6F63;
    padding: 30px 0 20px;
    margin-top: 50px;
}
.footer-content {
    background: white;
    border-radius: 28px;
    padding: 24px 30px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
    align-items: flex-start;
}
.footer-logo h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2F6F63;
}
.footer-logo p {
    font-size: 0.8rem;
    color: #5a6e5a;
}
.footer-links h4 {
    color: #2F6F63;
    font-size: 0.95rem;
    margin-bottom: 12px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 6px;
}
.footer-links a {
    color: #4a5e4a;
    text-decoration: none;
    font-size: 0.8rem;
}
.footer-links a:hover {
    color: #2F6F63;
}
.footer-contact p {
    margin: 6px 0;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3a5a40;
}
.footer-contact i {
    color: #2F6F63;
    width: 22px;
}
.social-icons a {
    color: #2F6F63;
    margin-right: 12px;
    font-size: 1.1rem;
    transition: 0.2s;
}
.social-icons a:hover {
    color: #c8a951;
}
.copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    max-width: 1100px;
    margin: 0 auto;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: white;
    padding: 14px 24px;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transition: transform 0.3s ease;
    font-family: 'Inter', sans-serif;
    border-left: 5px solid;
    max-width: 90%;
}
.toast-notification.show {
    transform: translateX(-50%) translateY(0);
}
.toast-notification.success {
    border-left-color: #2e7d32;
    background: #f0f9f0;
}
.toast-notification.error {
    border-left-color: #c7522a;
    background: #fff5f0;
}

/* Responsive - No zoom needed */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        padding: 20px;
        text-align: center;
        border-radius: 30px;
        margin-top: 10px;
    }
    .nav-links.show {
        display: flex;
        animation: fadeUp 0.4s ease;
    }
    .menu-icon {
        display: block;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-tagline {
        font-size: 1.2rem;
    }
    .form-card-glass {
        padding: 30px 20px;
        margin: 30px 16px;
        width: auto;
    }
    .about-wrap {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
        margin: 30px 16px;
        width: auto;
    }
    .about-list li {
        justify-content: center;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .metric-number {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}
@media (max-width: 550px) {
    .container {
        padding: 0 16px;
    }
    .hero-buttons .btn-primary, .hero-buttons .btn-outline {
        width: 100%;
        text-align: center;
    }
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    .testimonial-card {
        max-width: 100%;
    }
}
