/* ==========================================
   PAGE
========================================== */

.tentang-page{
    padding:40px 0 60px;
    background:#f8fafc;
}

/* ==========================================
   HERO
========================================== */

.tentang-hero{
    background:linear-gradient(
        135deg,
        var(--primary),
        #1e40af
    );

    border-radius:24px;

    padding:50px;

    color:#fff;

    margin-bottom:30px;

    overflow:hidden;
    position:relative;
}

.tentang-hero::before{
    content:'';

    position:absolute;

    right:-80px;
    top:-80px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(255,255,255,.08);
}

.hero-content{
    max-width:700px;
    position:relative;
    z-index:2;
}

.hero-label{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 16px;

    border-radius:999px;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:13px;
    font-weight:600;

    margin-bottom:18px;
}

.hero-content h1{
    font-size:42px;
    font-weight:700;
    color:#fff;
    margin-bottom:14px;
}

.hero-content p{
    margin:0;
    color:rgba(255,255,255,.92);

    font-size:16px;
    line-height:1.8;
}

.hero-breadcrumb{
    margin-top:20px;
}

.hero-breadcrumb .breadcrumb-item,
.hero-breadcrumb .breadcrumb-item a{
    color:rgba(255,255,255,.85);
    text-decoration:none;
}

.hero-breadcrumb .breadcrumb-item.active{
    color:#fff;
}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before{
    color:rgba(255,255,255,.6);
}

/* ==========================================
   SECTION TITLE
========================================== */

.section-title{
    margin-bottom:24px;
}

.section-title h2{
    font-size:32px;
    font-weight:700;
    color:#1f2937;
    margin:0;
}

/* ==========================================
   PROFIL
========================================== */

.profil-card{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:35px;

    background:#fff;

    padding:35px;

    border-radius:20px;

    border:1px solid #e2e8f0;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    margin-bottom:35px;
}

.profil-image{
    overflow:hidden;
    border-radius:16px;
}

.profil-image img{
    width:100%;
    height:100%;
    min-height:350px;
    object-fit:cover;
}

.profil-content h2{
    font-size:30px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:20px;
}

.content-text{
    color:#475569;
    line-height:1.9;
}

/* ==========================================
   VISI MISI
========================================== */

.vm-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;

    margin-bottom:35px;
}

.vm-card{
    background:#fff;

    border-radius:20px;

    padding:30px;

    border:1px solid #e2e8f0;

    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.vm-card h2{
    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:18px;

    font-size:28px;
    font-weight:700;

    color:#1f2937;
}

.vm-card i{
    color:var(--primary);
}

/* ==========================================
   STRUKTUR
========================================== */

.struktur-card{
    background:#fff;

    border-radius:20px;

    overflow:hidden;

    border:1px solid #e2e8f0;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    margin-bottom:50px;
}

.struktur-card img{
    width:100%;
    display:block;
}

/* ==========================================
   FASILITAS
========================================== */

.fasilitas-grid{
    display:grid;

    grid-template-columns:
        repeat(auto-fill,minmax(320px,1fr));

    gap:25px;

    margin-bottom:60px;
}

.fasilitas-card{
    background:#fff;

    border-radius:20px;

    overflow:hidden;

    border:1px solid #e2e8f0;

    transition:.3s ease;

    box-shadow:0 6px 18px rgba(0,0,0,.04);
}

.fasilitas-card:hover{
    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(0,0,0,.08);
}

.fasilitas-image{
    height:230px;
    overflow:hidden;
}

.fasilitas-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:.4s;
}

.fasilitas-card:hover img{
    transform:scale(1.06);
}

.fasilitas-body{
    padding:22px;
}

.fasilitas-body h3{
    font-size:22px;
    font-weight:700;

    color:#1f2937;

    margin-bottom:10px;
}

.fasilitas-body p{
    color:#64748b;
    line-height:1.8;
}

/* ==========================================
   GALERI
========================================== */

.galeri-section{
    margin-bottom:50px;
}

.galeri-section h3{
    font-size:24px;
    font-weight:700;

    color:#1f2937;

    margin-bottom:20px;
}

.galeri-grid{
    display:grid;

    grid-template-columns:
        repeat(auto-fill,minmax(250px,1fr));

    gap:18px;
}

.galeri-item{
    display:block;

    overflow:hidden;

    border-radius:16px;

    background:#fff;

    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.galeri-item img{
    width:100%;
    height:220px;

    object-fit:cover;

    transition:.4s;
}

.galeri-item:hover img{
    transform:scale(1.08);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

    .profil-card{
        grid-template-columns:1fr;
    }

    .vm-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .tentang-page{
        padding:25px 0 50px;
    }

    .tentang-hero{
        padding:30px;
        margin-bottom:24px;
    }

    .hero-content h1{
        font-size:28px;
    }

    .section-title h2{
        font-size:28px;
    }

    .profil-content h2{
        font-size:26px;
    }

    .vm-card h2{
        font-size:24px;
    }

    .profil-card{
        padding:25px;
    }

}

.fasilitas-placeholder {
    width: 100%;
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;

    color: #94a3b8;
}

.fasilitas-placeholder i {
    font-size: 42px;
    margin-bottom: 12px;
}

.fasilitas-placeholder span {
    font-size: 14px;
    font-weight: 500;
}

.fasilitas-image img,
.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================
   PROSES BISNIS
========================================== */

.proses-bisnis-viewer{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    margin-bottom:50px;
}

.viewer-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:20px 24px;
    border-bottom:1px solid #e5e7eb;
}

.viewer-header h4{
    margin:0;
    font-size:20px;
    font-weight:700;
}

.viewer-header small{
    color:#64748b;
}

.proses-bisnis-viewer iframe{
    width:100%;
    height:900px;
    border:none;
    display:block;
}

/* PPT CARD */

.proses-bisnis-card{
    display:flex;
    align-items:center;
    gap:24px;

    background:#fff;

    border-radius:20px;

    padding:24px;

    border:1px solid #e5e7eb;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    margin-bottom:50px;
}

.proses-bisnis-icon{
    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    background:#fff3f3;

    color:#dc2626;

    font-size:40px;

    flex-shrink:0;
}

.proses-bisnis-content{
    flex:1;
}

.proses-bisnis-content h3{
    margin-bottom:8px;
    font-size:20px;
    font-weight:700;
}

.proses-bisnis-content p{
    margin:0;
    color:#64748b;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 992px){

    .profil-card{
        grid-template-columns:1fr;
    }

    .vm-grid{
        grid-template-columns:1fr;
    }

    .proses-bisnis-viewer iframe{
        height:700px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

    .tentang-page{
        padding:20px 0 40px;
    }

    /* HERO */

    .tentang-hero{
        padding:24px;
        border-radius:18px;
    }

    .hero-content h1{
        font-size:26px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:14px;
        line-height:1.8;
    }

    /* SECTION */

    .section-title h2{
        font-size:24px;
    }

    /* PROFIL */

    .profil-card{
        padding:20px;
        gap:20px;
        border-radius:18px;
    }

    .profil-image img{
        min-height:auto;
        height:260px;
    }

    .profil-content h2{
        font-size:24px;
    }

    /* VISI MISI */

    .vm-card{
        padding:22px;
    }

    .vm-card h2{
        font-size:22px;
    }

    /* PDF VIEWER */

    .viewer-header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
        padding:18px;
    }

    .viewer-header h4{
        font-size:18px;
    }

    .viewer-header .btn{
        width:100%;
    }

    .proses-bisnis-viewer{
        border-radius:18px;
    }

    .proses-bisnis-viewer iframe{
        height:650px;
    }

    /* PPT CARD */

    .proses-bisnis-card{
        flex-direction:column;
        text-align:center;
        padding:20px;
        gap:18px;
    }

    .proses-bisnis-icon{
        width:70px;
        height:70px;
        font-size:34px;
    }

    .proses-bisnis-content h3{
        font-size:18px;
    }

    .proses-bisnis-action{
        width:100%;
    }

    .proses-bisnis-action .btn{
        width:100%;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width:480px){

    .hero-content h1{
        font-size:22px;
    }

    .hero-label{
        font-size:12px;
        padding:7px 12px;
    }

    .profil-card{
        padding:16px;
    }

    .vm-card{
        padding:18px;
    }

    .proses-bisnis-viewer iframe{
        height:75vh;
        min-height:500px;
    }

    .viewer-header{
        padding:15px;
    }

}