/* =====================================
   MENANTI ANAK DESIGN SYSTEM
===================================== */

:root{

    /* Primary Brand */
    --ma-primary:#3B649B;
    --ma-primary-dark:#ECC3DF;

    /* Section Background */
    --ma-bg-white:#FFFFFF;

    --ma-bg-soft:#FAFBFC;

    --ma-bg-value:#C8E4F6;

    --ma-bg-story:#3B649B;

    --ma-bg-cream:#F8F4EE;

    /* Text */
    --ma-text:#1F2937;
    --ma-text-light:#080808;
    --ma-text-valueandcta:#A03088;
    --ma-text-title-service:#3B649B;


    /* Border */
    --ma-border:#3B649B;

    /* Radius */
    --ma-radius-sm:10px;
    --ma-radius-md:16px;
    --ma-radius-lg:24px;

    /* Shadow */
    --ma-shadow-sm:0 4px 12px rgba(0,0,0,.05);
    --ma-shadow-md:0 8px 24px rgba(0,0,0,.08);

    /* Layout */
    --ma-container:1400px;
    --ma-section-space:100px;
}


/* =====================================
   GLOBAL COMPONENTS
===================================== */

.ma-container{
    max-width:var(--ma-container);
    margin:0 auto;
    padding:0 24px;
}

.ma-section{
    padding:var(--ma-section-space) 0;
}

.ma-section-badge{
    display:inline-block;

    padding:8px 16px;

    background:var(--ma-bg-badge);
    color:var(--ma-primary);

    border-radius:var(--ma-radius-sm);

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

.ma-section-title{
    font-size:35px;
    line-height:1.2;
    font-weight:700;

    color:var(--ma-text-valueandcta);
}

.ma-section-title-service{
    font-size:28px;
    line-height:1.2;
    font-weight:700;

    color:var(--ma-text-title-service);
}

.ma-section-desccard{
    font-size:15px;
    line-height:1.2;
    font-weight:400;

    color:var(--ma-text-light);
}

.ma-section-desc{
    font-size:20px;
    line-height:1.2;
    font-weight:400;

    color:var(--ma-text-light);
}

.ma-card{
    background:var(--ma-bg-soft);

    border:2px solid var(--ma-border);

    border-radius:var(--ma-radius-md);

    padding:32px;

    transition:.3s ease;
}

.ma-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--ma-shadow-sm);
}

.ma-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 32px;

    background:var(--ma-primary);
    color:#fff;

    border-radius:var(--ma-radius-sm);

    text-decoration:none;

    font-weight:600;

    transition:.3s ease;
}

.ma-btn:hover{
    background:var(--ma-primary-dark);
    color:#BE3090;
    transform:translateY(-2px);
}

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

.ma-hero{
    position:relative;
    min-height:750px;
    overflow:hidden;
}

.ma-hero-slider{
    position:absolute;
    inset:0;
}

.ma-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1s ease;
}

.ma-slide.active{
    opacity:1;
}

.ma-slide picture{

    width:100%;

    height:100%;

    display:block;

}

.ma-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ma-hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(255, 255, 255, 0.114);
}

.ma-hero-content{
    position:relative;
    z-index:10;

    max-width:700px;

    padding:120px 80px;
    color:#fff;
}

.ma-hero-badge{
    display:inline-block;

    margin-bottom:20px;

    padding:8px 16px;

    border-radius:var(--ma-radius-sm);

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);
}

.ma-hero-content h1{
    font-size:35px;
    line-height:1.1;
    margin-bottom:20px;
	color : #3B649B;
	font-weight: bold;
}

.ma-hero-content p{
    font-size:18px;
    line-height:1.2;
    margin-bottom:30px;
	color: #000000;
}

.ma-hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 32px;

    background:var(--ma-primary-dark);

    color:#BE3090;

    text-decoration:none;

    border-radius:var(--ma-radius-sm);

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

    transition:.3s ease;
}

.ma-hero-btn:hover{
    background:var(--ma-primary);
    color:#fff;
    transform:translateY(-2px);
}

/* =====================================
   VALUE SECTION
===================================== */

.ma-home-intro{
    padding:var(--ma-section-space) 0;
    background:var(--ma-bg-value);
}

.ma-home-intro-heading{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.ma-home-intro-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.ma-intro-card{
    background:var(--ma-bg-soft);

    text-align:center;

    border:1px solid var(--ma-border);

    border-radius:var(--ma-radius-md);

    padding:32px;

    transition:all .3s ease;
}

.ma-intro-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(59,100,155,.18);
}

.ma-intro-icon{

    width:52px;

    height:52px;

    margin:0 auto 24px;

    border-radius:50%;

    background:#A03088;

    display:flex;

    align-items:center;

    justify-content:center;
}

.ma-intro-icon span{

    color:#FFFFFF;

    font-size:22px;

    font-weight:700;

    line-height:1;
}

.ma-intro-card h3{
    font-size:22px;
    margin-bottom:12px;
    color:#3B649B;
    font-weight:500;
}

.ma-intro-card p{
    color:var(--ma-text-light);
    line-height:1.7;
}

/* ====================================
   SERVICES
==================================== */

.ma-services-section{

    background:#F7F8FA;

    padding:100px 0;
}

/* HEADER SECTION LAYANAN */

.ma-services-section .ma-section-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 50px;
}

.ma-services-section .ma-section-title{
    margin-bottom:16px;
}

.ma-services-section .ma-section-desc{
    margin:0 auto;
    max-width:720px;
    text-align:center;
}

.ma-services-grid{

    display:grid;

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

    gap:24px;

    margin-top:48px;
}

.ma-service-card{

    background:#FFFFFF;

    border:1px solid #C7D4E6;

    border-radius:24px;

    overflow:hidden;

    display:flex;

    align-items:stretch;

    min-height:220px;

    box-shadow:0 8px 24px rgba(59,100,155,.08);

    transition:all .3s ease;
}

.ma-service-card:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 36px rgba(59,100,155,.15);
}

.ma-service-image{

    flex:0 0 200px;
    display:flex;
}

.ma-service-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;
}

.ma-service-content{

    padding:28px;

    display:flex;

    flex-direction:column;

    justify-content:center;
}

.ma-service-content h3{

    color:#333333;

    margin-bottom:14px;

    line-height:1.2;

    font-weight: 700;

    font-size:22px;
}

.ma-service-content p{

    margin:0;

    line-height:1.2;

    color:#000000;

    font-weight: 400;

    font-size:15px;
}

/* =====================================
   CONDITIONS
===================================== */

.ma-conditions-section{
    padding:100px 0;
    text-align:center;
}

.ma-condition-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;

    margin-top:40px;
}

.ma-condition-tag{

    padding:10px 18px;

    background:#C8E4F6;

    border-radius:12px;

    font-size:14px;

    font-weight: 500;

    white-space:nowrap;
}

.ma-condition-cta{
    text-align:center;
    margin-top:40px;
}

/* ======================================
   STORY SECTION
====================================== */

.ma-story-section{

    padding:100px 0;

    background:#3B649B;

    overflow:hidden;
}

/* HEADING */

.ma-story-heading{

    text-align:center;

    margin-bottom:50px;
}

.ma-story-heading .ma-section-badge{

    display:inline-block;

    padding:12px 24px;

    border-radius:14px;

    background:rgba(255,255,255,.12);

    color:#fff;

    font-size:14px;

    font-weight:600;
}

.ma-story-heading h2{

    color:#fff;

    margin-top:20px;

    font-size:54px;
}

/* SLIDER */

.ma-story-slider{

    display:flex;

    align-items:center;

    gap:20px;

    position:relative;
}

.ma-story-track{

    display:flex;

    gap:18px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:none;

    flex:1;
}

.ma-story-track::-webkit-scrollbar{

    display:none;
}

/* CARD */

.ma-story-card{

    flex:0 0 320px;

    background:#fff;

    padding:28px;

    border-radius:40px;

    text-decoration:none;

    color:inherit;

    min-height:340px;

    display:flex;

    flex-direction:column;

    position:relative;

    transition:.3s ease;
}

.ma-story-card:hover{

    transform:translateY(-6px);
}

/* QUOTE */

.ma-story-quote{

    position:absolute;

    top:18px;

    right:24px;

    font-size:58px;

    line-height:1;

    color:#F4F4F4;

    font-weight:700;
}

/* LABEL */

.ma-story-label{

    font-size:14px;

    color:#A03088;

    margin-bottom:12px;
}

/* TITLE */

.ma-story-card h3{

    color:#3B649B;

    font-size:20px;

    line-height:1.4;

    font-weight:700;

    margin-bottom:18px;
}

/* CONTENT */

.ma-story-card p{

    flex:1;

    color:#444;

    font-size:15px;

    line-height:1.5;
}

/* DOCTOR */

.ma-story-doctor{

    margin-top:24px;
}

.ma-story-doctor span{

    display:block;

    color:#A03088;

    font-size:14px;

    margin-bottom:6px;
}

.ma-story-doctor strong{

    color:#3B649B;

    font-weight:700;
}

/* READMORE */

.ma-story-readmore{

    margin-top:20px;

    color:#3B649B;

    font-weight:600;

    font-size:16px;
}

/* NAVIGATION */

.ma-story-prev,
.ma-story-next{

    width:42px;

    height:70px;

    border:2px solid rgba(255,255,255,.85);

    border-radius:12px;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.95),
        rgba(255,255,255,.45)
    );

    backdrop-filter:blur(10px);

    color:#D54FA0;

    font-size:28px;

    cursor:pointer;

    flex-shrink:0;

    transition:.3s ease;

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

.ma-story-prev:hover,
.ma-story-next:hover{

    transform:translateY(-2px);
}

.ma-story-prev{

    margin-right:12px;
}

.ma-story-next{

    margin-left:12px;
}

/* FOOTER */

.ma-story-footer{

    text-align:center;

    margin-top:45px;
}

.ma-story-footer .ma-btn{

    padding:16px 34px;

    border-radius:12px;

    font-size:16px;

    font-weight:600;
}

.ma-story-swipe-hint{

    display:none;

}

/* ====================================
FAQ
==================================== */

.ma-faq-section{

padding:100px 0;

background:#F8FAFC;

}

.ma-faq-heading{

text-align:center;

margin-bottom:60px;

}

.ma-faq-heading h2{

font-size:22px;
line-height:1.2;
font-weight:700;

color:var(--ma-text-title-service);

}

.ma-faq-grid{

display:grid;

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

gap:24px;

}

.ma-faq-item{

background:#FFFFFF;

border-radius:18px;

border:1px solid #EEF2F7;

overflow:hidden;

transition:.3s ease;

}

.ma-faq-item:hover{

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

}

.ma-faq-question{

width:100%;

display:flex;

align-items:center;

gap:16px;

padding:18px 22px;

border:none;

background:#FFFFFF;

cursor:pointer;

text-align:left;

font-size:18px;

font-weight:600;

color:#4A3555;

}

.ma-faq-icon{

width:38px;

height:38px;

display:flex;

align-items:center;

justify-content:center;

border-radius:10px;

background:#F5F5F5;

color:#B3479A;

flex-shrink:0;

transition:.3s ease;

font-size:16px;

font-weight:700;

}

/* ACTIVE */

.ma-faq-item.active{

box-shadow:0 12px 30px rgba(255, 255, 255, 0.06);

}

.ma-faq-item.active .ma-faq-icon{

background:#B3479A;

color:#FFFFFF;

}

/* ANSWER */

.ma-faq-answer{

max-height:0;

overflow:hidden;

transition:all .35s ease;

padding:0 24px 0 76px;

}

.ma-faq-item.active .ma-faq-answer{

max-height:300px;

padding:0 24px 24px 76px;

}

.ma-faq-answer p{

margin:0;

color:#555;

line-height:1.8;

} 

/* ====================================
   CTA
==================================== */

.ma-cta-section{

    background:#C8E4F6;

    padding:100px 0;

    text-align:center;

    position:relative;
}

.ma-cta-content{

    max-width:760px;

    margin:0 auto;
}

.ma-cta-content h2{

    color:#B3479A;

    margin-bottom:24px;
}

.ma-cta-content p{

    max-width:700px;

    margin:0 auto 40px;

    color:var(--ma-text);

    line-height:1.8;
}

.ma-cta-content .ma-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;
}

/* TABLET */

@media(max-width:1024px){

    .ma-story-card{

        flex:0 0 300px;
    }

    .ma-story-heading h2{

        font-size:42px;
    }
}


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

@media(max-width:768px){

    /* HERO */

    .ma-hero{

        min-height:65vh;

    }

    .ma-hero-content{

        padding:120px 20px 80px;

        text-align:center;

    }

    .ma-slide{

        height:70vh;

    }

    .ma-slide img{

        width:100%;

        height:100%;

        object-fit:cover;

        object-position:center;

    }

    .ma-hero-content h1{

        font-size:24px;

        line-height:1.2;

        margin-bottom:18px;

    }

    .ma-hero-content p{

        font-size:14px;

        line-height:1.2;

        max-width:100%;

    }

    .ma-hero-btn{

        padding:12px 20px;

        font-size:14px;

        border-radius:10px;

    }

    .ma-btn{

        padding:12px 20px;

        font-size:14px;

        border-radius:10px;

    }


    /* INTRO CARD */

    /* VALUE SECTION */

    .ma-home-intro{

        padding:70px 0;

    }

    .ma-home-intro-heading{

        text-align:center;

        margin-bottom:32px;

    }

    .ma-section-title{

        font-size:24px;

        line-height:1.2;

        margin-bottom:14px;

    }

    .ma-section-desc{

        font-size:14px;

        line-height:1.2;

    }

    /* INTRO CARD */

    .ma-home-intro-grid{

        grid-template-columns:1fr;

        gap:18px;

    }

    .ma-intro-card{

        padding:24px;

    }

    .ma-intro-icon{

        width:40px;

        height:40px;

        border-radius:50%;

        background:#A03088;

        display:flex;

        align-items:center;

        justify-content:center;

    }

    .ma-intro-icon span{

        font-size:20px;

    }

    .ma-intro-card h3{

        font-size:24px;

        line-height:1.2;

        text-align:center;

        margin-bottom:10px;

    }

    .ma-section-desccard{

        font-size:12px;

        line-height:1.2;

        text-align:center;

    }

	
/* ====================================
SERVICES MOBILE
==================================== */ 

.ma-services-grid{

grid-template-columns:1fr;
}

.ma-service-card{

flex-direction:column;

min-height:auto;
}

.ma-service-image{

flex:auto;

height:220px;
}

.ma-service-content{

padding:24px;
} 

    /* CONDITIONS */

    .ma-condition-list{

        flex-wrap:nowrap;

        overflow-x:auto;

        justify-content:flex-start;

        gap:12px;

        padding-bottom:12px;

        -webkit-overflow-scrolling:touch;

        scrollbar-width:thin;
    }

    .ma-condition-list::-webkit-scrollbar{

        height:6px;

    }

    .ma-condition-list::-webkit-scrollbar-track{

        background:#E5E7EB;

        border-radius:999px;

    }

    .ma-condition-list::-webkit-scrollbar-thumb{

        background:#C8E4F6;

        border-radius:999px;

    }

    .ma-section-title-service{

        font-size:24px;

        line-height:1.4;

        margin-bottom:18px;

        font-weight: 700;

    }

    
	
    /* STORY MOBILE */

    .ma-story-slider{

        display:block;
    }

    .ma-story-track{

        gap:16px;

        padding-left:20px;

        padding-right:20px;

        scroll-snap-type:x mandatory;
    }

    .ma-story-card{

        flex:0 0 88%;

        min-height:auto;

        padding:24px;

        border-radius:28px;

        scroll-snap-align:start;
    }

    .ma-story-card h3{

        font-size:18px;

        line-height:1.4;
    }

    .ma-story-card p{

        font-size:14px;

        flex:none;

        line-height:1.5;
    }

    .ma-story-quote{

        font-size:46px;

        top:14px;

        right:18px;
    }

    .ma-story-prev,
    .ma-story-next{

        display:none;
    }

    .ma-story-section{


        padding:80px 0;
    }


    .ma-story-heading h2{


        font-size:24px;

        font-weight: 700;
    }


    

    .ma-story-prev,
    .ma-story-next{


        width:40px;


        height:60px;
    }

    .ma-story-swipe-hint{

        display:block;

        text-align:center;

        margin-top:16px;

        color:rgba(255,255,255,.8);

        font-size:13px;

    }

	
/* FAQ */
.ma-faq-grid{

    grid-template-columns:1fr;
}

.ma-faq-question{

    font-size:16px;

    padding:18px;
}

.ma-faq-answer{

    padding:0 18px 0 70px;
}

.ma-faq-item.active .ma-faq-answer{

    padding:0 18px 18px 70px;
}
	
/* CTA */
.ma-cta-section{

    padding:80px 0;
}

.ma-cta-content h2{

    font-size:32px;
}

.ma-cta-content p{

    margin-bottom:32px;
}

}