* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #000;
    /* Mencegah highlight biru saat klik di mobile */
    -webkit-tap-highlight-color: transparent; 
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; }
p { font-weight: 300; }

/* ===== NAVBAR ===== */
.navbar {
    width: 100%;
    background: transparent;
    z-index: 999;
    position: absolute;
    top: 20px;
    left: 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #1D1D1D;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 60px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    width: 90%;
}

.logo img {
    height: 50px;
    display: block;
    filter: brightness(0) invert(1);
}

/* ===== MENU DESKTOP ===== */
.nav-menu {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-menu a, .dropbtn {
    text-decoration: none;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
}

.nav-menu a:hover, 
.nav-menu a.active, 
.dropdown:hover .dropbtn {
    background-color: #ffffff;
    color: #1d1d1d !important;
}

/* Dropdown Desktop */
.dropdown { position: relative; padding: 10px 0; }
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; 
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    min-width: 180px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 100;
}
.dropdown-content a {
    color: #1d1d1d !important;
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid #f0f0f0;
}
.dropdown:hover .dropdown-content { display: block; }

/* ===== HAMBURGER ICON (Fixed) ===== */
.hamburger {
    display: none;
    color: #ffffff !important; /* Warna Putih */
    font-size: 24px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.hamburger i {
    color: #ffffff !important; /* Memastikan ikon FontAwesome putih */
}

/* ===== MOBILE OVERLAY ===== */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9998;
}
.nav-overlay.active { display: block; }

/* ===== RESPONSIVE MOBILE (Max 900px) ===== */
@media (max-width: 900px) {
    .hamburger { display: block; }
    .close-menu { display: block !important; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Sembunyi di kanan */
        width: 280px;
        height: 100vh;
        background: #1D1D1D;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-menu.active { right: 0; }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 25px;
        color: white;
        font-size: 30px;
        cursor: pointer;
        display: none; /* Default none, block di mobile */
    }

    .nav-menu a, .dropdown, .dropbtn {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
        border-radius: 10px;
    }

    /* Mobile Dropdown */
    .dropdown-content {
        position: static;
        display: none;
        transform: none;
        background: rgba(255,255,255,0.05);
        box-shadow: none;
        width: 100%;
    }
    .dropdown.open .dropdown-content { display: block; }
    .dropdown-content a { color: #ffffff !important; padding-left: 30px; }
}
/* SECTION PEMBUKA */
.pembuka {
    position: relative;
    width: 100%;
    min-height: 70vh;
    padding: 80px 0;
    background-image: url("img/mariakatolikimageperatama.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;        /* tengah vertikal */
    justify-content: center;    /* tengah horizontal */
}

.pembuka-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}


.pembuka::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.pembuka-text,
.pembuka-image {
    position: relative;
    z-index: 2;
}

.pembuka-text h1,
.pembuka-text p {
    color: #fff;
}

.pembuka-text h1 {
    font-size: 40px;
    line-height: 1.3;
}

.pembuka-text h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pembuka-text p {
    margin-bottom: 25px;
    font-size: 16px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.pembuka-image img {
    width: 100%;
    border-radius: 6px;
}

.dropdown-content.show {
    display: block;
}

/* TENTANG */
.tentang {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
    text-align: center;
}

.tentang h2 {
    font-size: 34px;
}

.subtitle {
    font-weight: 500;
    margin-bottom: 40px;
    font-size: 24px;
}

.tentang-content {
    max-width: 900px;
    margin: auto;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    margin-bottom: 30px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.tentang-text {
    font-size: 16px;
}

@media (max-width: 900px) {
    .pembuka {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ===== INFORMASI LEMBAGA ===== */

.tentang-lembaga-wrapper {
    margin-top: 70px;
}

.tentang-lembaga-title {
    font-size: 28px;
    margin-bottom: 40px;
}

.tentang-lembaga-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tentang-lembaga-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 1 / 1;
}

.tentang-lembaga-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tentang-lembaga-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 15px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.3),
        rgba(0,0,0,0)
    );
    opacity: 1;
    transition: 0.3s ease;
}

.lembaga-nama {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.lembaga-desc {
    font-size: 13px;
    line-height: 1.4;
    color: white;
}

/* HOVER */
.tentang-lembaga-card:hover .tentang-lembaga-overlay {
    opacity: 1;
}

.tentang-lembaga-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {

    .tentang-lembaga-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tentang-lembaga-overlay {
        opacity: 1;
        background: rgba(0,0,0,0.6);
    }

    .tentang-lembaga-card img {
        transform: none;
    }
}

@media (max-width: 480px) {
    .tentang-lembaga-grid {
        grid-template-columns: 1fr;
    }
}

.mkd-section-separator {
    width: 100%;
    height: 1px;
    background: #dcdcdc;
    margin: 80px 0;
}

.mkd-section-ppdb {
    position: relative;
    width: 100%;
    min-height: 420px;
    background-image: url('img/mariakatolikparalax.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkd-ppdb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.mkd-ppdb-content {
    position: relative;
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
    color: #fff;
}

.mkd-ppdb-content h2 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.mkd-ppdb-content h3 {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.mkd-ppdb-content p {
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.7;
    color: #fff;
}

.mkd-ppdb-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.mkd-btn {
    text-decoration: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px; 
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

.mkd-btn-dark {
    background: linear-gradient(135deg, #000328 0%, #000DAE 100%);
    color: #fff;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mkd-btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 13, 174, 0.3);
}


.mkd-btn-outline {
    background-color: transparent;
    color: #ffffff; 
    border: 1px solid rgba(253, 253, 253, 0.3); 
}

.mkd-btn-outline:hover {
    background-color: rgba(0,0,0,0.05);
    border-color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .mkd-ppdb-buttons {
        flex-direction: column; 
        width: 100%;
        padding: 0 40px;
    }
    
    .mkd-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== PRESTASI ===== */
.mkd-section-prestasi {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
    text-align: center;
}

.mkd-prestasi-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.mkd-prestasi-desc {
    max-width: 650px;
    margin: 0 auto 50px;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.mkd-prestasi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Card Styling */
.mkd-prestasi-card {
    background: #00aaff; 
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left; 
}

.mkd-prestasi-img-container {
    overflow: hidden;
}

.mkd-prestasi-card img {
    width: 100%;
    aspect-ratio: 4 / 3; 
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.mkd-prestasi-content {
    padding: 20px;
}

.mkd-card-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: #000328;
    font-weight: 600;
}

.mkd-card-text {
    font-size: 14px;
    color: #000328;
    line-height: 1.5;
}

.mkd-btn-prestasi {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #000328 0%, #000DAE 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mkd-btn-prestasi:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 13, 174, 0.3);
}

@media (min-width: 901px) {
    .mkd-prestasi-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .mkd-prestasi-card:hover img {
        transform: scale(1.1);
    }
}

@media (max-width: 900px) {
    .mkd-prestasi-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SECTION BERITA ===== */
.mkd-section-berita {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

.mkd-berita-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.mkd-berita-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.mkd-berita-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.mkd-berita-card {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mkd-berita-card.reverse {
    flex-direction: row-reverse;
}

.mkd-berita-info {
    flex: 1;
}

.mkd-berita-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.mkd-berita-info p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.mkd-berita-image {
    flex: 1;
}

.mkd-berita-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

.mkd-btn-baca {
    display: inline-block;
    padding: 8px 25px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
}
.mkd-berita-footer {
    text-align: center;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .mkd-section-berita {
        padding: 40px 15px;
    }

    .mkd-berita-title {
        font-size: 24px;
    }

    .mkd-berita-subtitle {
        margin-bottom: 40px;
    }

    .mkd-berita-container {
        gap: 40px;
    }

    .mkd-berita-card, 
    .mkd-berita-card.reverse {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .mkd-berita-info {
        text-align: center;
    }

    .mkd-berita-info h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .mkd-berita-info p {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .mkd-berita-image img {
        height: 250px;
    }

    .mkd-berita-footer {
        margin-top: 50px;
    }
}

/* ===== PRESTASI SECTION ===== */
.mkd-btn-prestasi {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #000328 0%, #000DAE 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mkd-btn-prestasi:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 13, 174, 0.4);
}


/* ===== LINKTREE SECTION ===== */
.mkd-linktree-section {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

.mkd-linktree-header {
    text-align: center;
    margin-bottom: 50px;
}

.mkd-linktree-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.mkd-linktree-subtitle {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.6;
}

.mkd-linktree-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.mkd-link-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); 
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.mkd-link-card:hover {
    transform: translateY(-5px);
}

.mkd-link-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.mkd-card-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mkd-linktree-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.mkd-linktree-item:hover {
    color: #000DAE;
}

.mkd-linktree-footer {
    text-align: center;
    margin-top: 40px;
}

.mkd-linktree-footer h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
}

.mkd-qr-wrapper {
    margin: 25px auto;
    background: #f9f9f9;
    padding: 15px;
    width: fit-content;
    border-radius: 20px;
}

.mkd-qr-wrapper img {
    width: 220px; 
    display: block;
    border-radius: 10px;
}

.mkd-linktree-copy-text {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 15px;
}

.mkd-btn-gradient-link {
    display: inline-block;
    padding: 15px 50px;
    background: linear-gradient(135deg, #000328 0%, #000DAE 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mkd-btn-gradient-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 13, 174, 0.3);
}

.mkd-linktree-copy-status {
    display: block;
    margin-top: 10px;
    color: green;
    font-weight: bold;
}

@media (max-width: 992px) {
    .mkd-linktree-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mkd-linktree-grid {
        grid-template-columns: 1fr;
    }
    
    .mkd-linktree-title {
        font-size: 26px;
    }
}

/* ===== MAP SECTION ===== */
.mkd-map-section {
    position: relative;
    min-height: 500px;
    background-image: url('img/mariakatolikcardschool.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
}

.mkd-map-content {
    position: relative;
    width: 100%;
    max-width: 850px;
    z-index: 2;
    margin: 0 auto;
}

.mkd-map-card {
    background: linear-gradient(180deg, #000328 0%, #00074d 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.mkd-map-title {
    font-size: 36px; 
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.mkd-map-image-container {
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 35px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.mkd-map-image-container img {
    width: 100%;
    display: block;
    filter: brightness(0.9); 
}

.mkd-map-footer {
    display: flex;
    justify-content: center;
}

.mkd-map-button {
    display: inline-block;
    padding: 14px 45px;
    background: #ffffff;
    color: #000328; 
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px; 
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mkd-map-button:hover {
    transform: translateY(-3px) scale(1.05);
    background: #f0f0f0;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .mkd-map-card {
        padding: 25px;
    }
    
    .mkd-map-title {
        font-size: 26px;
    }
    
    .mkd-map-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid #eaeaea;
    margin-top: 50px;
}

.mkd-footer {
    background: #0f1115; 
    color: #ffffff;
    margin-top: 0px;
}

.mkd-footer-inner {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px 50px;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 50px;
    align-items: center;
}

.mkd-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mkd-footer-logo {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkd-footer-logo img {
    max-width: 85%;
}

.mkd-footer-tagline {
    font-size: 16px;
    line-height: 1.6;
    max-width: 420px;
    color: white;
}

.mkd-footer-divider {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
}

.mkd-footer-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mkd-footer-card h4 {
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
}

.mkd-footer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: white;
}

.mkd-footer-item i {
    font-size: 18px;
    margin-top: 2px;
    color: white;
}

.mkd-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 25px 20px;
    text-align: center;
    font-size: 14px;
    color: white;
}

@media (max-width: 900px) {

    .mkd-footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mkd-footer-divider {
        width: 100%;
        height: 1px;
    }

    .mkd-footer-contact {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mkd-footer-logo {
        width: 120px;
        height: 120px;
    }

    .mkd-footer-tagline {
        font-size: 15px;
    }

    .mkd-footer-bottom {
        font-size: 12px;
    }
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    background-color: #25D366; 
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 1000;
}

.floating-whatsapp:hover {
    background-color: #36e97d;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 26px;
        right: 16px;
        bottom: 16px;
    }
}

/* ===== VISI MISI ===== */
.smp-visimisi-section {
    padding: 80px 20px;
    background: #ffffff; 
}

.smp-visimisi-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px; 
}

.smp-visimisi-card {
    background: linear-gradient(180deg, #149ee3 0%, #15506e 100%);
    padding: 50px 40px; 
    border-radius: 15px; 
    color: #ffffff; 
    box-shadow: 0 15px 35px rgba(0, 3, 40, 0.2);
}

.smp-visimisi-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #ffffff; 
}

.smp-visimisi-highlight {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #ffffff; 
}

.smp-visimisi-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #ffffff; 
}

.smp-visimisi-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9; 
    color: #ffffff; 
}

.smp-visimisi-list li::before {
    content: "•"; 
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-size: 20px;
}

@media (max-width: 900px) {
    .smp-visimisi-container {
        grid-template-columns: 1fr;
    }
    
    .smp-visimisi-card {
        padding: 40px 30px;
    }
}

