* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Header */
header {
    background: linear-gradient(135deg, #1e7e34, #28a745);
    padding: 20px 0;
    text-align: center;
    color: white;
}

.logo img {
    width: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid white;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 5px 0;
}

.logo span {
    font-size: 2rem;
    font-weight: 700;
    color: #ffc107;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #28a745, #2ecc71);
    padding: 40px 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    text-align: center; /* 🔥 RATA TENGAH SEMUA TEKS */
    max-width: 500px;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content h1 span {
    color: #dc3545;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 15px 0;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffc107;
    margin-top: 20px;
    letter-spacing: 1px;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid white;
}

/* Registration Box */
.registration {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}

.reg-box {
    max-width: 600px;
    margin: 0 auto;
    background: #f1f8e9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #28a745;
}

.reg-box h3 {
    font-size: 1.5rem;
    color: #dc3545;
    margin-bottom: 20px;
    font-weight: 600;
}

.reg-info {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* Contact Section */
.contact {
    background: #e8f5e8;
    padding: 40px 20px;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 30px;
    position: relative;
}

.contact h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #dc3545;
    margin: 15px auto;
    border-radius: 2px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item span {
    font-weight: 600;
    color: #333;
}

.contact-item a {
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.2s;
}

.contact-item a:hover {
    background: #28a745;
    color: white;
}

/* Map Section */
.map-section {
    background: #fff;
    padding: 40px 20px;
}

.map-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #dc3545;
    margin: 15px auto;
    border-radius: 2px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

/* Footer */
footer {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
}

footer p {
    margin: 10px 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 30px 15px;
    }

    .hero-content {
        width: 100%;
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h3 {
        font-size: 1.5rem;
    }

    .hero-image img {
        max-width: 90%;
        height: auto;
    }
}

    .reg-box {
        padding: 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-item a {
        margin-top: 10px;
    }
}
@media (max-width: 768px) {
    .maps-container {
        flex-direction: column;
    }

    .campus-map {
        width: 100%;
        padding: 20px;
    }

    .map-frame {
        height: 250px;
    }
}

/* Layout 2 Peta Berdampingan */
.maps-container {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.campus-map {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #28a745;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.campus-map h3 {
    font-size: 1.3rem;
    color: #28a745;
    margin-bottom: 15px;
    font-weight: 600;
}

.map-frame {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.address {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #555;
}

.whatsapp-btn.small {
    font-size: 0.95rem;
    padding: 8px 15px;
    margin-top: 10px;
}

/* ========= JUMBOTRON ========= */
.jumbotron {
    height: 80vh;
    background: url('https://via.placeholder.com/1920x1080?text=Background+PPMTQ') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.jumbotron-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    z-index: 1;
}

.jumbotron h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.jumbotron h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: #ffc107;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.btn-whatsapp-jumbo {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.btn-whatsapp-jumbo:hover {
    background: #128c7e;
    transform: scale(1.05);
}

/* ========= GALLERY / CAROUSEL ========= */
.gallery {
    padding: 40px 0 60px;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #dc3545;
    margin: 15px auto;
    border-radius: 2px;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: white;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.8);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

/* Responsif */
@media (max-width: 768px) {
    .jumbotron {
        height: 70vh;
        background-size: contain; /* Agar gambar tidak terlalu kecil di mobile */
    }

    .jumbotron h1 {
        font-size: 2rem;
    }

    .jumbotron h2 {
        font-size: 1.4rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .btn-whatsapp-jumbo {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
    .carousel-slide img {
        height: 300px;
    }
}

/* Header & Navbar */
header {
    background: linear-gradient(135deg, #1e7e34, #28a745);
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid white;
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: #ffc107;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    margin-left: 15px;
    font-weight: 500;
    transition: background 0.3s;
}

.navbar a:hover,
.navbar a.active {
    background: rgba(255,255,255,0.2);
}

/* Jumbotron dengan Background Gambar */
.jumbotron {
    height: 80vh;
    background: url('image/channels4_banner.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

/* Overlay semi-transparent hitam untuk kontras teks */
.jumbotron::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(70, 10, 2, 0.454); /* Transparansi 50% */
    z-index: 1;
}

.jumbotron-overlay {
    position: relative;
    z-index: 2;
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    text-shadow: 2px 2px 4px rgba(31, 32, 31, 0.317);
}

.jumbotron h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: white;
}

.jumbotron h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 15px 0;
    color: #ffc107;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffc107;
    margin-top: 20px;
    letter-spacing: 1px;
}

.btn-whatsapp-jumbo {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.btn-whatsapp-jumbo:hover {
    background: #128c7e;
    transform: scale(1.05);
}

/* ========= VISION & MISSION ========= */
.visi-misi {
    padding: 60px 0;
    background: #f8f9fa;
}

.visi-misi .section-title {
    text-align: center;
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 40px;
    position: relative;
}

.visi-misi .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #dc3545;
    margin: 15px auto;
    border-radius: 2px;
}

.visi-misi-content {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.visi-box,
.misi-box {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 5px solid #28a745;
}

.visi-box h3,
.misi-box h3 {
    font-size: 1.5rem;
    color: #1e7e34;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ffc107;
    display: inline-block;
    font-weight: 600;
}

.visi-box p,
.misi-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin: 0 0 20px 0;
    text-align: justify;
    hyphens: auto;
}

/* Daftar Indikator Visi */
.indikator-list {
    padding-left: 20px;
    margin: 0;
    list-style-type: none;
}

.indikator-list > li {
    font-weight: 600;
    color: #28a745;
    margin: 15px 0 10px;
    font-size: 1.1rem;
}

.sub-indikator {
    padding-left: 25px;
    margin: 5px 0;
    list-style-type: lower-alpha;
    line-height: 1.8;
}

.sub-indikator li {
    color: #555;
    font-size: 1.05rem;
    margin: 5px 0;
}

/* Daftar Misi */
.misi-list {
    padding-left: 20px;
    margin: 0;
    list-style-type: decimal;
    line-height: 1.8;
}

.misi-list li {
    color: #555;
    font-size: 1.05rem;
    margin: 12px 0;
}

/* Responsif */
@media (max-width: 768px) {
    .visi-misi-content {
        flex-direction: column;
    }

    .visi-box,
    .misi-box {
        padding: 25px;
    }

    .visi-box h3,
    .misi-box h3 {
        font-size: 1.4rem;
    }

    .visi-box p,
    .misi-box p,
    .indikator-list li,
    .sub-indikator li,
    .misi-list li {
        font-size: 1rem;
        line-height: 1.7;
    }

    .sub-indikator {
        padding-left: 20px;
    }
}

/* ========= PROMO VIDEO ========= */
.promo-video {
    margin-bottom: 40px;
}

.promo-video h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #28a745;
    margin-bottom: 20px;
}

.video-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

/* ========= BROSUR GALLERY ========= */
.brosur-gallery {
    margin-bottom: 40px;
}

.brosur-gallery h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #28a745;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.brosur-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.brosur-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.brosur-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-bottom: 3px solid #ffc107;
}

.caption {
    padding: 15px;
    font-size: 0.95rem;
    color: #555;
    text-align: center;
    background: #f8f9fa;
    font-weight: 500;
}

/* ========= ARTIKEL PAGE ========= */
.artikel-page {
    padding: 60px 0;
    background: #f8f9fa;
}

.artikel-page .section-title {
    text-align: center;
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 30px;
    position: relative;
}

.artikel-page .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #dc3545;
    margin: 15px auto;
    border-radius: 2px;
}

.poster-container {
    text-align: center;
    margin: 30px 0;
}

.poster-container img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #ffc107;
}

.program-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.program-info h3 {
    color: #1e7e34;
    margin: 25px 0 15px;
    font-size: 1.4rem;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 8px;
    display: inline-block;
}

.rekening-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.rekening-box {
    background: #f1f8e9;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #28a745;
    text-align: center;
}

.rekening-box h4 {
    font-size: 1.2rem;
    color: #28a745;
    margin-bottom: 10px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.contact-list .contact-item {
    background: #e8f5e8;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s;
}

.contact-list .contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-list .contact-item span {
    font-weight: 600;
    color: #333;
}

.contact-list .contact-item a {
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.2s;
}

.contact-list .contact-item a:hover {
    background: #28a745;
    color: white;
}