:root {
    --primary-orange: #ff9800;
    --primary-teal: #00897b;
    --dark-bg: #2c3e50;
    --light-gray: #f5f5f5;
}

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

p{
    font-size: 0.95rem;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

.top-bar {
    background: linear-gradient(
        90deg,
        var(--primary-orange) 0%,
        var(--primary-orange) 35%,
        var(--primary-teal) 35%,
        var(--primary-teal) 100%
    );
    color: white;
    padding: 6px 0;
    font-size: 12px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

.top-bar i {
    margin-right: 3px;
    font-size: 11px;
}

.follow-us {
    font-weight: 600;
    font-size: 12px;
}

.social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 2px;
    transition: all 0.3s;
    font-size: 12px;
    color: white;
}

.social-icons a:hover {
    background: white;
    color: var(--primary-orange);
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.navbar-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-teal) !important;
}

.navbar-brand span {
    color: var(--primary-orange);
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 6px;
    padding: 6px 0;
    transition: color 0.3s;
    position: relative;
    font-size: 13px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-teal);
}

.nav-link.dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-menu {
    background: var(--primary-teal);
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 180px;
}

.dropdown-item {
    color: white;
    padding: 8px 16px;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-apply {
    background: var(--primary-orange);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    font-size: 13px;
    text-decoration: none;
}

.btn-apply:hover {
    background: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

.btn-program {
    background: var(--primary-teal);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
}

.btn-program:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 137, 123, 0.3);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.section-subtitle {
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.footer {
    background: var(--dark-bg);
    color: white;
    padding: 40px 0 15px;
    font-size: 0.9rem;
}

.footer h5 {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 6px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.footer ul li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

/* Visitor Counter */
.visitor-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.visitor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    min-width: 120px;
}

.visitor-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.visitor-count {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.visitor-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 25px;
    padding-top: 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .top-bar {
        text-align: center;
    }

    .top-bar .col-md-4 {
        margin-bottom: 10px;
    }
}

/* Home */


    .hero-content h1 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .hero-content h1 .highlight {
        color: var(--primary-orange);
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 20px;
        opacity: 0.9;
    }

    .hero-label {
        display: inline-flex;
        align-items: center;
        background: rgba(255,152,0,0.2);
        padding: 6px 16px;
        border-radius: 20px;
        margin-bottom: 20px;
        font-weight: 500;
        font-size: 13px;
    }

    .hero-label i {
        color: var(--primary-orange);
        margin-right: 8px;
        font-size: 14px;
    }

    .features-section {
        margin-top: -60px;
        position: relative;
        z-index: 10;
    }

    .feature-card {
        background: white;
        border-radius: 15px;
        padding: 25px 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s;
        height: 100%;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .feature-icon {
        width: 65px;
        height: 65px;
        background: var(--primary-teal);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }

    .feature-card p {
        color: #666;
        line-height: 1.5;
        font-size: 0.9rem;
    }

    .about-section {
        padding: 60px 0;
        background: var(--light-gray);
    }

    .about-img {
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .about-list {
        list-style: none;
        padding: 0;
    }

    .about-list li {
        padding: 6px 0;
        position: relative;
        padding-left: 25px;
        font-size: 0.95rem;
    }

    .about-list li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--primary-teal);
        font-weight: bold;
        font-size: 1.2rem;
    }

    .stats-section {
        background: linear-gradient(135deg, var(--primary-teal), var(--primary-orange));
        padding: 50px 0;
        color: white;
    }

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

    .stat-number {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .stat-label {
        font-size: 0.95rem;
        opacity: 0.9;
    }

    .programs-section {
        padding: 60px 0;
    }

    .program-card {
        border: none;
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s;
        height: 100%;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .program-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .program-img {
        height: 200px;
        object-fit: cover;
    }

    .program-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: var(--primary-orange);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
    }

    .card-body h5 {
        color: var(--primary-teal);
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .card-body {
        padding: 15px;
    }

    .card-text {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .btn-program {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .facilities-section {
        padding: 60px 0;
        background: var(--light-gray);
    }

    .facility-item {
        text-align: center;
        padding: 20px;
        background: white;
        border-radius: 15px;
        margin-bottom: 20px;
        transition: all 0.3s;
    }

    .facility-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .facility-icon {
        font-size: 2.2rem;
        color: var(--primary-teal);
        margin-bottom: 10px;
    }

    .facility-item h4 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .facility-item p {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
    }

    .extracurricular-section {
        padding: 60px 0;
    }

    .ekskul-card {
        background: white;
        border-radius: 15px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: all 0.3s;
        height: 100%;
        border: 2px solid transparent;
    }

    .ekskul-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        border-color: var(--primary-orange);
    }

    .ekskul-icon {
        width: 65px;
        height: 65px;
        background: var(--primary-orange);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
        font-size: 1.6rem;
        transition: all 0.3s;
    }

    .ekskul-card:hover .ekskul-icon {
        background: var(--primary-teal);
        transform: rotate(360deg);
    }

    .ekskul-card h4 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--primary-teal);
    }

    .ekskul-card p {
        color: #666;
        line-height: 1.4;
        margin-bottom: 10px;
        font-size: 0.85rem;
    }

    .ekskul-badge {
        background: rgba(0,137,123,0.1);
        color: var(--primary-teal);
        padding: 4px 10px;
        border-radius: 15px;
        font-size: 0.75rem;
        font-weight: 600;
        display: inline-block;
    }

    .gallery-section {
        padding: 60px 0;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        margin-bottom: 20px;
        cursor: pointer;
    }

    .gallery-item img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        transition: all 0.3s;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,137,123,0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay i {
        font-size: 2.2rem;
        color: white;
    }

    .awards-section {
        padding: 60px 0;
        background: linear-gradient(135deg, rgba(0,137,123,0.05), rgba(255,152,0,0.05));
    }

    .award-card {
        background: white;
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .award-card:hover {
        transform: translateX(8px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    .award-icon-box {
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, #FFD700, #FFA500);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: white;
        flex-shrink: 0;
    }

    .award-content h5 {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 4px;
        color: #333;
    }

    .award-content p {
        margin: 0;
        color: #666;
        font-size: 0.8rem;
    }

    .award-year {
        background: var(--primary-teal);
        color: white;
        padding: 3px 10px;
        border-radius: 15px;
        font-size: 0.7rem;
        font-weight: 600;
        margin-left: auto;
    }

    .news-section {
        padding: 60px 0;
    }

    .news-card {
        border: none;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: all 0.3s;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .news-card .card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .news-card .card-text {
        flex: 1;
        margin-bottom: 15px;
    }

    .news-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .news-img {
        height: 200px;
        object-fit: cover;
    }

    .news-date {
        background: linear-gradient(135deg, #FF9800, #FB8C00);
        color: white;
        padding: 6px 14px;
        border-radius: 8px;
        font-size: 0.75rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 12px;
        box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
    }

    .news-date i {
        font-size: 0.85rem;
    }

    .news-card .card-title {
        color: #1a1a1a;
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 12px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-card .card-text {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .news-category {
        position: absolute;
        top: 12px;
        left: 12px;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 1;
    }

    .category-announcement {
        background: linear-gradient(135deg, #FF6B6B, #EE5A6F);
        color: white;
    }

    .category-news {
        background: linear-gradient(135deg, #4E54C8, #8F94FB);
        color: white;
    }

    .btn-news {
        background: var(--primary-teal);
        color: white;
        padding: 8px 20px;
        border-radius: 20px;
        font-weight: 600;
        border: none;
        transition: all 0.3s;
        font-size: 13px;
        text-decoration: none;
        display: inline-block;
        margin-top: auto;
    }

    .btn-news:hover {
        background: var(--primary-orange);
        color: white;
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(0,137,123,0.3);
    }

    .testimonial-section {
        padding: 60px 0;
        background: var(--light-gray);
    }

    .testimonial-card {
        background: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }

    .testimonial-text {
        font-style: italic;
        color: #666;
        margin-bottom: 15px;
        line-height: 1.6;
        font-size: 0.9rem;
    }

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

    .author-img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 12px;
    }

    .author-info h5 {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 3px;
    }

    .author-info p {
        color: var(--primary-orange);
        margin: 0;
        font-size: 0.8rem;
    }

    .contact-section {
        padding: 60px 0;
        background: var(--light-gray);
    }

    .contact-info {
        background: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .contact-info h4 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .contact-item {
        display: flex;
        align-items: start;
        margin-bottom: 20px;
    }

    .contact-item h5 {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .contact-item p {
        font-size: 0.85rem;
        color: #666;
        margin: 0;
        line-height: 1.4;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        background: var(--primary-teal);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .contact-social-icons {
        display: flex;
        gap: 12px;
    }

    .contact-social-icons a {
        width: 35px;
        height: 35px;
        background: rgba(0,137,123,0.1);
        color: var(--primary-teal);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        transition: all 0.3s;
    }

    .contact-social-icons a:hover {
        background: var(--primary-teal);
        color: white;
    }

    .contact-form {
        background: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .contact-form h4 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .form-control {
        border: 2px solid #E0E0E0;
        padding: 10px 16px;
        border-radius: 10px;
        margin-bottom: 15px;
        font-size: 0.9rem;
    }

    .form-control:focus {
        border-color: var(--primary-teal);
        box-shadow: none;
    }

    .form-control::placeholder {
        font-size: 0.9rem;
    }

    .btn-submit {
        background: var(--primary-teal);
        color: white;
        padding: 10px 30px;
        border-radius: 25px;
        border: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s;
        margin-top: 10px;
    }

    .btn-submit:hover {
        background: #00695C;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,137,123,0.4);
    }

    /* Override Bootstrap spacing for better laptop view */
    .text-center.mb-5 {
        margin-bottom: 2rem !important;
    }

    .text-muted {
        font-size: 0.95rem;
    }

    /* ========== PAGE STYLES ========== */

/* Page Header & Breadcrumb */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/bg-section.png') center/cover;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
    gap: 20px;
    padding: 0;
}

.breadcrumb-item {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    position: relative;
    margin: 0;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
    color: white;
}

.breadcrumb-item.active {
    background: var(--primary-orange);
    color: white;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    display: inline-block;
    margin-left: -20px;
    margin-right: -12px;
    color: rgba(255,255,255,0.8);
    font-weight: bold;
    position: relative;
}

/* Hero Section */
.hero-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    color: white;
    padding-left: 50px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    color: white;
    font-weight: 300;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

/* Detail Content Styles */
.detail-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.detail-img {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.detail-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.detail-info h2 {
    color: var(--primary-teal);
    margin-bottom: 10px;
}

.detail-info p {
    color: #666;
    margin-bottom: 15px;
}

.info-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
}

.stat-text h4 {
    margin: 0;
    font-size: 0.85rem;
    color: #999;
}

.stat-text p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-teal);
    text-decoration: none;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.back-link:hover {
    gap: 0;
    padding: 0;
    color: var(--primary-orange);
}

/* Program & Academic Styles */
.program-info {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.info-content h4 {
    margin: 0 0 5px;
    color: #333;
}

.info-content p {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
}

.program-benefits {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.program-benefits h3 {
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-section {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h3 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    color: white;
    margin-bottom: 20px;
}

.btn-cta {
    background: white;
    color: #FF9800;
    padding: 12px 40px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Achievement Card */
.achievement-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.achievement-icon.academic {
    color: var(--primary-orange);
}

.achievement-icon.arts {
    color: var(--primary-teal);
}

.achievement-card h3 {
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.achievement-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Intro Card */
.intro-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.intro-card h3 {
    color: var(--primary-teal);
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.program-feature-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.program-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.program-feature-card i {
    font-size: 2rem;
    color: var(--primary-teal);
    margin-bottom: 10px;
}

.program-feature-card h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1rem;
}

.program-feature-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 25px;
    border: 2px solid var(--primary-teal);
    background: white;
    color: var(--primary-teal);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.filter-btn.active {
    background: var(--primary-teal);
    color: white;
}

.filter-btn:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-2px);
}

/* Extracurricular Special Styles */
.no-ekskul {
    text-align: center;
    padding: 60px 20px;
    background: var(--light-gray);
    border-radius: 15px;
}

.no-ekskul i {
    font-size: 3rem;
    color: #CCC;
    margin-bottom: 20px;
}

.btn-ekskul {
    background: var(--primary-teal);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
}

.btn-ekskul:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,137,123,0.3);
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.stat-box {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.stat-box .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.stat-box .stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

/* Vision & Mission Styles */
.vision-mission-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.vision-card, .mission-card {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.vision-card::before, .mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 15px 15px 0 0;
}

.vision-card::before {
    background: var(--primary-orange);
}

.mission-card::before {
    background: var(--primary-teal);
}

.vision-card h2, .mission-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 10px;
}

.vision-card h2 {
    color: var(--primary-orange);
}

.mission-card h2 {
    color: var(--primary-teal);
}

.vision-card p, .mission-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.vision-icon, .mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vision-icon {
    color: var(--primary-orange);
}

.mission-icon {
    color: var(--primary-teal);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.value-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.value-description {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
}

.mission-list {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mission-list h3 {
    color: var(--primary-teal);
    margin-bottom: 30px;
    font-weight: 600;
}

.mission-list ol {
    color: #666;
    line-height: 1.8;
}

.mission-list li {
    margin-bottom: 15px;
    font-size: 1rem;
}

.no-programs {
    text-align: center;
    padding: 60px 20px;
    background: var(--light-gray);
    border-radius: 15px;
}

.no-programs i {
    font-size: 3rem;
    color: #CCC;
    margin-bottom: 20px;
}

/* Contact Page Styles */
.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info-card h4 {
    color: var(--primary-teal);
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1rem;
}

.contact-info-card h4:first-child {
    margin-top: 0;
}

.contact-info-card p {
    color: #666;
    line-height: 1.8;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-info-card hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 20px 0;
}

.form-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.form-card h4 {
    color: var(--primary-teal);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-label {
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.btn-send {
    background: var(--primary-teal);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-send:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,137,123,0.3);
}

.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* PPDB & Registration Styles */
.ppdb-banner {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-orange));
    color: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 50px;
}

.ppdb-banner h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.9;
}

.ppdb-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ppdb-banner p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.step-card {
    display: flex;
    gap: 25px;
    padding: 25px;
    margin-bottom: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-number {
    min-width: 60px;
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-number.active {
    background: var(--primary-teal);
    color: white;
}

.step-number.completed {
    background: #4CAF50;
    color: white;
}

.step-content h4 {
    color: var(--primary-teal);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0;
}

.step-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.info-card h4 {
    color: var(--primary-teal);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.info-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    color: #666;
    font-size: 0.9rem;
    padding: 8px 0;
    line-height: 1.6;
}

/* Biaya (Fees) Page Styles */
.cost-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.cost-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.cost-card h4 {
    color: var(--primary-teal);
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cost-card i {
    font-size: 1.3rem;
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
}

.cost-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.cost-table tr:last-child {
    border-bottom: none;
    background: var(--light-gray);
    font-weight: 700;
}

.cost-table td {
    padding: 15px 0;
    color: #666;
    font-size: 0.9rem;
}

.cost-table td:first-child {
    text-align: left;
}

.cost-table td:last-child {
    text-align: right;
    color: var(--primary-orange);
    font-weight: 600;
}

.cost-table tr:last-child td {
    color: var(--primary-teal);
    padding: 12px 0;
}

.cost-table tr:last-child td:last-child {
    color: var(--primary-orange);
}

/* Fasilitas (Facilities) Page Styles */
.facility-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal), #00695c);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.facility-card:hover .facility-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-orange), #F57C00);
}

.facility-card h4 {
    color: var(--primary-teal);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Program Unggulan Page Styles */
.program-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: none;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.program-card h3 {
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.program-icon {
    font-size: 1.8rem;
    display: inline-block;
    min-width: 40px;
}

.program-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.program-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.program-card li {
    color: #666;
    font-size: 0.9rem;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.program-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Daftar Sekarang (Registration) Page Styles */
.registration-intro {
    background: linear-gradient(135deg, rgba(0,137,123,0.1), rgba(255,152,0,0.1));
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-teal);
    margin-bottom: 40px;
}

.registration-intro h2 {
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.registration-intro p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.registration-form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.registration-form-card h3 {
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section .section-title {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.registration-form .form-label {
    color: #333;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.registration-form .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.registration-form .form-control:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(0,137,123,0.1);
}

.registration-form .form-control.is-invalid {
    border-color: #dc3545;
}

.registration-form .form-check-label {
    color: #666;
    font-size: 0.85rem;
    margin-left: 8px;
}

.form-action {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-teal), #00695c);
    color: white;
    padding: 10px 35px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,137,123,0.3);
}

.btn-cancel {
    background: #f5f5f5;
    color: #666;
    padding: 10px 35px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cancel:hover {
    background: white;
    border-color: #999;
    color: #333;
}

.registration-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-teal);
}

.registration-info-card h4 {
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.registration-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.registration-info-card li {
    color: #666;
    font-size: 0.85rem;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.2;
}

.registration-info-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1rem;
}

.help-item {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 3px solid var(--primary-orange);
}

.help-item strong {
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.help-item a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.help-item a:hover {
    color: var(--primary-orange);
}

.registration-cta {
    background: linear-gradient(135deg, rgba(0,137,123,0.05), rgba(255,152,0,0.05));
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0,137,123,0.2);
}

.registration-cta h4 {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.registration-steps {
    color: #666;
    padding-left: 20px;
    margin: 0;
}

.registration-steps li {
    margin-bottom: 10px;
    font-size: 0.85rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
        .hero-section {
            min-height: 400px;
            background-attachment: scroll;
        }

        .hero-title {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .hero-subtitle {
            font-size: 0.95rem;
        }

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

        .section-subtitle {
            font-size: 0.8rem;
        }

        .feature-card {
            padding: 18px 15px;
        }

        .facility-item {
            padding: 15px;
        }

        .ekskul-card {
            padding: 15px;
        }

        .contact-info,
        .contact-form {
            padding: 18px;
        }

        .testimonial-card {
            padding: 18px;
        }

        .page-header h1 {
            font-size: 2rem;
        }

        .program-feature-card {
            padding: 20px 15px;
        }

        .intro-card {
            padding: 20px;
        }

        .intro-card h3 {
            font-size: 1.1rem;
        }

        .program-feature-card h4 {
            font-size: 0.95rem;
        }

        .program-feature-card p {
            font-size: 0.85rem;
        }

        .achievement-card {
            padding: 30px 20px;
        }

        .vision-mission-container {
            grid-template-columns: 1fr;
            gap: 20px;
        }

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

        .detail-header {
            flex-direction: column;
            text-align: center;
        }

        .detail-icon {
            width: 80px;
            height: 80px;
            font-size: 2rem;
        }

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

        .contact-info-card,
        .form-card {
            padding: 20px;
        }

        .map-container {
            height: 300px;
        }

        .ppdb-banner {
            padding: 30px 20px;
        }

        .ppdb-banner h1 {
            font-size: 1.8rem;
        }

        .ppdb-banner p {
            font-size: 0.95rem;
        }

        .step-card {
            flex-direction: column;
            padding: 20px;
            gap: 15px;
        }

        .step-number {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .step-content h4 {
            font-size: 1rem;
        }

        .step-content p {
            font-size: 0.85rem;
        }

        .info-card {
            padding: 20px;
        }

        .info-card i {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .info-card h4 {
            font-size: 1rem;
        }

        .info-card p {
            font-size: 0.85rem;
        }

        .info-card ul {
            font-size: 0.85rem;
        }

        .btn-send {
            width: 100%;
            padding: 12px 20px;
            font-size: 0.95rem;
        }

        .cost-card {
            padding: 20px;
            margin-bottom: 20px;
        }

        .cost-card h4 {
            font-size: 1rem;
        }

        .cost-table td {
            padding: 12px 0;
            font-size: 0.85rem;
        }

        .facility-card {
            padding: 20px;
            margin-bottom: 20px;
        }

        .facility-icon {
            width: 70px;
            height: 70px;
            font-size: 1.8rem;
        }

        .facility-card h4 {
            font-size: 1rem;
        }

        .facility-card p {
            font-size: 0.8rem;
        }

        .program-card {
            padding: 20px;
        }

        .program-card h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
        }

        .program-icon {
            font-size: 1.5rem;
        }

        .program-card p {
            font-size: 0.85rem;
            margin-bottom: 15px;
        }

        .program-card li {
            font-size: 0.85rem;
            padding: 8px 0;
            padding-left: 20px;
        }

        .program-card li:before {
            font-size: 0.95rem;
        }

        .registration-intro {
            padding: 25px;
        }

        .registration-intro h2 {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        .registration-form-card {
            padding: 25px;
        }

        .registration-form-card h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .form-section {
            margin-bottom: 20px;
            padding-bottom: 20px;
        }

        .form-section .section-title {
            font-size: 1rem;
        }

        .registration-form .form-label {
            font-size: 0.8rem;
        }

        .registration-form .form-control {
            padding: 7px 10px;
            font-size: 0.8rem;
        }

        .form-action {
            flex-direction: column;
            gap: 10px;
            margin-top: 30px;
        }

        .btn-submit,
        .btn-cancel {
            width: 100%;
            padding: 10px 20px;
            font-size: 0.85rem;
        }

        .registration-info-card {
            margin-top: 30px;
        }

        .registration-info-card h4 {
            font-size: 1.1rem;
        }

        .registration-cta {
            margin-top: 20px;
        }

        .registration-steps li {
            font-size: 0.9rem;
        }
    }

    /* Profile Page Styles */
    .content-section {
        padding: 60px 0;
        background: #f8f9fa;
    }

    .content-card {
        background: white;
        border-radius: 15px;
        padding: 35px;
        margin-bottom: 30px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s;
    }

    .content-card:hover {
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        transform: translateY(-3px);
    }

    .content-card h3 {
        color: var(--primary-teal);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        padding-bottom: 12px;
        border-bottom: 3px solid var(--primary-orange);
    }

    .content-card h3 i {
        font-size: 1.4rem;
        color: var(--primary-orange);
    }

    .content-card p {
        color: #555;
        line-height: 1.7;
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .content-card ul {
        margin-top: 15px;
        padding-left: 0;
        list-style: none;
    }

    .content-card ul li {
        padding: 8px 0;
        padding-left: 28px;
        position: relative;
        color: #666;
        list-style: none;
        font-size: 0.9rem;
    }

    .content-card ul li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--primary-teal);
        font-weight: bold;
        font-size: 1rem;
    }

    /* History Timeline */
    .history-item {
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 15px;
        padding: 12px 0;
        border-left: 3px solid var(--primary-orange);
        padding-left: 20px;
        margin-left: 35px;
        position: relative;
    }

    .history-item:before {
        content: "";
        position: absolute;
        left: -9px;
        top: 18px;
        width: 15px;
        height: 15px;
        background: var(--primary-orange);
        border-radius: 50%;
        border: 3px solid white;
        box-shadow: 0 0 0 3px var(--primary-orange);
    }

    .history-year {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-orange);
        grid-column: 1;
        grid-row: 1 / 3;
        display: flex;
        align-items: flex-start;
    }

    .history-title {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
    }

    .history-description {
        color: #666;
        line-height: 1.5;
        font-size: 0.85rem;
    }

    /* Team Grid */
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 25px;
    }

    .team-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 15px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: all 0.3s;
        border: 2px solid transparent;
    }

    .team-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        border-color: var(--primary-teal);
    }

    .team-card img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
        border: 4px solid var(--primary-orange);
        box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    }

    .team-info {
        text-align: center;
    }

    .team-name {
        font-size: 1rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 6px;
    }

    .team-position {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--primary-teal);
        margin-bottom: 10px;
        padding: 4px 12px;
        background: rgba(0, 188, 212, 0.1);
        border-radius: 20px;
        display: inline-block;
    }

    .team-description {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.5;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .content-card {
            padding: 25px 20px;
        }

        .content-card h3 {
            font-size: 1.2rem;
        }

        .history-item {
            grid-template-columns: 60px 1fr;
            gap: 15px;
            margin-left: 20px;
            padding-left: 20px;
        }

        .history-year {
            font-size: 1.2rem;
        }

        .history-title {
            font-size: 1rem;
        }

        .team-grid {
            grid-template-columns: 1fr;
        }
    }

    /* No News State */
    .no-news {
        text-align: center;
        padding: 80px 20px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

    .no-news i {
        font-size: 5rem;
        color: var(--primary-orange);
        margin-bottom: 25px;
        opacity: 0.5;
    }

    .no-news h3 {
        color: #333;
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 1.8rem;
    }

    .no-news p {
        color: #666;
        font-size: 1.1rem;
        margin: 0;
    }

    /* News Detail Page */
    article {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin-bottom: 30px;
    }

    .category-badge {
        display: inline-block;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .article-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
        padding: 20px 0;
        margin-bottom: 30px;
        border-bottom: 2px solid #f0f0f0;
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #666;
        font-size: 0.95rem;
    }

    .meta-item i {
        color: var(--primary-orange);
        font-size: 1.1rem;
    }

    .article-content {
        color: #333;
        line-height: 1.9;
        font-size: 1.05rem;
        margin-bottom: 40px;
    }

    .article-content h1,
    .article-content h2,
    .article-content h3 {
        color: var(--primary-teal);
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .article-content p {
        margin-bottom: 20px;
    }

    .article-content img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin: 25px 0;
    }

    .article-content ul,
    .article-content ol {
        margin: 20px 0;
        padding-left: 25px;
    }

    .article-content li {
        margin-bottom: 10px;
    }

    .share-buttons {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-top: 30px;
        border-top: 2px solid #f0f0f0;
    }

    .share-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        transition: all 0.3s;
        text-decoration: none;
    }

    .share-facebook {
        background: #1877F2;
    }

    .share-twitter {
        background: #1DA1F2;
    }

    .share-whatsapp {
        background: #25D366;
    }

    .share-btn:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        color: white;
    }

    /* Sidebar */
    .sidebar {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

    .sidebar-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-teal);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sidebar-title i {
        color: var(--primary-orange);
        font-size: 1.4rem;
    }

    .related-card {
        background: white;
        padding: 18px;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: all 0.3s;
        border-left: 4px solid var(--primary-orange);
    }

    .related-card:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .related-card a {
        color: #333;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        display: block;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .related-card a:hover {
        color: var(--primary-teal);
    }

    .related-date {
        font-size: 0.8rem;
        color: #999;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .related-date:before {
        content: "📅";
        font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
        article {
            padding: 25px 20px;
        }

        .article-meta {
            gap: 15px;
        }

        .article-content {
            font-size: 1rem;
        }

        .sidebar {
            margin-top: 30px;
        }
    }

/* ============================================
   MOBILE RESPONSIVE - COMPREHENSIVE STYLES
   ============================================ */

@media (max-width: 992px) {
    /* Navbar Mobile */
    .navbar-nav {
        padding: 15px 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
        margin: 0;
    }

    .btn-daftar {
        margin-top: 10px;
        display: block;
        text-align: center;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2rem !important;
    }

    .hero-content p {
        font-size: 0.9rem !important;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 20px 15px;
    }

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

    /* Program Cards */
    .program-card {
        margin-bottom: 20px;
    }

    /* Facility Grid */
    .facility-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* News Grid */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Testimonial */
    .testimonial-item {
        padding: 20px;
    }

    /* Footer */
    .footer-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    /* Top Bar - Hidden on Mobile */
    .top-bar {
        display: none !important;
    }

    /* Navbar Brand */
    .navbar-brand {
        font-size: 18px;
    }

    /* Hero Section */
    .hero-section {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .hero-content {
        text-align: center;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.85rem !important;
    }

    /* Hero Buttons Spacing */
    .hero-content .btn,
    .hero-content .btn-apply,
    .hero-content .btn-program {
        margin: 8px 5px;
        display: inline-block;
    }

    .hero-image {
        margin-top: 30px;
        max-height: 300px;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.5rem !important;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .stat-card,
    .stat-box {
        padding: 20px 15px;
        text-align: center;
    }

    .stat-number,
    .stat-box .stat-number {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 5px;
        display: block;
    }

    .stat-label,
    .stat-box .stat-label {
        font-size: 0.9rem;
        line-height: 1.4;
        display: block;
    }

    /* About Section */
    .about-image {
        margin-bottom: 30px;
        max-height: 250px;
    }

    /* Program Cards */
    .program-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }

    .program-card h4 {
        font-size: 1rem;
    }

    .program-card p {
        font-size: 0.85rem;
    }

    /* Feature Grid */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Timeline */
    .timeline-item {
        padding-left: 50px;
    }

    .timeline-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .timeline-content h4 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    /* Facility Cards */
    .facility-card {
        height: auto;
    }

    .facility-image {
        height: 200px;
    }

    /* Gallery Grid */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* News Cards */
    .news-card {
        margin-bottom: 20px;
    }

    .news-image {
        height: 200px;
    }

    /* Contact Form */
    .contact-info-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .contact-info-item i {
        font-size: 1.5rem;
    }

    /* PPDB Info Card */
    .ppdb-info-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .info-card {
        padding: 15px;
    }

    /* Registration Form */
    .registration-form {
        padding: 20px;
    }

    .form-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 1.2rem !important;
    }

    .registration-info-card {
        margin-top: 30px;
        padding: 20px;
    }

    .registration-info-card h4 {
        font-size: 1rem !important;
    }

    .registration-info-card ul,
    .registration-steps {
        font-size: 0.8rem !important;
    }

    /* Tables */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        font-size: 0.85rem;
    }

    /* Buttons */
    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .btn-daftar {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    /* Cards General */
    .card {
        margin-bottom: 20px;
    }

    .card-body {
        padding: 15px;
    }

    /* Profile Section */
    .profile-image {
        max-height: 250px;
        margin-bottom: 20px;
    }

    /* Achievement Cards */
    .achievement-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    /* Extracurricular Grid */
    .ekskul-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Staff Grid */
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .staff-card {
        padding: 15px;
    }

    .staff-photo {
        width: 80px;
        height: 80px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-section h5 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-section ul li {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding: 15px 0;
        text-align: center;
    }

    /* Badges */
    .badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    /* Spacing Utilities */
    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .mt-5 {
        margin-top: 2rem !important;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

@media (max-width: 576px) {
    /* Extra Small Devices */

    /* Hero */
    .hero-content h1 {
        font-size: 1.5rem !important;
    }

    .hero-content p {
        font-size: 0.8rem !important;
    }

    .hero-label {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    /* Stats - Single Column on Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-box,
    .stat-card {
        padding: 18px 12px;
    }

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

    .stat-label,
    .stat-box .stat-label {
        font-size: 0.85rem;
    }

    /* Gallery - Single Column on Small Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Staff Grid - Single Column */
    .staff-grid {
        grid-template-columns: 1fr;
    }

    .staff-card {
        text-align: center;
    }

    /* Tables */
    table {
        font-size: 0.75rem;
    }

    th, td {
        padding: 8px 5px;
    }

    /* Forms */
    .form-control,
    .form-select {
        font-size: 0.9rem;
    }

    label {
        font-size: 0.9rem;
    }

    /* Modal */
    .modal-dialog {
        margin: 10px;
    }

    .modal-body {
        padding: 15px;
    }

    /* Section Padding */
    section {
        padding: 40px 0;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Text Sizes */
    h1 { font-size: 1.75rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.25rem !important; }
    h4 { font-size: 1.1rem !important; }
    h5 { font-size: 1rem !important; }
    h6 { font-size: 0.9rem !important; }

    p {
        font-size: 0.85rem;
    }

    /* Hide decorative elements on very small screens */
    .hero-decoration,
    .section-decoration {
        display: none;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }

    .modal-dialog {
        max-width: 90%;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .social-icons {
        display: none !important;
    }

    body {
        font-size: 12pt;
    }
}

