﻿/* academic-programs.css - Complete Professional Styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: #ffffff;
}

.academic-wrapper {
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Modern Hero Section */
.academic-hero-modern {
    position: relative;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 120px;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    width: fit-content;
}

    .hero-badge i {
        color: #f39c12;
        font-size: 14px;
    }

    .hero-badge span {
        color: white;
        font-size: 14px;
        font-weight: 500;
    }

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
}

    .hero-title .highlight {
        color: #f39c12;
        position: relative;
        display: inline-block;
    }

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-stats-modern {
    display: flex;
    gap: 40px;
}

.stat-modern {
    text-align: left;
}

    .stat-modern .stat-number {
        font-size: 32px;
        font-weight: 800;
        color: #f39c12;
        display: block;
        margin-bottom: 8px;
    }

    .stat-modern .stat-label {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
    }

/* Floating Cards Animation */
.hero-right {
    position: relative;
    height: 400px;
}

.floating-cards {
    position: relative;
    height: 100%;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

    .float-card i {
        font-size: 24px;
        color: #f39c12;
    }

    .float-card span {
        color: white;
        font-weight: 500;
    }

.card-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 80px;
    left: 0;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag-modern {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f39c12;
    margin-bottom: 16px;
}

.intro-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.year-highlight {
    color: #f39c12;
    position: relative;
}

.intro-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 16px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(230, 126, 34, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .feature-icon i {
        font-size: 24px;
        color: #f39c12;
    }

.feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 12px;
    margin-bottom: 0;
    color: #64748b;
}

.intro-stats-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card-modern {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

    .stat-card-modern:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

    .stat-icon i {
        font-size: 28px;
        color: white;
    }

.stat-card-modern .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.stat-card-modern .stat-label {
    font-size: 14px;
    color: #64748b;
}

/* Premium Programs Section */
.premium-programs-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header-premium {
    text-align: center;
    margin-bottom: 60px;
}

.premium-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header-premium h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header-premium p {
    color: #64748b;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Premium Cards Grid */
.premium-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.premium-card {
    position: relative;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

    .premium-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.premium-card:hover .card-glow {
    transform: scaleX(1);
}

.card-header {
    padding: 32px 24px 24px;
    text-align: center;
    position: relative;
}

.level-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #f39c12;
}

.card-icon-wrapper {
    margin-bottom: 20px;
}

.card-icon-inner {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(230, 126, 34, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.premium-card:hover .card-icon-inner {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.2), rgba(230, 126, 34, 0.2));
}

.card-icon-inner i {
    font-size: 40px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.class-name {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.age-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: #64748b;
}

    .age-tag i {
        color: #f39c12;
        font-size: 12px;
    }

.card-body {
    padding: 0 24px 24px;
}

.description {
    color: #64748b;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
}

.subjects-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.subject-chip {
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

    .subject-chip i {
        font-size: 10px;
        color: #f39c12;
    }

    .subject-chip:hover {
        background: #f39c12;
        color: white;
        transform: translateY(-2px);
    }

        .subject-chip:hover i {
            color: white;
        }

.card-footer-premium {
    padding: 20px 24px;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e8f0;
}

.duration-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
}

    .duration-info i {
        color: #f39c12;
    }

.explore-btn {
    background: none;
    border: none;
    color: #f39c12;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

    .explore-btn:hover {
        gap: 12px;
        color: #e67e22;
    }

/* Pillars Section */
.pillars-section {
    padding: 80px 0;
    background: white;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    text-align: center;
    padding: 32px 24px;
    background: #f8fafc;
    border-radius: 20px;
    transition: all 0.3s ease;
}

    .pillar-card:hover {
        transform: translateY(-5px);
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .pillar-icon i {
        font-size: 32px;
        color: white;
    }

.pillar-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Facilities & Activities */
.facilities-activities {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.activities-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.showcase-text .highlight {
    color: #f39c12;
}

.showcase-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .tag i {
        color: #f39c12;
    }

    .tag:hover {
        background: #f39c12;
        color: white;
        transform: translateY(-2px);
    }

        .tag:hover i {
            color: white;
        }

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.showcase-item {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

    .showcase-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .showcase-item i {
        font-size: 40px;
        color: #f39c12;
        margin-bottom: 12px;
        display: block;
    }

    .showcase-item span {
        font-weight: 600;
        color: #1e293b;
    }

/* CTA Section */
.cta-section-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f2027, #203a43);
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
        color: white;
    }

.btn-secondary {
    background: transparent;
    border: 2px solid #f39c12;
    color: #f39c12;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background: #f39c12;
        color: white;
        transform: translateY(-2px);
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }

    .premium-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-stats-modern {
        justify-content: center;
    }

    .hero-badge {
        margin: 0 auto 24px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .intro-stats-modern {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-header-premium h2 {
        font-size: 32px;
    }

    .activities-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-wrapper {
        padding: 40px 24px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-stats-modern {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat-modern {
        text-align: center;
    }

    .intro-stats-modern {
        grid-template-columns: 1fr;
    }

    .premium-cards-grid {
        grid-template-columns: 1fr;
    }

    .class-name {
        font-size: 24px;
    }

    .card-footer-premium {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .activity-tags {
        justify-content: center;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }
}
