/* --- VARIABEL WARNA --- */
:root {
    --primary-teal: #106361;
    --light-teal: #e6f2f2;
    --accent-orange: #f28b30;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fcfcfc;
    color: #333;
}

/* --- NAVBAR --- */
.navbar-custom {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
}
.nav-link {
    font-weight: 500;
    color: #555;
    transition: 0.3s;
}
.nav-link:hover { 
    color: var(--primary-teal); 
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(135deg, var(--light-teal) 0%, #ffffff 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-title {
    font-weight: 800;
    color: var(--primary-teal);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}
.btn-primary-custom {
    background-color: var(--primary-teal);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}
.btn-primary-custom:hover {
    background-color: #0b4a48;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 99, 97, 0.3);
}

/* --- CARDS INFO MENARIK --- */
.info-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #eee;
    padding: 30px;
    height: 100%;
    transition: 0.3s;
}
.info-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}
.icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--light-teal);
    color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

/* --- LAYANAN KAMI --- */
.service-list li {
    list-style: none;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #555;
    display: flex;
    align-items: center;
}
.service-list li i {
    color: var(--primary-teal);
    font-size: 1.2rem;
    margin-right: 15px;
    background: var(--light-teal);
    width: 35px; 
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- TIM PSIKOLOG --- */
.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
    border: 1px solid #f0f0f0;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(16, 99, 97, 0.15);
}
.team-img-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--light-teal);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}
.team-img-wrapper .fa-user-md {
    font-size: 6rem;
    color: var(--primary-teal);
    opacity: 0.3;
}
.team-info {
    padding: 25px;
    text-align: center;
}
.team-name {
    font-weight: 700;
    color: var(--primary-teal);
    font-size: 1.15rem;
    margin-bottom: 5px;
}
.team-role {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}
.team-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* --- FOOTER --- */
.footer-custom {
    background-color: var(--primary-teal);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}
.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #fff;
}
.footer-link {
    color: #d1e8e7;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}
.footer-link:hover { 
    color: white; 
    padding-left: 5px; 
}
.contact-item i { 
    width: 25px; 
    color: #a4d4d3; 
}
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}