/* ==========================================
ABOUT HERO
========================================== */

.ma-about-hero{

    padding:90px 20px;

}

.ma-about-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.ma-about-content{

    max-width:560px;

}

.ma-about-label{

    display:inline-block;

    color:#BE3090;

    font-size:15px;

    font-weight:600;

    margin-bottom:18px;

}

.ma-about-title{

    color:#3B649B;

    font-size:28px;

    line-height:1.2;
	
	font-weight:600;

    margin-bottom:28px;

}

.ma-about-description{

    color:#555;

    font-size:16px;

    line-height:1.2;

}


/* IMAGE */

.ma-about-image{

    width:100%;

    height:420px;

    background-image:url("https://www.menantianak.co.id/wp-content/uploads/2026/07/about-hero.jpg");

    background-repeat:no-repeat;

    background-position:center center;

    background-size:120%;

}


/* ==========================================
CONTACT
========================================== */

.ma-about-contact{

    padding:100px 20px;

    background:#C8E4F6;

}

.ma-about-contact-container{

    max-width:760px;

    margin:auto;

    text-align:center;

}

.ma-about-contact-title{

    color:#3B649B;

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

    margin:15px 0;

}

.ma-about-contact-description{

    font-size:16px;

    color:#555;

    line-height:1.2;

}

.ma-about-contact-card{

    margin-top:45px;

    padding:50px;

    background:#fff;

    border-radius:30px;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

}

.ma-contact-icon{

    width:72px;

    height:72px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#DDEFFC;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

}

.ma-about-contact-card h3{

    margin:0 0 15px;

    color:#3B649B;

    font-size:30px;

    font-weight:700;

}

.ma-about-contact-card p{

    max-width:460px;

    margin:0 auto 35px;

    color:#666;

    line-height:1.8;

}

.ma-contact-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:10px;

    background:#3B649B;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.ma-contact-btn:hover{

    background:#BE3090;

    color:#fff;

    transform:translateY(-2px);

}


/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

    .ma-about-container{

        grid-template-columns:1fr;

    }

    .ma-about-content{

        max-width:100%;

        text-align:center;

    }

    .ma-about-title{

        font-size:38px;

    }

    .ma-about-image{

        height:500px;

    }

}

@media(max-width:768px){

    .ma-about-title{

        font-size:32px;

    }

    .ma-about-description{

        font-size:16px;

    }

    .ma-about-image{

        height:380px;

    }

}