/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:system-ui,-apple-system,sans-serif;
    background:#f4f6f9;
    color:#111827;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* TOPBAR */

.topbar{
    background:#0f766e;
    color:white;
    padding:10px 0;
    font-size:14px;
}

.topbar-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

/* NAVBAR */

.navbar{
    background:white;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.06);
}

.navbar-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:80px;
}

.logo{
    font-size:24px;
    font-weight:800;
    color:#0f766e;
    text-decoration:none;
}

nav{
    display:flex;
    align-items:center;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#374151;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#f59e0b;
}

/* DROPDOWN */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    background:white;
    min-width:220px;

    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

    padding:10px 0;

    opacity:0;
    visibility:hidden;

    transition:.3s;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
}

.dropdown-menu a{
    display:block;
    padding:12px 18px;
}

/* HAMBURGER */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
}

.menu-toggle span{
    display:block;
    width:28px;
    height:3px;

    background:#111827;

    margin:5px 0;
    border-radius:10px;
}

/* MODERN HERO HOME */

.modern-hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;

    display:flex;
    align-items:center;
}

.hero-bg{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(255,255,255,.88) 0%,
        rgba(255,255,255,.72) 35%,
        rgba(255,255,255,.20) 100%
    );
}

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

.hero-text{
    max-width:650px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:12px;

    background:#ecfdf5;
    color:#0f766e;

    padding:14px 24px;

    border-radius:999px;

    font-size:15px;
    font-weight:700;

    margin-bottom:30px;
}

.hero-badge span{
    width:12px;
    height:12px;

    border-radius:50%;
    background:#f59e0b;
}

.hero-text h1{
    font-size:72px;
    line-height:1.05;

    font-weight:800;
    color:#0f766e;

    margin-bottom:20px;
}

.hero-text h2{
    font-size:42px;
    line-height:1.3;

    color:#f59e0b;

    margin-bottom:24px;
}

.hero-text p{
    font-size:20px;
    line-height:1.9;

    color:#475569;

    max-width:620px;
}

.hero-buttons{
    display:flex;
    gap:22px;

    margin-top:42px;

    flex-wrap:wrap;
}

.hero-btn-primary,
.hero-btn-secondary{
    padding:18px 34px;

    border-radius:999px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.hero-btn-primary{
    background:#f59e0b;
    color:white;
}

.hero-btn-primary:hover{
    transform:translateY(-3px);
}

.hero-btn-secondary{
    border:2px solid #0f766e;
    color:#0f766e;
    background:white;
}

.hero-btn-secondary:hover{
    background:#0f766e;
    color:white;
}

/* FEATURES */

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

    margin-top:90px;
    margin-bottom:100px;
}

.card{
    background:white;
    padding:35px 30px;
    border-radius:28px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card .icon{
    font-size:42px;
    margin-bottom:20px;
}

.card h3{
    font-size:24px;
    margin-bottom:14px;
}

.card p{
    color:#64748b;
    line-height:1.7;
}

/* ABOUT HOME */

.about{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:60px;
    align-items:center;

    margin-bottom:100px;
}

.about img{
    width:100%;
    border-radius:30px;
}

.about h2{
    font-size:48px;
    line-height:1.3;

    margin-bottom:24px;
}

.about p{
    font-size:18px;
    line-height:1.9;
    color:#475569;
}

/* GALLERY */

.gallery{
    margin-bottom:100px;
}

.section-title{
    font-size:48px;
    margin-bottom:40px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.gallery-grid img{
    width:100%;
    height:280px;

    object-fit:cover;
    border-radius:24px;

    transition:.3s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

/* PROFILE HERO */

.profile-hero{
    height:420px;
    background:url('/images/PAUD_PROFILE.jpg') center/cover;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* VISI MISI HERO */

.visimisi-hero{
    height:420px;
    background:url('/images/PAUD_VISIMISI.jpg') center/cover;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* OVERLAY */

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

/* HERO CENTER */

.hero-center{
    position:relative;
    z-index:2;

    text-align:center;
    color:white;
}

.hero-center h1{
    font-size:60px;
    font-weight:800;

    margin-bottom:20px;
}

/* BREADCRUMB */

.breadcrumb{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.crumb{
    padding:12px 24px;

    border-radius:999px;

    text-decoration:none;
    font-weight:600;
}

.crumb-home{
    background:rgba(255,255,255,.35);
    color:white;
}

.crumb-active{
    background:#f59e0b;
    color:white;
}

/* PROFILE PAGE */

.profile-section{
    padding:80px 0;
}

.profile-card{
    background:white;
    padding:60px;
    border-radius:28px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* SECTION HEADING */

.section-heading{
    margin-bottom:35px;
}

.section-heading h2{
    font-size:52px;
    font-weight:800;
    color:#0f766e;

    display:flex;
    align-items:center;
    gap:16px;
}

.section-heading h2::before{
    content:'';

    width:16px;
    height:16px;

    border-radius:5px;
    background:#f59e0b;
}

.heading-line{
    width:110px;
    height:5px;

    border-radius:999px;
    background:#f59e0b;

    margin-top:18px;
    margin-left:32px;
}

/* PROFILE DESCRIPTION */

.profile-description{
    margin-top:20px;
}

.profile-description p{
    font-size:18px;
    line-height:2;
    color:#374151;

    margin-bottom:24px;
}

/* GALLERY PAGE */

.gallery-page{
    padding:90px 0;
}

.gallery-card{
    background:white;
    border-radius:20px;
    overflow:hidden;

    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

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

.gallery-content{
    padding:22px;
}

.gallery-content h4{
    margin-bottom:10px;
}

/* VISI MISI */

.visi-misi{
    padding:80px 0;
}

.vm-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.vm-card{
    background:white;

    padding:40px;

    border-radius:24px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    position:relative;
    overflow:hidden;

    transition:.3s;
}

.vm-card:hover{
    transform:translateY(-4px);
}

.vm-card.visi::before{
    content:'';

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:6px;

    background:#f59e0b;
}

.vm-card.misi::before{
    content:'';

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:6px;

    background:#0f766e;
}

.vm-icon{
    width:70px;
    height:70px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    margin-bottom:24px;
}

.visi .vm-icon{
    background:#fef3c7;
}

.misi .vm-icon{
    background:#ccfbf1;
}

.vm-card h3{
    margin-bottom:20px;

    font-size:42px;
    font-weight:800;
}

.visi h3{
    color:#f59e0b;
}

.misi h3{
    color:#0f766e;
}

.vm-card p{
    font-size:18px;
    line-height:1.9;
    color:#475569;
}

/* STRUKTUR */

.struktur-section{
    padding:80px 0;
}

.struktur-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;

    margin-bottom:50px;
}

.struktur-card{
    background:white;
    padding:30px;
    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.struktur-card img{
    width:120px;
    height:120px;

    object-fit:cover;
    border-radius:50%;

    margin-bottom:20px;
}

.jabatan{
    display:inline-block;

    background:#e0f2f1;
    color:#0f766e;

    padding:8px 16px;
    border-radius:999px;

    margin:15px 0;
}

.struktur-box{
    background:white;
    padding:40px;
    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.kepala{
    background:#f59e0b;
    color:white;

    padding:14px;
    border-radius:12px;

    text-align:center;
    margin-bottom:30px;

    font-weight:700;
}

.struktur-grid-2{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.struktur-card-2{
    background:#f8fafc;
    padding:25px;
    border-radius:18px;

    text-align:center;
}

/* FOOTER */

footer{
    background:#1e293b;
    color:white;

    margin-top:90px;
    padding:60px 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.copyright{
    text-align:center;
    margin-top:40px;
    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:80px;
        left:0;

        width:100%;
        background:white;

        display:none;
        flex-direction:column;
        align-items:flex-start;

        padding:20px;
    }

    nav.active{
        display:flex;
    }

    nav a{
        width:100%;
        padding:14px 0;
    }

    .dropdown{
        width:100%;
    }

    .dropdown-menu{
        position:static;

        opacity:1;
        visibility:visible;

        display:none;

        box-shadow:none;
        background:#f8fafc;

        margin-top:10px;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }

    .features{
        grid-template-columns:repeat(2,1fr);
    }

    .about{
        grid-template-columns:1fr;
        text-align:center;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .vm-grid,
    .struktur-grid,
    .struktur-grid-2{
        grid-template-columns:1fr;
    }

    .topbar-wrap{
        flex-direction:column;
        text-align:center;
    }

    .modern-hero{
        min-height:auto;
        padding:120px 0 90px;
    }

    .hero-overlay{
        background:rgba(255,255,255,.88);
    }

    .hero-text{
        text-align:left;
    }

    .hero-text h1{
        font-size:56px;
    }

    .hero-text h2{
        font-size:34px;
    }

    .hero-text p{
        font-size:18px;
    }

    .hero-buttons{
        flex-wrap:wrap;
    }

    .section-heading h2{
        font-size:40px;
    }
}

@media(max-width:768px){

    .profile-hero,
    .visimisi-hero{
        height:320px;
    }

    .hero-center h1{
        font-size:38px;
    }

    .modern-hero{
        padding:100px 0 70px;
    }

    .hero-text h1{
        font-size:44px;
    }

    .hero-text h2{
        font-size:28px;
    }

    .hero-text p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        width:100%;
        text-align:center;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:36px;
    }

    .about h2{
        font-size:36px;
    }

    .vm-card{
        padding:30px 24px;
    }

    .vm-card h3{
        font-size:32px;
    }

    .section-heading h2{
        font-size:34px;
    }
}

@media(max-width:576px){

    .hero-text h1{
        font-size:36px;
    }

    .hero-text h2{
        font-size:22px;
    }

    .hero-text p{
        font-size:15px;
        line-height:1.8;
    }

    .hero-badge{
        font-size:14px;
        padding:12px 20px;
    }

    .btn,
    .btn-outline,
    .hero-btn-primary,
    .hero-btn-secondary{
        width:100%;
        text-align:center;
    }

    .section-title{
        font-size:28px;
    }

    .about h2{
        font-size:30px;
    }

    .hero-center h1{
        font-size:30px;
    }

    .vm-card,
    .struktur-card,
    .struktur-box,
    .profile-card{
        padding:25px;
    }

    .vm-card h3{
        font-size:28px;
    }
}

/* STRUKTUR ORGANISASI */

.struktur-hero {
    position: relative;
    min-height: 470px;
    background: url('/images/struktur_organ.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.struktur-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-center {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-center h1 {
    font-size: 70px;
    font-weight: 800;
    margin-bottom: 25px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.crumb {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.crumb-home {
    background: rgba(255,255,255,0.4);
    color: white;
    backdrop-filter: blur(10px);
}

.crumb-active {
    background: #f59e0b;
    color: white;
}

/* SECTION */

.struktur-section {
    background: #f5f7fb;
    padding: 90px 20px;
}

.struktur-single {
    display: flex;
    justify-content: center;
}

.struktur-card {
    background: white;
    width: 100%;
    max-width: 520px;
    border-radius: 28px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.struktur-card:hover {
    transform: translateY(-6px);
}

.struktur-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 6px solid #ecfdf5;
}

.struktur-card h3 {
    font-size: 40px;
    color: #0f766e;
    margin-bottom: 14px;
}

.jabatan {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 40px;
    background: #dff7f2;
    color: #0f766e;
    font-weight: 600;
    margin-bottom: 20px;
}

.struktur-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
}

/* GARIS */

.struktur-line-wrapper {
    position: relative;
    width: 100%;
    height: 110px;
    margin-top: 10px;
}

.line-vertical {
    width: 4px;
    height: 70px;
    background: #0f766e;
    margin: auto;
    border-radius: 10px;
}

.line-horizontal {
    width: 70%;
    height: 4px;
    background: #0f766e;
    margin: auto;
    border-radius: 10px;
}

/* GRID BAWAH */

.struktur-grid-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 20px;
}

.struktur-card-2 {
    background: white;
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.struktur-card-2:hover {
    transform: translateY(-6px);
}

.struktur-card-2 img {
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 18px;
    background: #ecfdf5;
    padding: 10px;
}

.struktur-card-2 h3 {
    font-size: 34px;
    color: #0f766e;
    margin-bottom: 12px;
}

.struktur-card-2 p {
    color: #475569;
    line-height: 1.7;
    font-size: 17px;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .hero-center h1 {
        font-size: 52px;
    }

    .struktur-grid-2 {
        grid-template-columns: 1fr;
    }

    .line-horizontal {
        display: none;
    }

    .line-vertical {
        height: 50px;
    }
}

@media (max-width: 768px) {

    .struktur-hero {
        min-height: 360px;
    }

    .hero-center h1 {
        font-size: 42px;
    }

    .crumb {
        padding: 12px 24px;
        font-size: 14px;
    }

    .struktur-card {
        padding: 35px 25px;
    }

    .struktur-card h3 {
        font-size: 32px;
    }

    .struktur-card-2 h3 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {

    .hero-center h1 {
        font-size: 34px;
    }

    .struktur-card img {
        width: 110px;
        height: 110px;
    }

    .struktur-card h3 {
        font-size: 28px;
    }

    .struktur-card p {
        font-size: 16px;
    }

    .struktur-card-2 {
        padding: 30px 20px;
    }

    .struktur-card-2 img {
        width: 80px;
        height: 80px;
    }

    .struktur-card-2 h3 {
        font-size: 24px;
    }
}

/* STRUKTUR ORGANISASI FIX */

.struktur-section{
    padding: 70px 0;
    background: #f5f7fa;
    overflow: hidden;
}

/* CARD ATAS */
.struktur-single{
    display: flex;
    justify-content: center;
}

.struktur-card.utama{
    width: 100%;
    max-width: 400px;

    background: #fff;
    border-radius: 24px;

    padding: 28px 24px;

    text-align: center;

    box-shadow: 0 8px 25px rgba(0,0,0,0.06);

    position: relative;
    z-index: 2;
}

.struktur-card.utama img{
    width: 85px;
    height: 85px;

    object-fit: cover;
    border-radius: 50%;

    background: #e8f7f3;
    padding: 5px;

    margin-bottom: 15px;
}

.struktur-card.utama h3{
    font-size: 30px;
    color: #0f766e;
    margin-bottom: 12px;
    font-weight: 800;
}

.jabatan{
    display: inline-block;

    padding: 10px 20px;

    background: #dff5ef;
    color: #0f766e;

    border-radius: 999px;

    font-size: 15px;
    font-weight: 600;

    margin-bottom: 18px;
}

.struktur-card.utama p{
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

/* GARIS */

.struktur-line-wrapper{
    position: relative;

    width: 100%;
    height: 80px;

    margin-top: -5px;
    margin-bottom: 0;
}

.line-vertical{
    width: 4px;
    height: 40px;

    background: #0f766e;

    margin: auto;

    border-radius: 20px;
}

.line-horizontal{
    width: 520px;
    height: 4px;

    background: #0f766e;

    margin: auto;

    position: relative;

    border-radius: 20px;
}

.line-horizontal::before,
.line-horizontal::after{
    content: '';

    position: absolute;

    width: 4px;
    height: 40px;

    background: #0f766e;

    top: 0;

    border-radius: 20px;
}

.line-horizontal::before{
    left: 0;
}

.line-horizontal::after{
    right: 0;
}

/* garis tengah */
.line-horizontal{
    display: flex;
    justify-content: center;
}

.line-horizontal span{
    width: 4px;
    height: 40px;
    background: #0f766e;
}

/* GRID BAWAH */

.struktur-grid-3{
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    max-width: 820px;

    margin: 35px auto 0;
}

/* CARD */
.struktur-card-2{
    background: #fff;

    border-radius: 22px;

    padding: 24px 18px;

    text-align: center;

    box-shadow: 0 8px 22px rgba(0,0,0,0.05);

    transition: 0.3s ease;
}

.struktur-card-2:hover{
    transform: translateY(-5px);
}

.struktur-card-2 img{
    width: 75px;
    height: 75px;

    object-fit: cover;

    border-radius: 50%;

    background: #e8f7f3;

    padding: 5px;

    margin-bottom: 14px;
}

.struktur-card-2 h3{
    font-size: 22px;
    color: #0f766e;
    margin-bottom: 12px;
    font-weight: 700;
}

.struktur-card-2 p{
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
}

/* RESPONSIVE */

@media(max-width:768px){

    .struktur-grid-3{
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .line-horizontal{
        display: none;
    }

    .line-vertical{
        height: 35px;
    }

}

/* GARIS TENGAH KE CARD */
.line-horizontal span{
    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    top: 0;

    width: 4px;
    height: 45px;

    background: #0f766e;

    border-radius: 20px;
}


/* PROGRAM */

.program-hero{
    position: relative;
    min-height: 380px;

    background:
        linear-gradient(
            135deg,
            rgba(15,118,110,.88),
            rgba(13,148,136,.82)
        ),
        url('/images/home.png') center center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.program-section{
    padding: 90px 0;
    background: #f8fafc;
}

/* TITLE */

.program-section .section-title{
    text-align: center;
    margin-bottom: 60px;
}

.program-section .section-title span{
    display: inline-block;

    background: #dff5ef;
    color: #0f766e;

    padding: 10px 22px;
    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 18px;
}

.program-section .section-title h2{
    font-size: 30px !important;
    line-height: 1.5 !important;

    color: #0f172a;
    font-weight: 700 !important;

    max-width: 700px;
    margin: auto;
}

/* GRID */

.program-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
}

/* CARD */

.program-card{
    background: #fff;

    border-radius: 28px;

    padding: 24px;

    text-align: center;

    transition: 0.3s ease;

    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.program-card:hover{
    transform: translateY(-8px);
}

/* IMAGE */

.program-card img{
    width: 100%;
    height: 180px;

    object-fit: contain;

    margin-bottom: 20px;
}

/* CARD TITLE */

.program-card h3{
    font-size: 20px !important;

    color: #0f766e;

    margin-bottom: 12px;

    font-weight: 700 !important;
}

/* CARD TEXT */

.program-card p{
    font-size: 15px !important;

    line-height: 1.7;

    color: #475569;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .program-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:768px){

    .program-section{
        padding: 70px 0;
    }

    .program-section .section-title h2{
        font-size: 24px !important;
    }

    .program-grid{
        grid-template-columns: 1fr;
    }

}

.program-section p{
    font-size: 16px !important;
    line-height: 1.8 !important;
}

/* GALLERY */

.gallery-hero{
    position: relative;
    min-height: 340px;

    background:
        linear-gradient(
            rgba(15,118,110,.78),
            rgba(13,148,136,.78)
        ),
        url('/images/home.png') center center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* SECTION */
.gallery-section{
    padding: 90px 0;
    background: #f8fafc;
}

/* TITLE */
.gallery-title{
    text-align: center;
    margin-bottom: 60px;
}

.gallery-badge{
    display: inline-block;
    background: #dff5ef;
    color: #0f766e;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
}

.gallery-title h2{
    font-size: 34px;
    color: #0f172a;
    margin-bottom: 18px;
    font-weight: 800;
}

.gallery-title p{
    max-width: 700px;
    margin: auto;
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
}

/* GRID */
.gallery-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
}

/* CARD */
.gallery-card{
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: .3s ease;
}

.gallery-card:hover{
    transform: translateY(-8px);
}

/* IMAGE */
.gallery-card img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* CONTENT */
.gallery-content{
    padding: 22px;
}

.gallery-content h3{
    font-size: 22px;
    color: #0f766e;
    margin-bottom: 12px;
    font-weight: 700;
}

.gallery-content p{
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

/* RESPONSIVE */
@media(max-width: 1100px){

    .gallery-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width: 768px){

    .gallery-title h2{
        font-size: 28px;
    }

    .gallery-title p{
        font-size: 15px;
    }

    .gallery-grid{
        grid-template-columns: 1fr;
    }

}

/* CONTACT */

/* CONTACT HERO */

.contact-hero{
    background: #f8fafc;
    padding: 40px 0 70px;
}

/* CARD BESAR */
.contact-hero-box{
    width: 100%;
    min-height: 520px;

    border-radius: 40px;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 80px;

    background:
        linear-gradient(
            90deg,
            rgba(240,248,245,.90) 0%,
            rgba(240,248,245,.82) 28%,
            rgba(240,248,245,.45) 50%,
            rgba(240,248,245,.05) 75%
        ),
        url('/images/contact.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* LEFT */
.contact-hero-left{
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.contact-badge{
    display: inline-block;

    background: #dff5ef;
    color: #0f766e;

    padding: 12px 28px;
    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;

    margin-bottom: 26px;
}

.contact-hero-left h1{
    font-size: 76px;
    line-height: 1.05;

    color: #0f172a;
    font-weight: 800;

    margin-bottom: 28px;
}

.contact-hero-left p{
    font-size: 21px;
    line-height: 1.9;

    color: #334155;
}

/* CONTACT SECTION */

.contact-section{
    padding: 120px 0 90px;
    background: #f8fafc;
    margin-top: -20px;
}

.contact-grid{
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
}

.contact-info h2,
.contact-form-wrapper h2{
    font-size: 34px;
    color: #0f172a;
    margin-bottom: 30px;
    font-weight: 800;
}

.contact-image img{
    width:100%;
    max-width:460px;
    height:460px;

    object-fit:cover;
    border-radius:28px;

    box-shadow:0 12px 30px rgba(15,23,42,0.10);
}

/* CARD */
.contact-card{
    background: #fff;
    border-radius: 24px;

    padding: 24px;

    display: flex;
    align-items: flex-start;
    gap: 20px;

    margin-bottom: 20px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.contact-icon{
    width: 60px;
    height: 60px;

    border-radius: 50%;
    background: #0f766e;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    flex-shrink: 0;
}

.contact-card h4{
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-card p{
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

/* FORM */
.contact-form{
    background: #fff;

    padding: 35px;
    border-radius: 30px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.form-group-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea{
    width: 100%;

    border: 1px solid #e2e8f0;
    border-radius: 16px;

    padding: 18px 20px;

    font-size: 16px;

    margin-bottom: 20px;

    outline: none;

    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color: #0f766e;
}

.contact-form button{
    width: 100%;

    border: none;

    background: #0f766e;
    color: #fff;

    padding: 18px;

    border-radius: 18px;

    font-size: 17px;
    font-weight: 700;

    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover{
    background: #115e59;
}

/* RESPONSIVE */
@media(max-width: 992px){

    .contact-grid{
        grid-template-columns: 1fr;
    }

    .contact-hero-box{
        padding: 55px;
        min-height: 460px;

        background-position: center;
    }

    .contact-hero-left h1{
        font-size: 52px;
    }

}

@media(max-width: 768px){

    .contact-hero-box{
        padding: 35px;
        min-height: 420px;
    }

    .contact-hero-left h1{
        font-size: 40px;
    }

    .contact-hero-left p{
        font-size: 17px;
        line-height: 1.7;
    }

    .form-group-2{
        grid-template-columns: 1fr;
    }

}

.maps-box{
    background: #fff;
    padding: 18px;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    overflow: hidden;
}

.maps-box iframe{
    border-radius: 20px;
}

/* LOGIN BUTTON */
.login-btn{
    background: #f59e0b;
    color: #fff !important;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    margin-left: 12px;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-btn:hover{
    background: #d97706;
    transform: translateY(-2px);
} 

/* ========================================
   MOBILE NAVBAR FINAL FIX
======================================== */

@media(max-width:768px){

    /* TOPBAR */
    .topbar{
        padding: 10px 0;
    }

    .topbar-wrap{
        gap: 6px;
        font-size: 13px;
    }

    /* NAVBAR */
    .navbar-wrap{
        min-height: 78px;
        padding: 0;
    }

    .logo{
        font-size: 22px;
    }

    /* HAMBURGER */
    .menu-toggle{
        display: block;
        z-index: 1001;
    }

    /* MENU MOBILE */
    nav{
        position: absolute;
        top: 78px;
        left: 0;

        width: 100%;

        background: #fff;

        display: none;
        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        padding: 20px 24px;

        box-shadow: 0 12px 30px rgba(0,0,0,.08);

        z-index: 999;
    }

    nav.active{
        display: flex;
    }

    /* DROPDOWN */
    .dropdown{
        width: 100%;
    }

    .dropdown-menu{
        position: static;

        opacity: 1;
        visibility: visible;

        display: none;

        background: #f8fafc;

        box-shadow: none;

        border-radius: 14px;

        margin-top: 10px;
        padding: 10px 16px;
    }

    .dropdown.active .dropdown-menu{
        display: block;
    }

    .dropdown-menu a{
        font-size: 16px;
        border: none;
        padding: 10px 0;
    }

    /* LOGIN BUTTON */
    .login-btn{
        width: 100%;

        margin-left: 0;
        margin-top: 18px;

        padding: 15px;

        justify-content: center;

        font-size: 18px;
        font-weight: 700;

        border-radius: 18px;
    }

    /* HERO */
    .modern-hero{
        padding-top: 40px;
    }

    .hero-buttons{
        margin-top: 30px;
    }

}

@media(max-width:768px){

    #menu{
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    #menu.active{
        display: flex;
    }

    #menu a{
        display: block;
        padding: 18px 20px;
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: #374151;
        line-height: 1.2;
    }

    #menu .login-btn{
        margin-top: 20px;
        text-align: center;
    }

}