:root {
    --primary-color: #0d6efd;
    --primary-dark: #0b5ed7;
    --secondary-color: #198754;
    --accent-color: #ffc107;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-blue: #e7f1ff;
    --gradient-primary: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
    --gradient-dark: linear-gradient(135deg, #0b5ed7 0%, #146c43 100%);
    --activity-primary: #0d6efd;
    --activity-secondary: #198754;
    --activity-accent: #ffc107;
    --activity-dark: #212529;
    --activity-light: #f8f9fa;
    --activity-gradient: linear-gradient(135deg, #0d6efd 0%, #198754 100%);

    --kaih-green: #28a745;
    --kaih-yellow: #ffc107;
    --kaih-red: #dc3545;
    --kaih-blue: #0d6efd;
    --kaih-light: #f8f9fa;
    --kaih-dark: #212529;
    --kaih-bg: #f8fafc;
    --kaih-card-bg: #ffffff;
    --kaih-border: #e9ecef;
    --kaih-text-light: #6c757d;
    --kaih-text-dark: #212529;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Navbar Modern Minimalis */
.navbar-modern {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar-modern.scrolled {
    padding: 8px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand-modern {
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link-modern {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 5px;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.nav-link-modern:hover,
.nav-link-modern.active {
    color: white !important;
    background: var(--gradient-primary);
}

/* Dropdown menu modern */
.dropdown-menu-modern {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-top: 8px;
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    margin: 2px 0;
    transition: all 0.2s ease;
    color: var(--dark-color);
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(5px);
}

/* Dropdown arrow animation */
.nav-link-modern.dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.nav-link-modern.dropdown-toggle.show::after {
    transform: rotate(180deg);
}

/* Tombol masuk yang lebih kecil */
.btn-enroll {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.3);
    color: white;
}

.btn-enroll.btn-sm {
    padding: 6px 16px;
    font-size: 0.85rem;
}

/* Navbar mobile responsive */
@media (max-width: 992px) {
    .navbar-collapse {
        background: white;
        border-radius: 12px;
        padding: 20px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-link-modern {
        margin: 5px 0;
        text-align: center;
    }

    .dropdown-menu-modern {
        box-shadow: none;
        background: rgba(13, 110, 253, 0.05);
        margin: 10px 0;
    }

    .btn-enroll {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
}

/* Animasi hover untuk semua link */
.nav-link-modern, .dropdown-item, .btn-enroll {
    position: relative;
    overflow: hidden;
}

.nav-link-modern::after,
.dropdown-item::after,
.btn-enroll::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.nav-link-modern:hover::after,
.dropdown-item:hover::after,
.btn-enroll:hover::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Fix untuk navbar toggler */
.navbar-toggler {
    border: none;
    padding: 6px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.2);
}

.navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-dark), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Slider Image Section */
.hero-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    height: 100%;
    min-height: 450px;
    background: rgba(0, 0, 0, 0.2);
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-item.active {
    opacity: 1;
    z-index: 1;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.slider-item.active .slider-img {
    transform: scale(1.05);
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    z-index: 2;
}

.slider-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.slider-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background: white;
    transform: scale(1.2);
}

.slider-caption {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 3;
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* Responsive adjustments for slider */
@media (max-width: 992px) {
    .hero-slider-container {
        min-height: 350px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-slider-container {
        min-height: 300px;
    }

    .slider-overlay {
        padding: 20px;
    }

    .slider-title {
        font-size: 1.1rem;
    }
}

/* Continue with existing styles for other sections... */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Counter Section */
.counter-section {
    background: var(--light-blue);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.counter-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230d6efd' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

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

.counter-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.counter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 30px;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.counter-label {
    color: var(--gray-color);
    font-weight: 500;
}

/* Modern Facilities Section */
.facilities-section {
    padding: 100px 0;
}

.facility-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 25px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.facility-icon {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    color: white;
    font-size: 32px;
}

.facility-content {
    flex: 1;
}

.facility-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.facility-desc {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Modern News Section */
.news-section {
    padding: 100px 0;
    background: var(--light-blue);
}

.news-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.news-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover .news-img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
}

.news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.4em;
}

.news-excerpt {
    color: var(--gray-color);
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    align-items: center;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-top: auto;
}

.news-date {
    margin-right: 15px;
}

/* Modern Footer */
.footer-modern {
    background: var(--dark-color);
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-modern:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.footer-brand {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: #aaa;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

.footer-newsletter {
    margin-top: 30px;
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    padding: 12px 20px;
}

.footer-newsletter .form-control::placeholder {
    color: #aaa;
}

.footer-newsletter .btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    margin-top: 15px;
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* General Button */
.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .facility-item {
        flex-direction: column;
        text-align: center;
    }

    .facility-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .news-title, .news-excerpt {
        -webkit-line-clamp: 3;
    }
}

/* Modern News Section */
.news-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.news-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230d6efd' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.news-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-header .section-title {
    margin-bottom: 20px;
}

.news-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.news-tab {
    padding: 10px 25px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-weight: 600;
    color: var(--gray-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-tab:hover, .news-tab.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

/* Featured News Carousel */
.featured-news-carousel {
    margin-bottom: 80px;
}

.featured-news-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.featured-news-item:hover .featured-news-img {
    transform: scale(1.05);
}

.featured-news-item:hover .featured-news-content {
    transform: translateY(-10px);
}

.featured-news-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-news-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-news-excerpt {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-news-meta {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.featured-news-date {
    margin-right: 20px;
}

/* Grid News Layout */
.news-grid {
    margin-bottom: 60px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.news-card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    align-self: flex-start;
}

.badge-news {
    background: var(--gradient-primary);
    color: white;
}

.badge-event {
    background: var(--gradient-accent);
    color: #000;
}

.badge-achievement {
    background: var(--gradient-purple);
    color: white;
}

.news-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.4em;
}

.news-card-excerpt {
    color: var(--gray-color);
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-top: auto;
}

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

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

/* Highlight News */
.highlight-news {
    margin-top: 80px;
}

.highlight-card {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.highlight-card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.highlight-card-content {
    padding: 30px;
    background: white;
    height: 100%;
}

.highlight-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.highlight-card-excerpt {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.highlight-stats {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: var(--gray-color);
}

.stat-item i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Modern Footer */
.footer-modern {
    background: var(--dark-color);
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-brand {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* News CTA */
.news-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0;
    border-radius: 20px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.news-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.news-cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

/* Glide.js Customization */
.glide__arrow {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.glide__arrow:hover {
    background: var(--gradient-dark);
}

.glide__bullets {
    bottom: -40px;
}

.glide__bullet {
    background: #dee2e6;
    border: none;
    width: 12px;
    height: 12px;
}

.glide__bullet:hover, .glide__bullet:focus {
    background: var(--primary-color);
}

.glide__bullet--active {
    background: var(--gradient-primary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .featured-news-item {
        height: 400px;
    }

    .featured-news-content {
        padding: 25px;
    }

    .featured-news-title {
        font-size: 1.4rem;
    }

    .news-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .news-tab {
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .featured-news-item {
        height: 350px;
    }

    .featured-news-title {
        font-size: 1.2rem;
    }
}

/* Page Header */
.page-header {
    height: 100px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    margin-top: 100px; /* Untuk mengkompensasi navbar fixed */
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: white;
}

.page-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.breadcrumb-modern {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-modern .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.breadcrumb-modern .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
}

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

.breadcrumb-modern .breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

.breadcrumb-modern .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "›";
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.about-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 28px;
}

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

.about-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: var(--light-blue);
    position: relative;
    overflow: hidden;
}

.timeline-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230d6efd' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: var(--gradient-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: white;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--primary-color);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: -10px;
    background: white;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--primary-color);
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.team-img-container {
    height: 250px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

/* Modern Footer */
.footer-modern {
    background: var(--dark-color);
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-modern:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.footer-brand {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

.footer-newsletter {
    margin-top: 30px;
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    padding: 12px 20px;
}

.footer-newsletter .form-control::placeholder {
    color: #aaa;
}

.footer-newsletter .btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    margin-top: 15px;
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* General Button */
.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.5rem;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: 21px;
    }

    .about-content-section {
        padding: 50px 0;
    }
}


/* Teachers Section */
.teachers-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.teachers-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230d6efd' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Simple Teacher Cards */
.teacher-card-simple {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    padding-bottom: 25px;
    margin-bottom: 30px;
}

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

.teacher-img-simple {
    height: 300px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.teacher-name-simple {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
    padding: 0 15px;
}

.teacher-position-simple {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    font-size: 0.95rem;
    padding: 0 15px;
}

.teacher-subject-simple {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding: 0 15px;
}

.teacher-experience-simple {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f3f5;
    padding: 0 15px;
}

.experience-item-simple {
    text-align: center;
}

.experience-value-simple {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
    display: block;
}

.experience-label-simple {
    font-size: 0.8rem;
    color: var(--gray-color);
}

/* Simple Pagination */
.pagination-simple {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-list-simple {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.page-item-simple {
    display: inline-block;
}

.page-link-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: white;
    color: var(--dark-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.page-link-simple:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.page-link-simple.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.page-link-simple.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-link-simple.disabled:hover {
    background: white;
    color: var(--dark-color);
    border-color: #e9ecef;
}

.page-prev-simple, .page-next-simple {
    width: auto;
    padding: 0 15px;
}

/* Section Kegiatan */
.activity-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.activity-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230d6efd' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.activity-section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    display: inline-block;
}

.activity-section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--activity-gradient);
    border-radius: 10px;
}

.activity-section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Tab Navigasi Kegiatan */
.activity-tab-nav {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.activity-tab-link {
    padding: 12px 25px;
    background: none;
    border: none;
    color: var(--activity-dark);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
    margin: 0 5px;
}

.activity-tab-link:hover {
    color: var(--activity-primary);
}

.activity-tab-link.active {
    color: var(--activity-primary);
}

.activity-tab-link.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--activity-gradient);
    border-radius: 4px 4px 0 0;
}

/* Activity Cards */
.activity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    border-top: 5px solid var(--activity-primary);
}

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

.activity-card-intra {
    border-top-color: var(--activity-primary);
}

.activity-card-extra {
    border-top-color: var(--activity-secondary);
}

.activity-card-co {
    border-top-color: var(--activity-accent);
}

.activity-card-habit {
    border-top-color: #6f42c1;
}

.activity-card-special {
    border-top-color: #fd7e14;
}

.activity-card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.activity-card-body {
    padding: 25px;
}

.activity-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--activity-dark);
}

.activity-card-category {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--activity-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.activity-card-extra .activity-card-category {
    background: rgba(25, 135, 84, 0.1);
    color: var(--activity-secondary);
}

.activity-card-co .activity-card-category {
    background: rgba(255, 193, 7, 0.1);
    color: #856404;
}

.activity-card-habit .activity-card-category {
    background: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

.activity-card-special .activity-card-category {
    background: rgba(253, 126, 20, 0.1);
    color: #fd7e14;
}

.activity-card-text {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.activity-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f3f5;
    padding-top: 15px;
    margin-top: 20px;
}

.activity-card-schedule {
    font-size: 0.9rem;
    color: var(--activity-dark);
    font-weight: 500;
}

.activity-card-participants {
    font-size: 0.9rem;
    color: #666;
}

/* Activity Schedule */
.activity-schedule {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.activity-schedule-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--activity-dark);
    text-align: center;
}

.activity-schedule-table {
    width: 100%;
}

.activity-schedule-table th {
    background: var(--activity-gradient);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.activity-schedule-table td {
    padding: 15px;
    border-bottom: 1px solid #f1f3f5;
    text-align: center;
}

.activity-schedule-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Modern Footer untuk Halaman Kegiatan */
.activity-footer {
    background: var(--activity-dark);
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.activity-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.activity-footer-brand {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-block;
    background: var(--activity-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.activity-footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.activity-footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--activity-gradient);
    border-radius: 10px;
}

.activity-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-footer-links li {
    margin-bottom: 12px;
}

.activity-footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.activity-footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.activity-footer-links a i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--activity-primary);
}

.activity-footer-social {
    display: flex;
    margin-top: 20px;
}

.activity-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.activity-social-icon:hover {
    background: var(--activity-gradient);
    transform: translateY(-5px);
}

.activity-footer-newsletter {
    margin-top: 30px;
}

.activity-footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    padding: 12px 20px;
}

.activity-footer-newsletter .form-control::placeholder {
    color: #aaa;
}

.activity-footer-newsletter .btn {
    background: var(--activity-gradient);
    border: none;
    color: white;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    margin-top: 15px;
    width: 100%;
}

.activity-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .activity-page-title {
        font-size: 1.5rem;
    }

    .activity-tab-nav {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }

    .activity-tab-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .activity-card-img {
        height: 180px;
    }

    .activity-schedule {
        padding: 20px;
    }

    .activity-schedule-table th,
    .activity-schedule-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .activity-card-img {
        height: 160px;
    }

    .activity-card-body {
        padding: 20px;
    }

    .activity-card-title {
        font-size: 1.1rem;
    }

    .activity-schedule-table {
        font-size: 0.85rem;
    }

    .activity-schedule-table th,
    .activity-schedule-table td {
        padding: 8px;
    }
}

/* Stats Section */
.kaih-stats-section {
    padding: 60px 0;
}

.kaih-section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: var(--kaih-text-dark);
}

.kaih-section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
    border-radius: 10px;
}

.kaih-card {
    background: var(--kaih-card-bg);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid var(--kaih-border);
}

.kaih-indicator-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.kaih-badge-hebat {
    background-color: rgba(40, 167, 69, 0.15);
    color: var(--kaih-green);
}

.kaih-badge-mulai {
    background-color: rgba(255, 193, 7, 0.15);
    color: #856404;
}

.kaih-badge-perlu {
    background-color: rgba(220, 53, 69, 0.15);
    color: var(--kaih-red);
}

/* Chart Container */
.kaih-chart-container {
    height: 400px;
    width: 100%;
}

/* Tables - Minimalist Design */
.kaih-table-minimal {
    background: var(--kaih-card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--kaih-border);
}

.kaih-table-minimal thead {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(25, 135, 84, 0.05) 100%);
}

.kaih-table-minimal thead th {
    color: var(--kaih-text-dark);
    border: none;
    padding: 18px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--kaih-border);
}

.kaih-table-minimal tbody td {
    padding: 16px 15px;
    vertical-align: middle;
    border: none;
    border-bottom: 1px solid var(--kaih-border);
    color: var(--kaih-text-light);
}

.kaih-table-minimal tbody tr {
    transition: all 0.2s ease;
}

.kaih-table-minimal tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.03);
}

.kaih-table-minimal tbody tr:last-child td {
    border-bottom: none;
}

/* Badge untuk tabel */
.kaih-table-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
}

.badge-hebat {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--kaih-green);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.badge-mulai {
    background-color: rgba(255, 193, 7, 0.1);
    color: #b37d00;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.badge-perlu {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--kaih-red);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Progress bars untuk tabel rangkuman */
.kaih-progress-container {
    margin-top: 5px;
}

.kaih-progress-bar {
    height: 6px;
    border-radius: 3px;
    background-color: #e9ecef;
    overflow: hidden;
}

.kaih-progress-fill {
    height: 100%;
    border-radius: 3px;
}

.progress-hebat {
    background-color: var(--kaih-green);
}

.progress-mulai {
    background-color: #ffc107;
}

.progress-perlu {
    background-color: var(--kaih-red);
}

/* Indikator Grid - 7 kolom sejajar */
.kaih-indicators-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.kaih-indicator-card {
    text-align: center;
    padding: 20px 15px;
    border-radius: 10px;
    background: var(--kaih-card-bg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 220px;
    border: 1px solid var(--kaih-border);
}

.kaih-indicator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.kaih-indicator-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.kaih-indicator-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--kaih-text-dark);
    line-height: 1.3;
    height: 2.6em; /* Untuk menjaga tinggi judul konsisten */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.kaih-indicator-desc {
    font-size: 0.85rem;
    color: var(--kaih-text-light);
    margin-bottom: 10px;
    line-height: 1.4;
    flex-grow: 1;
}

.kaih-indicator-result {
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Warna ikon indikator */
.icon-bangun { background: rgba(13, 110, 253, 0.1); color: #0d6efd; }
.icon-ibadah { background: rgba(40, 167, 69, 0.1); color: var(--kaih-green); }
.icon-olahraga { background: rgba(255, 193, 7, 0.1); color: #ffc107; }
.icon-makan { background: rgba(220, 53, 69, 0.1); color: var(--kaih-red); }
.icon-belajar { background: rgba(108, 117, 125, 0.1); color: #6c757d; }
.icon-masyarakat { background: rgba(111, 66, 193, 0.1); color: #6f42c1; }
.icon-tidur { background: rgba(23, 162, 184, 0.1); color: #17a2b8; }

/* Responsive untuk indikator grid */
@media (max-width: 1200px) {
    .kaih-indicators-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .kaih-indicators-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kaih-page-title {
        font-size: 1.5rem;
    }

    .kaih-chart-container {
        height: 300px;
    }

    .kaih-table-minimal {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .kaih-indicators-grid {
        grid-template-columns: 1fr;
    }

    .kaih-indicator-card {
        min-height: 180px;
    }

    .kaih-chart-container {
        height: 250px;
    }
}

/* Berita */
.berita-main-section {
    padding: 80px 0;
}

/* News Cards Minimalist & Modern */
.berita-card {
    background: var(--berita-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    margin-bottom: 30px;
    border: 1px solid var(--berita-border);
    display: flex;
    flex-direction: column;
}

.berita-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    border-color: rgba(13, 110, 253, 0.2);
}

.berita-card-img-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.berita-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.berita-card:hover .berita-card-img {
    transform: scale(1.05);
}

.berita-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--berita-dark);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.berita-card-category.academic {
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.2);
}

.berita-card-category.event {
    color: #fd7e14;
    background: rgba(253, 126, 20, 0.1);
    border-color: rgba(253, 126, 20, 0.2);
}

.berita-card-category.achievement {
    color: #198754;
    background: rgba(25, 135, 84, 0.1);
    border-color: rgba(25, 135, 84, 0.2);
}

.berita-card-category.announcement {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.2);
}

.berita-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.berita-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--berita-dark);
}

.berita-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.berita-card-title a:hover {
    color: var(--berita-primary);
}

.berita-card-excerpt {
    color: var(--berita-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.9rem;
    flex-grow: 1;
}

.berita-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: auto;
    border-top: 1px solid var(--berita-border);
}

.berita-card-date {
    font-size: 0.85rem;
    color: var(--berita-gray);
    display: flex;
    align-items: center;
}

.berita-card-date i {
    margin-right: 6px;
    color: var(--berita-primary);
    font-size: 0.9rem;
}

.berita-card-readmore {
    color: var(--berita-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.berita-card-readmore i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.berita-card-readmore:hover {
    color: var(--berita-secondary);
}

.berita-card-readmore:hover i {
    transform: translateX(4px);
}

/* Sidebar */
.berita-sidebar {
    position: sticky;
    top: 100px;
}

.berita-sidebar-card {
    background: var(--berita-card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 24px;
    margin-bottom: 30px;
    border: 1px solid var(--berita-border);
}

.berita-sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--berita-primary-light);
    color: var(--berita-dark);
}

/* Category List */
.berita-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.berita-category-list li {
    margin-bottom: 8px;
}

.berita-category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--berita-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.berita-category-list a:hover {
    background: var(--berita-primary-light);
    color: var(--berita-primary);
    border-color: var(--berita-primary-light);
    transform: translateX(4px);
}

.berita-category-list .badge {
    background: var(--berita-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
}

/* Recent News */
.berita-recent-item {
    display: flex;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--berita-border);
}

.berita-recent-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.berita-recent-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
    flex-shrink: 0;
}

.berita-recent-content {
    flex: 1;
}

.berita-recent-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
}

.berita-recent-title a {
    color: var(--berita-dark);
    text-decoration: none;
}

.berita-recent-title a:hover {
    color: var(--berita-primary);
}

.berita-recent-date {
    font-size: 0.8rem;
    color: var(--berita-gray);
}

/* Featured News Minimalist */
.berita-featured-card {
    background: var(--berita-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid var(--berita-border);
}

.berita-featured-img-container {
    height: 300px;
    overflow: hidden;
}

.berita-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.berita-featured-card:hover .berita-featured-img {
    transform: scale(1.03);
}

.berita-featured-body {
    padding: 32px;
}

.berita-featured-category {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--berita-primary);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.berita-featured-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--berita-dark);
}

.berita-featured-title a {
    color: inherit;
    text-decoration: none;
}

.berita-featured-title a:hover {
    color: var(--berita-primary);
}

.berita-featured-excerpt {
    font-size: 1rem;
    color: var(--berita-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.berita-featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--berita-border);
}

/* Pagination Minimalist */
.berita-pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.berita-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: white;
    color: var(--berita-dark);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--berita-border);
    margin: 0 4px;
}

.berita-page-link:hover {
    background: var(--berita-primary-light);
    color: var(--berita-primary);
    border-color: var(--berita-primary-light);
}

.berita-page-link.active {
    background: var(--berita-primary);
    color: white;
    border-color: var(--berita-primary);
}

.berita-page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
}

.berita-page-link.disabled:hover {
    background: #f8f9fa;
    color: var(--berita-dark);
    border-color: var(--berita-border);
}

/* Newsletter */
.berita-newsletter {
    background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
    border-radius: 12px;
    padding: 28px;
    color: white;
    text-align: center;
    border: none;
}

.berita-newsletter-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.berita-newsletter-desc {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 0.9rem;
}

.berita-newsletter .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    padding: 12px 18px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.berita-newsletter .btn {
    background: white;
    color: var(--berita-primary);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.berita-newsletter .btn:hover {
    background: var(--berita-dark);
    color: white;
}

/* Footer */
.berita-footer {
    background: var(--berita-dark);
    color: white;
    padding: 60px 0 20px;
}

.berita-footer-brand {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.berita-footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.berita-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.berita-footer-links li {
    margin-bottom: 10px;
}

.berita-footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.berita-footer-links a:hover {
    color: white;
}

.berita-footer-social {
    display: flex;
    margin-top: 20px;
}

.berita-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.berita-footer-social a:hover {
    background: var(--berita-primary);
    transform: translateY(-3px);
}

.berita-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 40px;
    text-align: center;
    color: #aaa;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .berita-featured-img-container {
        height: 280px;
    }

    .berita-featured-title {
        font-size: 1.4rem;
    }
}

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

    .berita-card-img-container {
        height: 180px;
    }

    .berita-card-body {
        padding: 20px;
    }

    .berita-card-title {
        font-size: 1.1rem;
    }

    .berita-featured-img-container {
        height: 240px;
    }

    .berita-featured-title {
        font-size: 1.3rem;
    }

    .berita-featured-body {
        padding: 24px;
    }

    .berita-sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .berita-page-header {
        padding: 30px 0;
    }

    .berita-card-img-container {
        height: 160px;
    }

    .berita-card-body {
        padding: 18px;
    }

    .berita-card-title {
        font-size: 1rem;
    }

    .berita-featured-img-container {
        height: 200px;
    }

    .berita-featured-body {
        padding: 20px;
    }

    .berita-featured-title {
        font-size: 1.2rem;
    }

    .berita-page-link {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .berita-recent-img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 400px) {
    .berita-card-img-container {
        height: 140px;
    }

    .berita-featured-img-container {
        height: 180px;
    }
}

/* Berita Detail */
/* Page Header */
.berita-detail-header {
    background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
    color: white;
    padding: 40px 0;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.berita-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.berita-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.berita-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.berita-detail-category {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.berita-detail-date, .berita-detail-author, .berita-detail-views {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.berita-detail-date i, .berita-detail-author i, .berita-detail-views i {
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.berita-detail-breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.berita-detail-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.berita-detail-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
}

.berita-detail-breadcrumb .breadcrumb-item a:hover {
    color: white;
}

.berita-detail-breadcrumb .breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

.berita-detail-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "›";
}

/* Main Content */
.berita-detail-main {
    padding: 60px 0;
    background: #f8fafc;
}

/* Article Container */
.berita-detail-article {
    background: var(--berita-card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 50px;
    margin-bottom: 40px;
    border: 1px solid var(--berita-border);
}

@media (max-width: 768px) {
    .berita-detail-article {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .berita-detail-article {
        padding: 25px 20px;
    }
}

/* Featured Image */
.berita-detail-featured-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .berita-detail-featured-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .berita-detail-featured-img {
        height: 300px;
    }
}

/* Article Content */
.berita-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--berita-text);
}

.berita-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--berita-dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--berita-primary-light);
}

.berita-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--berita-dark);
}

.berita-detail-content p {
    margin-bottom: 1.5rem;
}

.berita-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.berita-detail-content blockquote {
    border-left: 4px solid var(--berita-primary);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
    color: var(--berita-gray);
    font-size: 1.2rem;
    background: var(--berita-primary-light);
    padding: 25px;
    border-radius: 8px;
    border-left: none;
}

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

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

/* Article Meta Bottom */
.berita-detail-meta-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid var(--berita-border);
    border-bottom: 1px solid var(--berita-border);
}

.berita-detail-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.berita-detail-tag {
    padding: 6px 15px;
    background: var(--berita-primary-light);
    color: var(--berita-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.berita-detail-tag:hover {
    background: var(--berita-primary);
    color: white;
    text-decoration: none;
}

.berita-detail-social-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.berita-detail-social-share span {
    font-weight: 600;
    color: var(--berita-gray);
    font-size: 0.9rem;
}

.berita-detail-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--berita-light);
    color: var(--berita-dark);
    transition: all 0.3s ease;
    text-decoration: none;
}

.berita-detail-social-icon:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.berita-detail-social-icon.facebook:hover {
    background: #1877f2;
    color: white;
}

.berita-detail-social-icon.twitter:hover {
    background: #1da1f2;
    color: white;
}

.berita-detail-social-icon.whatsapp:hover {
    background: #25d366;
    color: white;
}

.berita-detail-social-icon.link:hover {
    background: var(--berita-primary);
    color: white;
}

/* Navigation */
.berita-detail-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    margin-top: 30px;
}

.berita-detail-nav-btn {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background: var(--berita-card-bg);
    border-radius: 10px;
    text-decoration: none;
    color: var(--berita-dark);
    border: 1px solid var(--berita-border);
    transition: all 0.3s ease;
    width: 45%;
}

.berita-detail-nav-btn:hover {
    background: var(--berita-primary-light);
    border-color: var(--berita-primary);
    color: var(--berita-primary);
    text-decoration: none;
}

.berita-detail-nav-btn.prev {
    text-align: left;
}

.berita-detail-nav-btn.next {
    text-align: right;
    justify-content: flex-end;
}

.berita-detail-nav-btn i {
    font-size: 1.2rem;
    margin: 0 10px;
}

.berita-detail-nav-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.berita-detail-nav-content span {
    font-size: 0.85rem;
    color: var(--berita-gray);
}

/* Sidebar */
.berita-detail-sidebar {
    position: sticky;
    top: 100px;
}

.berita-detail-sidebar-card {
    background: var(--berita-card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid var(--berita-border);
}

.berita-detail-sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--berita-primary-light);
    color: var(--berita-dark);
}

/* Author Info */
.berita-detail-author-card {
    text-align: center;
    padding: 30px;
}

.berita-detail-author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--berita-primary-light);
}

.berita-detail-author-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--berita-dark);
}

.berita-detail-author-bio {
    color: var(--berita-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.berita-detail-author-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.berita-detail-author-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--berita-light);
    color: var(--berita-dark);
    transition: all 0.3s ease;
    text-decoration: none;
}

.berita-detail-author-social a:hover {
    background: var(--berita-primary);
    color: white;
}

/* Related News */
.berita-detail-related-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--berita-border);
}

.berita-detail-related-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.berita-detail-related-img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
    flex-shrink: 0;
}

.berita-detail-related-content {
    flex: 1;
}

.berita-detail-related-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.berita-detail-related-title a {
    color: var(--berita-dark);
    text-decoration: none;
}

.berita-detail-related-title a:hover {
    color: var(--berita-primary);
}

.berita-detail-related-date {
    font-size: 0.8rem;
    color: var(--berita-gray);
}

/* Newsletter */
.berita-detail-newsletter {
    background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
    border-radius: 12px;
    padding: 25px;
    color: white;
    text-align: center;
}

.berita-detail-newsletter-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.berita-detail-newsletter-desc {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 0.9rem;
}

.berita-detail-newsletter .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    padding: 12px 18px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.berita-detail-newsletter .btn {
    background: white;
    color: var(--berita-primary);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.berita-detail-newsletter .btn:hover {
    background: var(--berita-dark);
    color: white;
}

/* Comments Section */
.berita-detail-comments {
    background: var(--berita-card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 40px;
    margin-top: 50px;
    border: 1px solid var(--berita-border);
}

.berita-detail-comment-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--berita-border);
}

.berita-detail-comment-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.berita-detail-comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.berita-detail-comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--berita-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--berita-primary);
    font-weight: 600;
    font-size: 1.2rem;
}

.berita-detail-comment-author {
    flex: 1;
}

.berita-detail-comment-author h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--berita-dark);
}

.berita-detail-comment-date {
    font-size: 0.85rem;
    color: var(--berita-gray);
}

.berita-detail-comment-content {
    color: var(--berita-text);
    line-height: 1.6;
}

/* Comment Form */
.berita-detail-comment-form {
    margin-top: 40px;
}

.berita-detail-comment-form .form-control,
.berita-detail-comment-form .form-select {
    border: 1px solid var(--berita-border);
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.berita-detail-comment-form .form-control:focus,
.berita-detail-comment-form .form-select:focus {
    border-color: var(--berita-primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.berita-detail-comment-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.berita-detail-comment-form .btn {
    background: var(--berita-primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.berita-detail-comment-form .btn:hover {
    background: var(--berita-secondary);
}

/* Footer */
.berita-detail-footer {
    background: var(--berita-dark);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.berita-detail-footer-brand {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.berita-detail-footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.berita-detail-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.berita-detail-footer-links li {
    margin-bottom: 10px;
}

.berita-detail-footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.berita-detail-footer-links a:hover {
    color: white;
}

.berita-detail-footer-social {
    display: flex;
    margin-top: 20px;
}

.berita-detail-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.berita-detail-footer-social a:hover {
    background: var(--berita-primary);
    transform: translateY(-3px);
}

.berita-detail-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 40px;
    text-align: center;
    color: #aaa;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .berita-detail-title {
        font-size: 1.8rem;
    }

    .berita-detail-meta {
        gap: 15px;
    }

    .berita-detail-meta-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .berita-detail-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .berita-detail-nav-btn {
        width: 100%;
    }

    .berita-detail-sidebar {
        margin-top: 40px;
    }

    .berita-detail-featured-img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .berita-detail-header {
        padding: 30px 0;
    }

    .berita-detail-title {
        font-size: 1.6rem;
    }

    .berita-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .berita-detail-featured-img {
        height: 200px;
    }

    .berita-detail-content h2 {
        font-size: 1.5rem;
    }

    .berita-detail-content h3 {
        font-size: 1.3rem;
    }

    .berita-detail-comments {
        padding: 25px;
    }
}

/* Fasilitas Section */
.album-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.album-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.album-filter-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-weight: 600;
    color: var(--gray-color);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.album-filter-btn:hover, .album-filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.album-filter-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Album Cards */
.album-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    background: white;
    margin-bottom: 30px;
}

.album-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.album-cover {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.album-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.album-card:hover .album-cover-img {
    transform: scale(1.1);
}

.album-photo-count {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.album-photo-count i {
    margin-right: 5px;
}

.album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.view-album-btn {
    padding: 10px 25px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.view-album-btn:hover {
    background: var(--gradient-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.view-album-btn i {
    margin-left: 8px;
}

.album-content {
    padding: 25px;
}

.album-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--light-blue);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.album-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.album-desc {
    color: var(--gray-color);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.album-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-color);
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.album-date {
    display: flex;
    align-items: center;
}

.album-date i {
    margin-right: 5px;
}

/* Photo Grid for Album Detail */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.photo-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.photo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.photo-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
}

.photo-caption {
    padding: 15px;
    background: white;
}

.photo-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.photo-desc {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Album Detail Header */
.album-detail-header {
    padding: 120px 0 60px;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.album-detail-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.back-to-albums {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    margin-bottom: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-albums:hover {
    transform: translateX(-5px);
}

.back-to-albums i {
    margin-right: 8px;
}

.album-header-content {
    position: relative;
    z-index: 2;
}

/* Album Info */
.album-info {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}

.album-info-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.album-info-img {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.album-info-details {
    flex: 1;
}

.album-info-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Modern Footer */
.footer-modern {
    background: var(--dark-color);
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-brand {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
}

.breadcrumb-custom .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

.breadcrumb-custom .breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .facilities-hero {
        padding: 150px 0 80px;
    }

    .album-filter {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .album-filter-btn {
        white-space: nowrap;
    }

    .album-info-content {
        flex-direction: column;
    }

    .album-info-img {
        width: 100%;
        height: 200px;
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}


/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Contact Info Cards */
.contact-info-card {
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 28px;
    margin-left: auto;
    margin-right: auto;
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Contact Form */
.contact-form-container {
    padding: 40px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.form-control-modern {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.form-label-modern {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-color);
}

/* Button */
.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    color: white;
}

/* Map Section */
.map-section {
    padding-bottom: 80px;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-blue);
}

.accordion-modern {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.accordion-modern .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
}

.accordion-modern .accordion-button {
    background: white;
    font-weight: 600;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: none;
    border: none;
}

.accordion-modern .accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
    box-shadow: none;
}

.accordion-modern .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}
