:root {
    --primary-orange: #FF9800;
    --primary-teal: #00897B;
    --dark-bg: #2C3E50;
    --light-gray: #F5F5F5;
    --text-dark: #1a1a1a;
    --text-muted: #6B7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: #ffffff;
}

/* ============ TOP BAR ============ */
.top-bar {
    background: #f8f9fa;
    color: #4B5563;
    /* Gray-600 */
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.top-bar i {
    margin-right: 6px;
    color: var(--primary-teal);
}

.follow-us {
    font-weight: 500;
    margin-right: 15px;
    color: #6B7280;
    /* Gray-500 */
}

.top-bar .social-icons a {
    color: #6B7280;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
    font-size: 15px;
}

.top-bar .social-icons a:hover {
    color: var(--primary-orange);
}

/* ============ NAVBAR ============ */
.navbar {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
}

.navbar.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

.navbar-brand {
    font-weight: 700;
    color: #1F2937 !important;
    /* Gray-800 */
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    line-height: 1;
    flex-shrink: 0;
}

.navbar-brand span {
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: #4B5563 !important;
    /* Gray-600 */
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0 16px !important;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    line-height: 1;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
}

.navbar-nav {
    flex-wrap: nowrap;
    align-items: center;
}

.navbar-collapse {
    align-items: center;
    flex: 1 1 auto;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

/* Dropdown Menu - Premium Look */
.dropdown-menu {
    border: none;
    background: #ffffff !important;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.05);
    border-radius: 12px !important;
    padding: 10px !important;
    margin-top: 15px !important;
    min-width: 200px !important;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    display: block;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-item.dropdown:hover .dropdown-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    padding: 10px 15px !important;
    font-size: 0.9rem !important;
    color: #4B5563 !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    transition: all 0.2s !important;
    border: none !important;
    margin-bottom: 2px !important;
}

.dropdown-item:last-child {
    margin-bottom: 0 !important;
}

.dropdown-item:hover {
    background-color: rgba(255, 102, 0, 0.08) !important;
    color: var(--primary-orange) !important;
    padding-left: 20px !important;
}

.dropdown-item i {
    margin-right: 8px;
    color: var(--primary-orange);
    font-size: 1.1rem;
}

/* ============ PAGE HEADER ============ */
.page-header {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-orange));
    padding: 60px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Pattern Overlay Effect (Optional) */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: white;
    text-decoration: underline;
}

/* ============ NEWS CARD UPDATE ============ */
.news-category {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    /* Slightly squarer than pill */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-announcement {
    background-color: #F59E0B;
    /* Amber-500 */
}

.category-news {
    background-color: #10B981;
    /* Emerald-500 */
}

.category-article {
    background-color: #3B82F6;
    /* Blue-500 */
}

.news-card {
    border: 1px solid #E5E7EB;
    /* Gray-200 */
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.news-img {
    height: 220px;
    /* Slightly taller */
}

.news-date {
    display: block;
    font-size: 13px;
    color: #6B7280;
    /* Gray-500 */
    margin-bottom: 8px;
    font-weight: 500;
}

.news-card .card-title {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #111827;
    /* Gray-900 */
}

.news-card .card-text {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-news {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
}

.btn-news:hover {
    color: #D97706;
    /* Amber-600 */
    text-decoration: none;
    margin-left: 5px;
}

/* ============ FOOTER ============ */
.footer {
    background-color: #1F2937;
    /* Gray-800 */
    color: #D1D5DB;
    /* Gray-300 */
    padding: 60px 0 30px;
    font-size: 15px;
}

.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: all 0.2s;
}

.footer ul li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer .social-icons {
    margin-top: 20px;
}

.footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.footer .social-icons a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

/* Visitor Stats in Footer */
.visitor-stats {
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle white overlay */
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.visitor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.visitor-item i {
    font-size: 20px;
    color: var(--primary-teal);
    margin-bottom: 5px;
}

.visitor-count {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.visitor-label {
    font-size: 12px;
    color: #9CA3AF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #9CA3AF;
}

.btn-apply {
    background: var(--primary-orange);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    padding: 10px 25px;
}

.btn-apply:hover {
    background: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    color: white;
}

/* ============ HERO SECTION ============ */
.hero-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* ============ CAROUSEL / SLIDER ============ */
.center_home {
    height: 70vh;
    min-height: 450px;
    max-height: 650px;
    overflow: hidden;
}

.center_home .carousel,
.center_home .carousel-inner,
.center_home .carousel-item {
    height: 100%;
}

.center_home .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-fade .carousel-item {
    transition: opacity 0.5s ease-in-out;
}

.hero-label {
    display: inline-block;
    background: rgba(255, 152, 0, 0.9);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-label i {
    margin-right: 8px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 .highlight {
    color: var(--primary-orange);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
}

.carousel-indicators button.active {
    background: var(--primary-orange);
}

/* ============ FEATURES SECTION ============ */
.features-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border-top: 4px solid var(--primary-orange);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-orange);
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============ ABOUT SECTION ============ */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-list {
    list-style: none;
}

.about-list li {
    padding: 12px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--light-gray);
    font-size: 1rem;
}

.about-list li:before {
    content: '✓ ';
    color: var(--primary-orange);
    font-weight: 700;
    margin-right: 10px;
}

.about-list li:last-child {
    border-bottom: none;
}

/* ============ STATS SECTION ============ */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-orange));
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ============ PROGRAMS SECTION ============ */
.programs-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.program-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.program-card:hover .program-img {
    transform: scale(1.05);
}

.program-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.program-card .card-body {
    padding: 30px 20px;
}

.program-card .card-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.program-card .card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-program {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.btn-program:hover {
    color: var(--primary-teal);
    margin-left: 5px;
}

/* ============ FACILITIES SECTION ============ */
.facilities-section {
    padding: 80px 0;
    background: white;
}

.facility-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.facility-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.facility-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 137, 123, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-teal);
    margin: 0 auto 20px;
}

.facility-item h4 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.facility-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============ EXTRACURRICULAR SECTION ============ */
.extracurricular-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.ekskul-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
}

.ekskul-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ekskul-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-orange);
    margin: 0 auto 20px;
}

.ekskul-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.ekskul-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ekskul-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ============ GALLERY SECTION ============ */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 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, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 2rem;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ============ AWARDS SECTION ============ */
.awards-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.award-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.award-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.award-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.award-content h5 {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.award-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.award-year {
    background: var(--primary-orange);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    margin-left: auto;
}

/* ============ NEWS SECTION ============ */
.news-section {
    padding: 80px 0;
    background: white;
}

.news-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-img {
    height: 200px;
    object-fit: cover;
}

.news-category {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
}

.category-announcement {
    background: #FF9800;
    color: white;
}

.category-news {
    background: #00897B;
    color: white;
}

.category-article {
    background: #1976D2;
    color: white;
}

.news-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.news-date i {
    margin-right: 5px;
}

.news-card .card-title {
    font-weight: 700;
    margin: 15px 0;
    color: var(--text-dark);
}

.news-card .card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-news {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.btn-news:hover {
    color: var(--primary-teal);
    margin-left: 5px;
}

/* ============ TESTIMONIAL SECTION ============ */
.testimonial-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    margin: 0;
    font-weight: 700;
    color: var(--text-dark);
}

.author-info p {
    margin: 5px 0 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-info {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
}

.contact-info h4 {
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.contact-form {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
}

.contact-form h4 {
    color: var(--text-dark);
    font-weight: 700;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.25);
}

.contact-form textarea {
    margin-bottom: 20px;
}

.btn-submit {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #F57C00;
    transform: translateY(-2px);
}

.contact-form .social-icons {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.contact-form .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary-orange);
    border-radius: 50%;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.contact-form .social-icons a:hover {
    background: var(--primary-orange);
    color: white;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer ul li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s;
    font-size: 1rem;
}

.footer .social-icons a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.visitor-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-bottom: 20px;
}

.visitor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.visitor-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.visitor-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.visitor-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============ FRONTEND FORM PAGES ============ */
.frontend-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 72px;
}

.frontend-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 24%);
    pointer-events: none;
}

.frontend-hero .container {
    position: relative;
    z-index: 1;
}

.frontend-hero-eyebrow {
    display: inline-block;
    padding: 8px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff7ed;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.frontend-section-soft {
    background: linear-gradient(180deg, #fffaf3 0%, #ffffff 26%);
}

.frontend-info-card,
.frontend-form-card {
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.frontend-info-card {
    color: #fff;
    background: linear-gradient(160deg, #0f766e 0%, #115e59 50%, #0f172a 100%);
}

.frontend-info-card h3,
.frontend-form-card h3 {
    font-size: 1.45rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: 14px;
}

.frontend-info-card h3 {
    color: #fff;
}

.frontend-info-card p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.frontend-card-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: #fcd34d;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.frontend-form-card__head {
    margin-bottom: 24px;
}

.frontend-form-card__head h3 {
    color: #0f172a;
    margin-bottom: 0;
}

.frontend-check-list {
    display: grid;
    gap: 14px;
    margin: 22px 0;
}

.frontend-check-list div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.frontend-check-list i {
    font-size: 1.1rem;
    color: #fcd34d;
    margin-top: 2px;
}

.frontend-form-label {
    font-weight: 700;
    color: #334155;
    margin-bottom: 10px;
}

.frontend-form-control {
    border-radius: 16px;
    border: 1px solid #dbe4ee;
    padding: 0.9rem 1rem;
    min-height: 54px;
    box-shadow: none;
}

.frontend-form-control:focus {
    border-color: rgba(15, 118, 110, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.14);
}

textarea.frontend-form-control {
    min-height: auto;
}

.frontend-btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.24);
}

.frontend-btn-primary:hover,
.frontend-btn-primary:focus {
    color: #fff;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

.frontend-form-note {
    color: #64748b;
    font-size: 0.95rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .top-bar {
        font-size: 0.75rem;
        padding: 8px 0;
    }

    .navbar-brand {
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .feature-card,
    .facility-item,
    .ekskul-card {
        padding: 20px;
    }

    .award-card {
        flex-wrap: wrap;
    }

    .award-year {
        margin-left: 0;
        margin-top: 10px;
    }

    .program-card .card-body,
    .contact-form,
    .contact-info {
        padding: 20px;
    }

    .contact-form .btn-submit {
        width: 100%;
    }

    .frontend-hero {
        padding: 68px 0 60px;
    }

    .frontend-info-card,
    .frontend-form-card {
        padding: 24px;
    }
}

@media (max-width: 1399.98px) and (min-width: 992px) {
    .navbar-brand {
        margin-right: 14px;
    }

    .navbar-collapse {
        display: flex !important;
        justify-content: space-between;
        gap: 14px;
    }

    .navbar-nav {
        margin: 0 auto;
        gap: 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.86rem;
        padding: 0 10px !important;
    }

    .btn-apply-siloka {
        padding: 10px 18px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 0.7rem;
        padding: 5px 0;
    }

    .navbar-brand {
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }

    .visitor-stats {
        padding: 15px 0;
    }

    .frontend-hero h1 {
        font-size: 2rem;
    }
}
