/**
* Parahyangan Mulia Junior High School - Main CSS
* Versi: 1.2
* Deskripsi: File CSS utama untuk website Parahyangan Mulia Junior High School
* Update: Perubahan Transparency Shadow dari Box About-Feature-Item
*/

/* ===== VARIABEL WARNA ===== */
:root {
    --primary-color: #1a3a6c;     /* Biru tua */
    --secondary-color: #f8b400;   /* Emas */
    --accent-color: #e63946;      /* Merah */
    --light-color: #f8f9fa;       /* Putih keabu-abuan */
    --dark-color: #212529;        /* Hitam keabu-abuan */
    --gray-color: #6c757d;        /* Abu-abu */
    --success-color: #28a745;     /* Hijau */
    --info-color: #17a2b8;        /* Biru muda */
    --warning-color: #ffc107;     /* Kuning */
    --danger-color: #dc3545;      /* Merah */
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===== RESET & DASAR ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.6rem;
}

h5 {
    font-size: 1.3rem;
}

h6 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

button, input, select, textarea {
    font-family: 'Poppins', sans-serif;
    outline: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 25%;
}

.section-title p {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover:after {
    height: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-accent {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-accent:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.bg-light {
    background-color: var(--light-color) !important;
}

.bg-dark {
    background-color: var(--dark-color) !important;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999;
}

#preloader:before {
    content: '';
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid var(--primary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: var(--primary-color);
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
}

.contact-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.contact-info li {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.contact-info li:last-child {
    margin-right: 0;
}

.contact-info li i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.social-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.social-links li {
    margin-left: 10px;
}

.social-links a {
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 15px 0;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand img.logo {
    max-height: 60px;
    transition: var(--transition);
}

.navbar-scrolled .navbar-brand img.logo {
    max-height: 50px;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-nav .nav-item {
    margin: 0 5px;
    position: relative;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
    width: 100%;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 10px 0;
    margin: 0;
    animation: fadeInUp 0.3s;
}

.navbar-nav .dropdown-item {
    padding: 8px 20px;
    color: var(--dark-color);
    transition: var(--transition);
    font-weight: 500;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
}

.navbar-nav .btn-ppdb {
    background-color: var(--accent-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-left: 10px;
    transition: var(--transition);
}

.navbar-nav .btn-ppdb:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 2px solid var(--primary-color);
    transition: all 300ms linear;
}

.navbar-toggler-icon:after, 
.navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 2px;
    background-color: var(--primary-color);
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
    background-color: var(--primary-color);
    height: 2px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
    background-color: var(--primary-color);
    height: 2px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-color: var(--primary-color);
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

.hero-slider {
    height: 100%;
    overflow: hidden;
}

.hero-slider .item {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider .item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 0;
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
    z-index: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    max-height: 70vh;
    overflow: visible;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: #fff;
    animation: fadeInDown 1s;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 30px;
    animation: fadeInUp 1s;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 600px;
}

.hero-btn {
    display: inline-block;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 30px);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1.5s;
    transition: var(--transition);
    margin: 0 10px 10px 0;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.hero-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-btn.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.hero-btn.btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.hero-slider .owl-dots {
    position: absolute;
    bottom: clamp(30px, 8vh, 80px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-slider .owl-dot {
    width: clamp(10px, 2vw, 12px);
    height: clamp(10px, 2vw, 12px);
    margin: 0 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5) !important;
    transition: var(--transition);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.hero-slider .owl-dot.active {
    background-color: var(--secondary-color) !important;
    width: clamp(12px, 2.5vw, 15px);
    height: clamp(12px, 2.5vw, 15px);
}

.hero-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: clamp(16px, 3vw, 20px) !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .owl-nav button.owl-prev {
    left: clamp(10px, 3vw, 20px);
}

.hero-slider .owl-nav button.owl-next {
    right: clamp(10px, 3vw, 20px);
}

.hero-slider .owl-nav button:hover {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background-color: var(--light-color);
}

.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    height: 100%;
    display: flex;
    align-items: center;
}

.about-img:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 58, 108, 0.1);
    top: 0;
    left: 0;
    z-index: 1;
    transition: var(--transition);
}

.about-img img {
    transition: var(--transition);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-img:hover:before {
    background-color: rgba(26, 58, 108, 0);
}

/* About Video Styling */
.about-video {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    height: 100%;
    display: flex;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 10px;
}

.youtube-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: var(--transition);
}

.about-video:hover .youtube-embed {
    transform: scale(1.02);
}

.about-content {
    padding: 30px 0;
}

.about-content h2 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
    font-size: 2.2rem;
}

.about-content h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

.about-feature-item {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 220px; /* PERUBAHAN: Menetapkan tinggi yang tetap dan pas */
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.about-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.about-feature-item i {
    color: var(--secondary-color);
    font-size: 36px;
    margin-bottom: 15px;
    display: inline-block;
}

.about-feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    width: 100%;
}

.about-feature-item p {
    font-size: 0.95rem;
    color: var(--gray-color);
    margin-bottom: 0;
    line-height: 1.6;
    display: block;
    width: 100%;
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(248, 180, 0, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.about-btn {
    margin-top: 30px;
}

.about-counter {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.about-counter .counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.about-counter p {
    margin-bottom: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsif untuk About Section */
@media (max-width: 991px) {
    .about-img {
        margin-bottom: 30px;
    }
    
    .about-content {
        padding-top: 0;
    }
    
    .about-feature-item {
        margin-bottom: 20px;
        height: auto; /* PERUBAHAN: Mengembalikan ke tinggi otomatis di layar kecil */
    }
}

@media (max-width: 767px) {
    .about-feature-item {
        width: 100%;
        padding: 15px;
    }
    
    .about-feature-item h4 {
        font-size: 1.1rem;
    }
    
    .about-feature-item p {
        font-size: 0.9rem;
    }
    
    .about-counter {
        margin-bottom: 20px;
    }
}

/* ===== COUNTER SECTION ===== */
.counter-section {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: #fff;
    position: relative;
    overflow: hidden; /* Menambahkan overflow hidden untuk kerapian */
}

.counter-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.07;
}

.counter-box {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.counter-box i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: inline-block;
}

.counter-box .counter {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    color: #fff;
}

.counter-box p {
    font-size: 16px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== PROGRAM SECTION ===== */
.program-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.program-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    transition: var(--transition);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.program-img:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.program-card:hover .program-img:before {
    opacity: 1;
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-img img {
    transform: scale(1.1);
}

.program-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.program-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.program-content {
    padding: 25px;
    background-color: #fff;
    position: relative;
}

.program-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    top: -30px;
    right: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.program-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.program-card:hover .program-content h3 {
    color: var(--secondary-color);
}

.program-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.program-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    transition: var(--transition);
}

.program-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    background-color: #fff;
    padding: 80px 0;
}

.testimonial-carousel {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    margin: 0 15px;
    position: relative;
    transition: all 0.3s ease;
    height: 500px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-item:after {
    content: '\f10e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 20px;
    text-align: center;
    overflow-y: auto;
    max-height: 180px;
    padding-right: 10px;
    min-height: 120px;
}

.testimonial-content::-webkit-scrollbar {
    width: 6px;
}

.testimonial-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.testimonial-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.testimonial-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.testimonial-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    padding: 25px 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.08);
    min-height: 140px;
    position: relative;
}

.testimonial-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 18px;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15), 0 0 0 2px rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-img::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #007bff, #0056b3);
    z-index: -1;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-img:hover img {
    transform: scale(1.05);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
    color: #555;
    line-height: 1.7;
    text-align: center;
    font-size: 15px;
}

.testimonial-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 18px;
    letter-spacing: 0.3px;
    position: relative;
}

.testimonial-name::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 1px;
}

.testimonial-position {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 0;
    font-weight: 500;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #495057;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-position:hover {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-nav {
    margin-top: 30px;
    text-align: center;
}

.owl-carousel .owl-nav button {
    background: #007bff !important;
    color: white !important;
    border-radius: 50% !important;
    width: 45px !important;
    height: 45px !important;
    margin: 0 10px !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.owl-carousel .owl-nav button:hover {
    background: #0056b3 !important;
    transform: scale(1.1) !important;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background: #007bff;
    transform: scale(1.2);
}

.owl-carousel .owl-dots .owl-dot:hover span {
    background: #007bff;
}

.testimonial-role {
    font-size: 14px;
    color: var(--gray-color);
}

.owl-carousel .owl-stage-outer {
    padding: 20px 0;
}

.owl-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    transition: var(--transition);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -50px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -50px;
}

.owl-carousel .owl-nav button:hover {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel .owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #ddd !important;
    transition: var(--transition);
}

.owl-carousel .owl-dot.active {
    background-color: var(--primary-color) !important;
    width: 12px;
    height: 12px;
}

/* ===== PRESTASI SECTION ===== */
.prestasi-section {
    position: relative;
    overflow: hidden;
    background-color: var(--light-color);
    padding: 80px 0;
}

.prestasi-item {
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.prestasi-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.prestasi-img {
    position: relative;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}

.prestasi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.prestasi-item:hover .prestasi-img img {
    transform: scale(1.1);
}

.prestasi-content {
    padding: 25px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.prestasi-date {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 20px;
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prestasi-content h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.prestasi-item:hover .prestasi-content h3 {
    color: var(--secondary-color);
}

.prestasi-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
    overflow-y: auto;
    flex: 1;
    max-height: 120px;
    line-height: 1.6;
    padding-right: 10px;
    margin-right: 5px;
    /* Hide scrollbar but keep scrolling functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.prestasi-content p::-webkit-scrollbar {
    display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}

.prestasi-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prestasi-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Modal Date Info Styling */
.prestasi-modal-date-info {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 8px 16px;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 20px;
    display: inline-block;
}

/* News Modal Meta Container */
.news-modal-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* News Modal Author Styling */
.news-modal-author {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 15px;
    display: inline-block;
}

/* News Item Cursor */
.news-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

/* Prestasi Modal Styles */
.prestasi-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.prestasi-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.prestasi-modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    max-width: 950px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.prestasi-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.prestasi-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prestasi-modal-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.prestasi-modal-image {
    position: relative;
    max-height: 500px;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.prestasi-modal-image img {
    max-width: 100%;
    max-height: 500px;
    min-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.prestasi-modal-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.prestasi-modal-text {
    padding: 40px;
    flex: 1;
    overflow-y: auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.prestasi-modal-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 0 2px 2px 0;
}

.prestasi-modal-text h2 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.prestasi-modal-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.prestasi-modal-text p {
    color: #555;
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
    text-align: left;
    padding-left: 20px;
    font-weight: 400;
    letter-spacing: 0.3px;
    max-height: 200px; /* Set max height for description */
    overflow-y: auto; /* Enable scrolling for long descriptions */
    padding-right: 10px; /* Add padding for scrollbar */
}

/* Custom scrollbar for modal description */
.prestasi-modal-text p::-webkit-scrollbar {
    width: 6px;
}

.prestasi-modal-text p::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.prestasi-modal-text p::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.prestasi-modal-text p::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .prestasi-modal {
        padding: 10px;
    }
    
    .prestasi-modal-content {
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .prestasi-modal-image {
        max-height: 350px;
        min-height: 200px;
    }
    
    .prestasi-modal-text {
        padding: 25px;
    }
    
    .prestasi-modal-text h2 {
        font-size: 26px;
        padding-left: 15px;
    }
    
    .prestasi-modal-text h2::after {
        left: 15px;
        width: 40px;
    }
    
    .prestasi-modal-text p {
        font-size: 15px;
        padding-left: 15px;
    }
    
    .prestasi-modal-text::before {
        height: 50px;
    }
    
    .prestasi-modal-body {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .prestasi-modal-body {
        flex-direction: row;
        height: auto;
    }
    
    .prestasi-modal-image {
        width: 50%;
        height: 500px;
    }
    
    .prestasi-modal-text {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Menambahkan style untuk popup prestasi */
.prestasi-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.prestasi-popup.active {
    opacity: 1;
    visibility: visible;
}

.prestasi-popup-content {
    background-color: #fff;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.prestasi-popup.active .prestasi-popup-content {
    transform: scale(1);
}

.prestasi-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prestasi-popup-close:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.prestasi-popup-img {
    margin-bottom: 20px;
}

.prestasi-popup-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.prestasi-popup-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.prestasi-popup-date {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.prestasi-popup-desc {
    color: var(--gray-color);
    line-height: 1.8;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
}

.view-all-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.gallery-item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
}

.gallery-item:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-img {
    height: 280px;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-description {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

.gallery-zoom-icon {
    background: #f39c12;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 30px;
}

.gallery-icon {
    width: 60px;
    height: 60px;
    background-color: #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.gallery-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.gallery-title h5 {
    margin: 0;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1.1);
    background-color: #e74c3c;
}

.gallery-item:hover .gallery-zoom-icon {
    transform: scale(1.1);
    background-color: #e74c3c;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(rgba(26, 58, 108, 0.9), rgba(26, 58, 108, 0.9)), url('../images/cta-bg.jpg') center/cover no-repeat fixed;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cta-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.contact-info-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    transition: var(--transition);
    height: 100%;
}

.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
    transition: var(--transition);
}

.contact-info-box:hover .contact-info-icon {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.contact-info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-info-content p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.contact-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 0;
    position: relative;
}

.map-container {
    height: 400px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: #fff;
    position: relative;
}

.footer-top {
    padding: 80px 0 30px;
    position: relative;
}

.footer-top:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 60px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-newsletter {
    margin-bottom: 30px;
}

.footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-newsletter h4:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-newsletter form {
    position: relative;
}

.footer-newsletter input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 30px;
    color: #fff;
    margin-bottom: 10px;
}

.footer-newsletter input[type="email"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.footer-newsletter input[type="submit"] {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter input[type="submit"]:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.footer-map {
    margin-bottom: 30px;
}

.footer-map h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-map h4:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-map .map-container {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-map .map-container iframe {
    width: 100%;
    height: 600px;
    border: 0;
    transition: var(--transition);
}

.footer-map .map-container:hover iframe {
    transform: scale(1.02);
}

.footer-map p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    text-align: center;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.copyright a {
    color: var(--secondary-color);
    font-weight: 600;
}

.copyright a:hover {
    color: #fff;
}

/* ===== 404 PAGE ===== */
.error-section {
    padding: 100px 0;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-img {
    max-width: 300px;
    margin-bottom: 30px;
}

.error-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.error-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.error-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.error-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    background: linear-gradient(rgba(26, 58, 108, 0.8), rgba(26, 58, 108, 0.8)), url('../images/breadcrumb-bg.jpg') center/cover no-repeat;
    padding: 80px 0;
    position: relative;
}

.breadcrumb-content {
    text-align: center;
    color: #fff;
}

.breadcrumb-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--secondary-color);
}

.breadcrumb-nav span {
    color: var(--secondary-color);
    margin: 0 10px;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid #eee;
    font-weight: 600;
    transition: var(--transition);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* ===== ANIMATIONS ===== */
/* Animate.css Integration */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -50px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .owl-carousel .owl-nav button.owl-prev {
        left: -20px;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        right: -20px;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .navbar-nav {
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link:before {
        display: none;
    }
    
    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: none;
        padding: 0 0 0 15px; /* Menambahkan padding kiri untuk indentasi */
        margin: 0;
        background-color: transparent;
        border-radius: 0;
        animation: none;
    }
    
    .navbar-nav .btn-ppdb {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-section,
    .hero-slider .item {
        height: 70vh; /* Mengurangi tinggi pada tampilan tablet */
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .counter-box {
        margin-bottom: 30px;
    }
    
    .owl-carousel .owl-nav button.owl-prev {
        left: 0;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        right: 0;
    }
    
    .footer-info, 
    .footer-links, 
    .footer-newsletter {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .navbar-brand img {
        max-width: 150px; /* Mengurangi ukuran logo pada tampilan mobile */
    }
    
    .navbar-nav .btn-ppdb {
        display: inline-block;
        margin: 10px 0;
        text-align: center;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .top-bar {
        display: none;
    }
    
    .hero-section,
    .hero-slider .item {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .hero-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-item {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .contact-info-box {
        margin-bottom: 20px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .breadcrumb-content h2 {
        font-size: 1.8rem;
    }
    
    .error-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .section-title h2:after {
        width: 70%;
        left: 15%;
    }
    
    .hero-section,
    .hero-slider .item {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero-content p {
        margin-bottom: 20px;
    }
    
    .hero-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .about-content h2 {
        font-size: 1.6rem;
    }
    
    .counter-box .counter {
        font-size: 30px;
    }
    
    .counter-box p {
        font-size: 14px;
    }
    
    .program-content h3,
    .news-content h3 {
        font-size: 1.2rem;
    }
    
    .testimonial-item {
        padding: 15px;
    }
    
    .testimonial-img {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-name {
        font-size: 16px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-info-content h4 {
        font-size: 1.1rem;
    }
    
    .footer-top {
        padding: 50px 0 20px;
    }
    
    .footer-links h4,
    .footer-newsletter h4 {
        margin-top: 20px;
        font-size: 1.1rem;
    }
    
    .footer-social a {
        margin-right: 5px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .copyright,
    .footer-bottom .footer-links {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .breadcrumb-content h2 {
        font-size: 1.6rem;
    }
    
    .error-content h2 {
        font-size: 1.8rem;
    }
    
    .pagination .page-link {
        width: 35px;
        height: 35px;
    }
}

/* ===== MAGNIFIC POPUP CUSTOM STYLES ===== */
.mfp-bg {
    background: rgba(0, 0, 0, 0.9);
}

.mfp-figure {
    max-width: 90vw;
    max-height: 90vh;
    margin: auto;
}

.mfp-img {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
}

.mfp-figure img {
    max-width: 200% !important;
    max-height: 200% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    transform-origin: center center;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
    .mfp-figure {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .mfp-figure img {
        max-width: 180% !important;
        max-height: 180% !important;
    }
}

@media (max-width: 480px) {
    .mfp-figure {
        max-width: 98vw;
        max-height: 80vh;
    }
    
    .mfp-figure img {
        max-width: 160% !important;
        max-height: 160% !important;
    }
}

/* Enhanced popup controls */
.mfp-close {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.mfp-close:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.mfp-arrow {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.mfp-arrow:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.mfp-arrow:before {
    color: #333;
    font-size: 20px;
}

.mfp-arrow:hover:before {
    color: white;
}

.mfp-counter {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 10px;
}

/* ===== NEWS SECTION ===== */
.news-section {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    padding: 80px 0;
}

.news-item {
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-img {
    position: relative;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-item:hover .news-img img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.news-date {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 20px;
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.news-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.news-item:hover .news-content h3 a {
    color: var(--secondary-color);
}

.news-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
    overflow-y: auto;
    flex: 1;
    max-height: 120px;
    line-height: 1.6;
    padding-right: 10px;
    margin-right: 5px;
    /* Hide scrollbar but keep scrolling functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.news-content p::-webkit-scrollbar {
    display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: var(--gray-color);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: var(--secondary-color);
}

/* News Section Responsive */
@media (max-width: 768px) {
    .news-item {
        height: auto;
        min-height: 400px;
    }
    
    .news-content h3 {
        font-size: 1.1rem;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

/* ===== HERO SECTION RESPONSIVE ===== */
/* Tablet */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-slider .item {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-content {
        width: 90%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        margin: 0 8px 8px 0;
    }
    
    .hero-slider .owl-dots {
        bottom: 60px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-slider .item {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content {
        width: 95%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .hero-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
        margin: 0 5px 8px 0;
        letter-spacing: 0.5px;
    }
    
    .hero-slider .owl-dots {
        bottom: 40px;
    }
    
    .hero-slider .owl-dot {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
    
    .hero-slider .owl-dot.active {
        width: 12px;
        height: 12px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero-section {
        height: 55vh;
        min-height: 350px;
    }
    
    .hero-slider .item {
        height: 55vh;
        min-height: 350px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero-content p {
        font-size: 0.8rem;
        margin-bottom: 18px;
    }
    
    .hero-btn {
        padding: 7px 18px;
        font-size: 0.75rem;
        margin: 0 3px 6px 0;
    }
    
    .hero-slider .owl-dots {
        bottom: 30px;
    }
}

/* ===== GENERAL MOBILE RESPONSIVENESS ===== */

/* Program Section Responsive */
@media (max-width: 768px) {
    .program-section {
        padding: 60px 0;
    }
    
    .program-card {
        margin-bottom: 20px;
    }
    
    .program-img {
        height: 180px;
    }
    
    .program-content {
        padding: 20px;
    }
    
    .program-content h3 {
        font-size: 1.3rem;
    }
    
    .program-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        top: -25px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .program-section {
        padding: 40px 0;
    }
    
    .program-img {
        height: 160px;
    }
    
    .program-content {
        padding: 15px;
    }
    
    .program-content h3 {
        font-size: 1.2rem;
    }
    
    .program-content p {
        font-size: 0.9rem;
    }
}

/* Testimonial Section Responsive */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 0;
    }
    
    .testimonial-item {
        height: 450px;
        margin: 0 10px;
        padding: 20px;
    }
    
    .testimonial-content {
        max-height: 150px;
        font-size: 0.9rem;
    }
    
    .testimonial-info {
        padding: 20px 15px;
        min-height: 120px;
    }
    
    .testimonial-img {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 40px 0;
    }
    
    .testimonial-item {
        height: 400px;
        margin: 0 5px;
        padding: 15px;
    }
    
    .testimonial-content {
        max-height: 120px;
        font-size: 0.85rem;
    }
    
    .testimonial-info {
        padding: 15px 10px;
        min-height: 100px;
    }
    
    .testimonial-img {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
}

/* Gallery Section Responsive */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-item {
        margin-bottom: 20px;
    }
    
    .gallery-img {
        height: 220px;
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .gallery-title {
        font-size: 1.1rem;
    }
    
    .gallery-description {
        font-size: 0.9rem;
    }
    
    .gallery-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-img {
        height: 180px;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .gallery-title {
        font-size: 1rem;
    }
    
    .gallery-description {
        font-size: 0.8rem;
    }
    
    .gallery-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .gallery-overlay {
        padding: 20px;
    }
}

/* Contact Section Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-box {
        margin-bottom: 20px;
        padding: 25px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .contact-info-content h4 {
        font-size: 1.1rem;
    }
    
    .form-control {
        height: 45px;
        font-size: 13px;
    }
    
    textarea.form-control {
        height: 120px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info-box {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .contact-info-content h4 {
        font-size: 1rem;
    }
    
    .contact-info-content p {
        font-size: 0.9rem;
    }
    
    .form-control {
        height: 40px;
        font-size: 12px;
        padding: 8px 12px;
    }
    
    textarea.form-control {
        height: 100px;
    }
    
    .contact-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Counter Section Responsive */
@media (max-width: 768px) {
    .counter-section {
        padding: 50px 0;
    }
    
    .counter-box {
        margin-bottom: 30px;
    }
    
    .counter-box h3 {
        font-size: 2.5rem;
    }
    
    .counter-box p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .counter-section {
        padding: 40px 0;
    }
    
    .counter-box {
        margin-bottom: 25px;
    }
    
    .counter-box h3 {
        font-size: 2rem;
    }
    
    .counter-box p {
        font-size: 13px;
    }
}

/* Prestasi Section Responsive */
@media (max-width: 768px) {
    .prestasi-section {
        padding: 60px 0;
    }
    
    .prestasi-item {
        margin-bottom: 20px;
    }
    
    .prestasi-img {
        height: 200px;
    }
    
    .prestasi-content {
        padding: 20px;
    }
    
    .prestasi-content h3 {
        font-size: 1.2rem;
    }
    
    .prestasi-meta {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .prestasi-section {
        padding: 40px 0;
    }
    
    .prestasi-img {
        height: 180px;
    }
    
    .prestasi-content {
        padding: 15px;
    }
    
    .prestasi-content h3 {
        font-size: 1.1rem;
    }
    
    .prestasi-content p {
        font-size: 0.9rem;
    }
    
    .prestasi-meta {
        font-size: 0.75rem;
    }
}

/* CTA Section Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .cta-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* Map Section Responsive */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .map-container {
        height: 250px;
    }
}

/* Hero Section Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 600px;
        overflow: hidden;
    }
    
    .hero-slider {
        height: 100%;
        overflow: hidden;
    }
    
    .hero-slider .item {
        height: 100vh;
        min-height: 600px;
        padding-top: 0;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: none;
        padding: clamp(15px, 4vw, 30px);
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        height: auto;
        max-height: 80vh;
        overflow: visible;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: clamp(10px, 3vw, 20px);
        line-height: 1.2;
        max-width: 100%;
        width: 100%;
        word-wrap: break-word;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content p {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: clamp(15px, 4vw, 25px);
        line-height: 1.4;
        max-width: 100%;
        width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btn {
        padding: clamp(8px, 2.5vw, 12px) clamp(16px, 5vw, 24px);
        font-size: clamp(0.8rem, 3vw, 1rem);
        margin: clamp(5px, 1.5vw, 10px) auto;
        white-space: nowrap;
        display: inline-block;
        text-align: center;
    }
    
    .hero-slider .owl-dots {
        bottom: 60px;
    }
    
    .hero-slider .owl-nav button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .hero-slider .owl-nav button.owl-prev {
        left: 15px;
    }
    
    .hero-slider .owl-nav button.owl-next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 100vh;
        min-height: 600px;
        overflow: hidden;
    }
    
    .hero-slider {
        height: 100%;
        overflow: hidden;
    }
    
    .hero-slider .item {
        height: 100vh;
        min-height: 600px;
        padding-top: 0;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: none;
        padding: clamp(15px, 4vw, 30px);
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        height: auto;
        max-height: 80vh;
        overflow: visible;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
        margin-bottom: clamp(8px, 2.5vw, 15px);
        line-height: 1.1;
        max-width: 100%;
        width: 100%;
        word-wrap: break-word;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content p {
        font-size: clamp(0.8rem, 4vw, 1rem);
        margin-bottom: clamp(12px, 3.5vw, 20px);
        line-height: 1.4;
        max-width: 100%;
        width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btn {
        padding: clamp(6px, 2vw, 10px) clamp(12px, 4vw, 20px);
        font-size: clamp(0.7rem, 3.5vw, 0.9rem);
        margin: clamp(3px, 1vw, 8px) auto;
        display: inline-block;
        width: auto;
        white-space: nowrap;
        text-align: center;
    }
    
    .hero-slider .owl-dots {
        bottom: 40px;
    }
    
    .hero-slider .owl-dot {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
    
    .hero-slider .owl-dot.active {
        width: 12px;
        height: 12px;
    }
    
    .hero-slider .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-slider .owl-nav button.owl-prev {
        left: 10px;
    }
    
    .hero-slider .owl-nav button.owl-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 100vh;
        min-height: 600px;
        overflow: hidden;
    }
    
    .hero-slider {
        height: 100%;
        overflow: hidden;
    }
    
    .hero-slider .item {
        height: 100vh;
        min-height: 600px;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: none;
        padding: clamp(10px, 3vw, 25px);
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        height: auto;
        max-height: 85vh;
        overflow: visible;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: clamp(1.3rem, 8vw, 2rem);
        margin-bottom: clamp(6px, 2vw, 12px);
        line-height: 1.1;
        max-width: 100%;
        width: 100%;
        word-wrap: break-word;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content p {
        font-size: clamp(0.75rem, 3.5vw, 0.9rem);
        margin-bottom: clamp(10px, 3vw, 18px);
        line-height: 1.3;
        max-width: 100%;
        width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btn {
        padding: clamp(5px, 1.5vw, 8px) clamp(10px, 3vw, 18px);
        font-size: clamp(0.65rem, 3vw, 0.8rem);
        margin: clamp(2px, 0.8vw, 6px) auto;
        display: inline-block;
        width: auto;
        white-space: nowrap;
        text-align: center;
    }
    
    .hero-btn {
        padding: 7px 18px;
        font-size: 0.75rem;
        margin: 0 3px 6px 0;
        letter-spacing: 0.5px;
    }
    
    .hero-slider .owl-dots {
        bottom: 30px;
    }
    
    .hero-slider .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .hero-slider .owl-nav button.owl-prev {
        left: 8px;
    }
    
    .hero-slider .owl-nav button.owl-next {
        right: 8px;
    }
}