:root {
    --teal: #0d9488;
    --teal-light: #ccfbf1;
    --teal-dark: #0f766e;
    --navy: #1e293b;
    --slate: #475569;
    --soft-bg: #f0fdfa;
    --card-shadow: 0 8px 32px rgba(13,148,136,0.13), 0 2px 8px rgba(0,0,0,0.06);
    --accent-orange: #f97316;
}

*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

body{
    font-family:'Outfit',sans-serif;
    background:#f8fffe;
    color:var(--navy);
}

/* NAVBAR */
.navbar{
    background:#fff;
    border-bottom:1px solid #e2e8f0;
    padding:.75rem 1.5rem;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:.5rem;
    position:sticky;
    top:0;
    z-index:100;
}

.nav-logo{
    display:flex;
    align-items:center;
    gap:.6rem;
    text-decoration:none;
}



.nav-logo-icon{
    font-size:1.6rem;
}

.nav-logo-text{
    font-size:1.2rem;
    font-weight:700;
    color:var(--navy);
}

.nav-logo-text span{
    color:var(--teal);
}

.nav-logo-sub{
    font-size:.7rem;
    color:var(--slate);
    display:block;
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:.75rem;
}

.nav-back{
    font-size:.85rem;
    color:var(--teal);
    text-decoration:none;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:.3rem;
    padding:.45rem 1rem;
    border:1.5px solid var(--teal);
    border-radius:999px;
    transition:.3s;
}

.nav-back:hover{
    background:var(--teal);
    color:#fff;
}

.nav-cta{
    font-size:.85rem;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:.3rem;
    padding:.45rem 1rem;
    background:var(--teal);
    border:1.5px solid var(--teal);
    border-radius:999px;
    transition:.3s;
}

.nav-cta:hover{
    background:var(--teal-dark);
    border-color:var(--teal-dark);
}

/* PAGE HEADER */
.page-header{
    background:linear-gradient(135deg,#0f766e 0%,#0d9488 50%,#14b8a6 100%);
    color:#fff;
    padding:4rem 1.5rem 5rem;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.page-header::before{
    content:'';
    position:absolute;
    inset:0;
    background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
}

.page-header-icon{
    font-size:3.5rem;
    display:block;
    margin-bottom:1rem;
    position:relative;
    z-index:1;
}

.page-header h1{
    font-size:clamp(2rem,5vw,3rem);
    font-weight:700;
    margin-bottom:.75rem;
    position:relative;
    z-index:1;
}

.page-header p{
    font-size:1rem;
    opacity:.88;
    max-width:520px;
    margin:auto;
    line-height:1.6;
    position:relative;
    z-index:1;
}

/* WAVE */
.wave-divider{
    margin-top:-3px;
    line-height:0;
}

.wave-divider svg{
    display:block;
    width:100%;
}

/* SECTION */
.section-profil{
    padding:3rem 1rem 5rem;
}

.section-label{
    text-align:center;
    margin-bottom:2.5rem;
}

.section-label h2{
    font-size:clamp(1.5rem,3vw,2rem);
    color:var(--navy);
    font-weight:700;
}

.section-label p{
    color:var(--slate);
    margin-top:.4rem;
    font-size:.95rem;
}

/* GRID */
.guru-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,340px);
    justify-content:center;
    gap:2rem;
}

/* CARD */
.guru-card{
    width:340px;
    background:#fff;
    border-radius:24px;
    box-shadow:var(--card-shadow);
    overflow:hidden;
    transition:transform .3s ease, box-shadow .3s ease;
    border:1px solid rgba(13,148,136,0.1);
}

.guru-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 48px rgba(13,148,136,0.18), 0 4px 16px rgba(0,0,0,0.08);
}

/* PHOTO */
.guru-photo-wrap{
    position:relative;
    height:300px;
    background:linear-gradient(160deg,#ccfbf1 0%,#99f6e4 100%);
    overflow:hidden;
    display:flex;
    align-items:flex-end;
    justify-content:center;
}

.guru-photo-wrap::before{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    height:120px;
    background:linear-gradient(to top, rgba(13,148,136,0.15), transparent);
}

.guru-photo{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:50% 20%;
}

/* BADGE */
.guru-badge{
    position:absolute;
    top:1rem;
    left:1rem;
    background:var(--teal);
    color:#fff;
    font-size:.7rem;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
    padding:.25rem .7rem;
    border-radius:999px;
    z-index:2;
}

/* INFO */
.guru-info{
    padding:1.5rem 1.5rem 1.75rem;
}

.guru-name{
    font-size:1.3rem;
    font-weight:700;
    color:var(--navy);
    margin-bottom:.2rem;
}

.guru-title{
    font-size:.8rem;
    font-weight:600;
    color:var(--teal);
    letter-spacing:.04em;
    text-transform:uppercase;
    margin-bottom:1rem;
}

.guru-divider{
    width:36px;
    height:3px;
    background:linear-gradient(90deg,var(--teal),var(--accent-orange));
    border-radius:99px;
    margin-bottom:1rem;
}

.guru-detail-list{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:.65rem;
}

.guru-detail-list li{
    display:flex;
    align-items:flex-start;
    gap:.6rem;
    font-size:.85rem;
    color:var(--slate);
    line-height:1.45;
}

.detail-icon{
    width:28px;
    height:28px;
    min-width:28px;
    background:var(--teal-light);
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.85rem;
}

.detail-text strong{
    display:block;
    font-weight:600;
    color:var(--navy);
    font-size:.8rem;
}

.detail-text span{
    color:var(--slate);
}

/* FOOTER */
.footer{
    background:var(--navy);
    color:#cbd5e1;
    padding:2.5rem 1.5rem 1.5rem;
}

.footer-inner{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:2rem;
    padding-bottom:1.5rem;
    border-bottom:1px solid #334155;
}

.footer-logo-text{
    font-size:1.1rem;
    color:#fff;
    font-weight:700;
}

.footer-logo-text span{
    color:#5eead4;
}

.footer-desc{
    font-size:.82rem;
    margin-top:.6rem;
    line-height:1.6;
    color:#94a3b8;
}

.footer-heading{
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#fff;
    margin-bottom:.75rem;
}

.footer-links-list{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:.4rem;
}

.footer-links-list a{
    color:#94a3b8;
    text-decoration:none;
    font-size:.85rem;
    transition:color .2s;
}

.footer-links-list a:hover{
    color:#5eead4;
}

.footer-bottom{
    text-align:center;
    padding-top:1.25rem;
    font-size:.8rem;
    color:#64748b;
    max-width:1100px;
    margin:0 auto;
}

/* RESPONSIVE */
@media(max-width:900px){

    .guru-grid{
        grid-template-columns:1fr;
        justify-items:center;
    }

    .page-header{
        padding:3rem 1rem 3.5rem;
        text-align:left;
    }

    .page-header h1{
        font-size:clamp(1.6rem,6vw,2.4rem);
    }

    .page-header p{
        max-width:100%;
    }
}

@media(max-width:640px){

    .nav-logo-sub{
        display:none;
    }

    .nav-actions{
        width:100%;
        display:flex;
        justify-content:flex-end;
        gap:0.5rem;
    }

    .nav-back{
        padding:.35rem .8rem;
        font-size:.82rem;
    }

    .nav-cta{
        padding:.35rem .8rem;
        font-size:.82rem;
    }

    .page-header{
        padding:2.25rem .9rem 2.75rem;
    }

    .page-header h1{
        font-size:clamp(1.3rem,7vw,1.9rem);
    }

    .page-header-icon{
        font-size:2.6rem;
    }

    .guru-photo-wrap{
        height:250px;
    }

    .guru-card{
        width:100%;
        max-width:340px;
    }
     

}