/* ==========================================================
   MDTU NURUL ISLAM
========================================================== */

:root{

    --md-primary:#0F766E;
    --md-secondary:#D4AF37;
    --md-dark:#173126;
    --md-light:#F8FAFC;

    --radius:22px;

    --shadow:0 15px 40px rgba(0,0,0,.08);

}



/* ==========================================================
   HERO
========================================================== */

.mdtu-hero{

    position:relative;

    min-height:700px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
    url("../images/mdtu/hero.jpg")
    center center/cover;

}

.mdtu-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(10,45,38,.82),
        rgba(8,74,66,.88)
    );

}

.mdtu-hero .container{

    position:relative;

    z-index:2;

}

.mdtu-hero-content{

    max-width:760px;

    color:#fff;

}

.mdtu-hero h1{

    font-size:62px;

    font-weight:800;

    margin-bottom:12px;

}

.mdtu-hero h3{

    color:#FFD54A;

    margin-bottom:25px;

    font-size:30px;

}

.mdtu-hero p{

    font-size:20px;

    line-height:1.9;

    margin-bottom:35px;

}

.hero-info{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.hero-info div{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(8px);

    padding:18px 22px;

    border-radius:18px;

    min-width:170px;

}

.hero-info strong{

    display:block;

    margin-bottom:8px;

    color:#FFD54A;

}

.hero-button{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-button .btn{

    min-width:220px;

    height:56px;

    border-radius:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}



/* ==========================================================
   ABOUT
========================================================== */

.mdtu-about{

    padding:110px 0;

    background:#fff;

}

.mdtu-about img{

    border-radius:24px;

    box-shadow:var(--shadow);

}

.section-subtitle{

    display:inline-block;

    color:var(--md-secondary);

    letter-spacing:2px;

    font-weight:700;

    margin-bottom:16px;

}

.section-title{

    font-size:42px;

    font-weight:800;

    color:var(--md-dark);

    margin-bottom:24px;

}

.section-description{

    max-width:720px;

    margin:auto;

    line-height:1.9;

    color:#666;

}

.mdtu-about p{

    line-height:2;

    color:#666;

}

@media(max-width:991px){

.mdtu-hero{

min-height:520px;

padding:90px 0;

}

.mdtu-hero h1{

font-size:42px;

}

.mdtu-hero h3{

font-size:24px;

}

.mdtu-hero p{

font-size:16px;

}

.mdtu-about{

padding:70px 0;

}

.section-title{

font-size:30px;

}

}

@media(max-width:576px){

.mdtu-hero{

min-height:460px;

}

.mdtu-hero h1{

font-size:32px;

}

.mdtu-hero h3{

font-size:20px;

}

.hero-info{

flex-direction:column;

}

.hero-button{

flex-direction:column;

}

.hero-button .btn{

width:100%;

}

}

/* ==========================================================
   KURIKULUM
========================================================== */

.curriculum-section{

    padding:110px 0;

    background:#F8FAFC;

}

.curriculum-card{

    height:100%;

    background:#fff;

    border-radius:22px;

    padding:35px;

    box-shadow:var(--shadow);

    transition:.35s;

    border-top:5px solid transparent;

}

.curriculum-card:hover{

    transform:translateY(-8px);

    border-color:var(--md-secondary);

}

.curriculum-icon{

    width:75px;

    height:75px;

    border-radius:50%;

    background:#EEF8F6;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    color:var(--md-primary);

    margin-bottom:22px;

}

.curriculum-card h3{

    font-size:26px;

    color:var(--md-dark);

    margin-bottom:20px;

}

.curriculum-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.curriculum-card ul li{

    position:relative;

    padding-left:28px;

    margin-bottom:12px;

    color:#555;

    line-height:1.8;

}

.curriculum-card ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    color:var(--md-primary);

    font-weight:bold;

}



/* ==========================================================
   JENJANG KELAS
========================================================== */

.class-section{

    padding:110px 0;

    background:#fff;

}

.class-card{

    height:100%;

    background:#fff;

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.class-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:var(--md-secondary);

}

.class-card:hover{

    transform:translateY(-8px);

}

.class-number{

    width:70px;

    height:70px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--md-primary),
        #0A5C53
    );

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 20px;

    font-size:28px;

    font-weight:700;

}

.class-card h5{

    margin:0;

    color:var(--md-dark);

    font-size:22px;

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:991px){

.curriculum-section{

padding:70px 0;

}

.curriculum-card{

padding:28px;

}

.curriculum-icon{

width:65px;

height:65px;

font-size:28px;

}

.curriculum-card h3{

font-size:22px;

}

.class-section{

padding:70px 0;

}

.class-card{

padding:28px 18px;

}

.class-number{

width:60px;

height:60px;

font-size:24px;

}

.class-card h5{

font-size:18px;

}

}

@media(max-width:576px){

.curriculum-card{

padding:24px;

}

.curriculum-card h3{

font-size:20px;

}

.curriculum-card ul li{

font-size:14px;

}

.class-card{

padding:24px 15px;

}

.class-number{

width:54px;

height:54px;

font-size:22px;

}

.class-card h5{

font-size:17px;

}

}

/* ==========================================================
   METODE PEMBELAJARAN
========================================================== */

.method-section{

    padding:110px 0;

    background:#F8FAFC;

}

.method-card{

    height:100%;

    background:#fff;

    border-radius:22px;

    padding:40px 28px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.method-card:hover{

    transform:translateY(-8px);

}

.method-card i{

    font-size:46px;

    color:var(--md-primary);

    margin-bottom:22px;

}

.method-card h4{

    font-size:24px;

    color:var(--md-dark);

    margin-bottom:18px;

}

.method-card p{

    color:#666;

    line-height:1.9;

    margin:0;

}



/* ==========================================================
   TARGET LULUSAN
========================================================== */

.graduate-section{

    padding:110px 0;

    background:#fff;

}

.graduate-section img{

    border-radius:24px;

    box-shadow:var(--shadow);

}

.graduate-list{

    list-style:none;

    padding:0;

    margin-top:25px;

}

.graduate-list li{

    position:relative;

    padding-left:38px;

    margin-bottom:18px;

    color:#555;

    line-height:1.9;

}

.graduate-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    width:24px;

    height:24px;

    border-radius:50%;

    background:var(--md-primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:13px;

}



/* ==========================================================
   PROGRAM UNGGULAN
========================================================== */

.feature-section{

    padding:110px 0;

    background:#F8FAFC;

}

.feature-card{

    height:100%;

    background:#fff;

    border-radius:22px;

    padding:40px 28px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

    border-top:5px solid transparent;

}

.feature-card:hover{

    transform:translateY(-8px);

    border-color:var(--md-secondary);

}

.feature-card i{

    font-size:48px;

    color:var(--md-secondary);

    margin-bottom:22px;

}

.feature-card h4{

    color:var(--md-dark);

    margin-bottom:18px;

    font-size:24px;

}

.feature-card p{

    color:#666;

    line-height:1.9;

    margin:0;

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:991px){

.method-section{

padding:70px 0;

}

.method-card{

padding:30px 22px;

}

.method-card h4{

font-size:22px;

}

.method-card i{

font-size:40px;

}

.graduate-section{

padding:70px 0;

}

.graduate-section img{

margin-bottom:35px;

}

.feature-section{

padding:70px 0;

}

.feature-card{

padding:30px 22px;

}

.feature-card h4{

font-size:22px;

}

}

@media(max-width:576px){

.method-card{

padding:24px 18px;

}

.method-card h4{

font-size:20px;

}

.method-card p{

font-size:14px;

}

.feature-card{

padding:24px 18px;

}

.feature-card h4{

font-size:20px;

}

.feature-card p{

font-size:14px;

}

}

/* ==========================================================
   KEGIATAN MADRASAH
========================================================== */

.activity-section{

    padding:110px 0;

    background:#ffffff;

}

.activity-card{

    height:100%;

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.activity-card:hover{

    transform:translateY(-8px);

}

.activity-card i{

    font-size:48px;

    color:var(--md-secondary);

    margin-bottom:22px;

}

.activity-card h4{

    color:var(--md-dark);

    font-size:24px;

    margin-bottom:18px;

}

.activity-card p{

    color:#666;

    line-height:1.9;

    margin:0;

}



/* ==========================================================
   TENAGA PENDIDIK
========================================================== */

.teacher-section{

    padding:110px 0;

    background:#F8FAFC;

}

.teacher-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.teacher-card:hover{

    transform:translateY(-8px);

}

.teacher-card img{

    width:100%;

    height:280px;

    object-fit:cover;

}

.teacher-card h4{

    margin-top:22px;

    color:var(--md-dark);

    font-size:22px;

}

.teacher-card p{

    color:#777;

    margin-bottom:25px;

}



/* ==========================================================
   FAQ
========================================================== */

.faq-section{

    padding:110px 0;

    background:#ffffff;

}

.faq-section .accordion{

    max-width:900px;

    margin:auto;

}

.faq-section .accordion-item{

    border:none;

    border-radius:18px !important;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:var(--shadow);

}

.faq-section .accordion-button{

    font-size:18px;

    font-weight:600;

    padding:22px 26px;

}

.faq-section .accordion-button:not(.collapsed){

    background:var(--md-primary);

    color:#fff;

}

.faq-section .accordion-body{

    padding:24px 26px;

    line-height:1.9;

}



/* ==========================================================
   CTA
========================================================== */

.mdtu-cta{

    padding:120px 0;

    background:

    linear-gradient(

        rgba(15,118,110,.90),

        rgba(10,60,54,.92)

    ),

    url("../images/mdtu/hero.jpg")

    center center/cover;

}

.mdtu-cta .cta-box{

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#fff;

}

.mdtu-cta span{

    color:#FFD54A;

    font-weight:700;

    letter-spacing:2px;

}

.mdtu-cta h2{

    font-size:48px;

    margin:20px 0;

    line-height:1.3;

}

.mdtu-cta p{

    max-width:700px;

    margin:0 auto 35px;

    line-height:1.9;

    font-size:18px;

}

.mdtu-cta .cta-button{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.mdtu-cta .btn{

    min-width:220px;

    height:56px;

    border-radius:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}



/* ==========================================================
   MOBILE FINAL
========================================================== */

@media(max-width:991px){

.activity-section,

.teacher-section,

.faq-section{

padding:70px 0;

}

.activity-card{

padding:30px 22px;

}

.activity-card h4{

font-size:22px;

}

.teacher-card img{

height:240px;

}

.teacher-card h4{

font-size:20px;

}

.mdtu-cta{

padding:80px 0;

}

.mdtu-cta h2{

font-size:34px;

}

.mdtu-cta p{

font-size:16px;

}

.mdtu-cta .cta-button{

flex-direction:column;

align-items:center;

}

.mdtu-cta .btn{

width:100%;

max-width:320px;

}

}

@media(max-width:576px){

.activity-card{

padding:24px 18px;

}

.activity-card h4{

font-size:20px;

}

.activity-card p{

font-size:14px;

}

.teacher-card img{

height:220px;

}

.teacher-card h4{

font-size:18px;

}

.teacher-card p{

font-size:14px;

}

.faq-section .accordion-button{

font-size:16px;

padding:18px;

}

.faq-section .accordion-body{

padding:18px;

font-size:14px;

}

.mdtu-cta{

padding:60px 0;

}

.mdtu-cta h2{

font-size:28px;

}

.mdtu-cta p{

font-size:15px;

}

}