/* ================================================
   NEET Short Term Course Landing Page Styles
   Modern, Responsive, Medical Theme
   ================================================ */

/* ===== CSS Reset & Variables ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Bodhi Academy Orange & Maroon Theme */
    --primary-orange: #E89342;
    --secondary-orange: #F58220;
    --bright-orange: #FF9933;
    --dark-maroon: #8B3A3F;
    --primary-maroon: #A8615D;
    --light-maroon: #B07874;

    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --light-cream: #FFF5EB;
    --cream-bg: #FEF6F0;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --text-dark: #2c3e50;

    /* Accent Colors */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;

    /* Gradients - Combining Maroon and Orange */
    --gradient-primary: linear-gradient(135deg, #8B3A3F 0%, #E89342 100%);
    --gradient-hero: linear-gradient(135deg, #A8615D 0%, #E89342 100%);
    --gradient-button: linear-gradient(135deg, #E89342 0%, #F58220 100%);
    --gradient-light: linear-gradient(135deg, #FEF6F0 0%, #ffffff 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Base Styles ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* ===== Navigation Bar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-button);
    transition: var(--transition-normal);
}

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

.apply-btn-nav {
    background: var(--gradient-button);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 2px 8px rgba(232, 147, 66, 0.3);
}

.apply-btn-nav:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 58, 63, 0.4);
}

/* ===== Hero Section - Modern Layout ===== */
.hero {
    position: relative;
    min-height: auto;
    margin-top: 80px;
    padding: 3rem 0;
    background: linear-gradient(135deg, #8B3A3F 0%, #A8615D 50%, #E89342 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.03) 100px,
            rgba(255, 255, 255, 0.03) 200px
        );
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.highlight-text {
    color: #FFE4B5;
    display: block;
    margin-top: 0.5rem;
    font-weight: 900;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 0.8rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--dark-maroon);
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button-primary:hover {
    background: #FFE4B5;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

.arrow {
    font-size: 1.3rem;
    transition: var(--transition-fast);
}

.cta-button-primary:hover .arrow {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFE4B5;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-button);
    color: var(--white);
    padding: 22px 50px;
    border: 3px solid var(--white);
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-large:hover {
    background: var(--white);
    color: var(--dark-maroon);
    border-color: var(--primary-orange);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(232, 147, 66, 0.6);
}

.arrow {
    font-size: 1.8rem;
    transition: var(--transition-fast);
}

.cta-button-large:hover .arrow {
    transform: translateX(8px);
}

/* ===== Section Styles ===== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark-maroon);
    margin-bottom: 0.8rem;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

/* ===== Highlights Section ===== */
.highlights {
    padding: 4rem 0;
    background: var(--gradient-light);
    position: relative;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    background: var(--white);
    padding: 1.5rem 1.2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    opacity: 0;
    border: 2px solid var(--light-cream);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-button);
}

.highlight-card.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-orange);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.8rem;
    background: var(--gradient-button);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(232, 147, 66, 0.3);
    transition: var(--transition-normal);
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 6px 20px rgba(232, 147, 66, 0.5);
}

.highlight-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
    stroke-width: 2.5;
}

.highlight-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-card p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* ===== Admission Form Section ===== */
.admission-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #FFF5EB 0%, #FEF6F0 50%, #ffffff 100%);
    position: relative;
}

.admission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(232, 147, 66, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 58, 63, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.admission-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.admission-left {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.admission-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admission-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    width: 100%;
    max-width: 520px;
    background: var(--white);
    padding: 1.5rem 1.8rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-cream);
    position: relative;
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 1rem;
}

.form-title {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.form-subtitle {
    color: var(--gray);
    font-size: 0.9rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.required {
    color: var(--danger);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--danger);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.submit-btn {
    width: 100%;
    background: var(--gradient-button);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(232, 147, 66, 0.3);
    margin-top: 0.3rem;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 130, 32, 0.4);
}

.submit-btn:disabled {
    background: var(--gray);
    cursor: not-allowed;
}

.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 4rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    position: relative;
    opacity: 0;
    transition: var(--transition-normal);
}

.testimonial-card.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-orange);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
}

.author-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== FAQ Section ===== */
.faq {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question.active {
    background: var(--primary-orange);
    color: var(--white);
}

.faq-icon {
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem 2rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ===== Footer ===== */
.footer {
    background: var(--white);
    color: var(--text-dark);
    padding: 2.5rem 0 1.5rem;
    position: relative;
    border-top: 4px solid transparent;
    border-image: var(--gradient-button) 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-button);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.4rem;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-button);
    border-radius: 2px;
}

.footer-section p,
.footer-section ul {
    color: var(--gray);
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.contact-info li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-button);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
    color: var(--gray);
    font-size: 0.85rem;
}

.footer-bottom p {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    animation: scaleIn 0.3s ease;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

.modal-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal-content p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.modal-btn {
    background: var(--gradient-button);
    color: var(--white);
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 2px 10px rgba(232, 147, 66, 0.3);
}

.modal-btn:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 58, 63, 0.4);
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.fade-in {
    animation: fadeIn 1s ease;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

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

    .hero-stats {
        gap: 2rem;
    }

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

@media (max-width: 992px) {
    .hero {
        padding: 2.5rem 0;
    }

    .hero-content {
        padding: 0;
    }

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

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

    .hero-stats {
        gap: 2rem;
    }

    .highlights {
        padding: 3rem 0;
    }

    .admission-section {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }

    .hero-container {
        padding: 1.5rem 15px;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 1.5rem;
        justify-content: space-around;
    }

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

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

    .highlights {
        padding: 2.5rem 0;
    }

    .admission-section {
        padding: 2.5rem 0;
    }

    .admission-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .admission-left {
        max-height: 350px;
    }

    .form-container {
        padding: 1.3rem 1.5rem;
    }

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

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0;
    }

    .hero-container {
        padding: 1rem 15px;
    }

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

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .feature-item {
        font-size: 0.8rem;
        padding: 0.9rem 0.7rem;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .cta-button-primary,
    .cta-button-secondary {
        font-size: 0.95rem;
        padding: 12px 24px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-item {
        flex: 1 1 30%;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .highlights {
        padding: 2rem 0;
    }

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

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .admission-section {
        padding: 2rem 0;
    }

    .admission-left {
        max-height: 280px;
    }

    .form-container {
        padding: 1.2rem;
    }

    .form-title {
        font-size: 1.35rem;
    }
}
