/* --- Custom Design Tokens --- */
:root {
    --primary-green: #046b41;
    --primary-green-light: #e8f5e9;
    --secondary-gold: #c5a059;
    --secondary-gold-light: #fff8e1;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #212529;
    --text-muted: #6c757d;
}

/* --- Global Styles --- */
body {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
}

.bg-primary-green { background-color: var(--primary-green); }
.text-primary-green { color: var(--primary-green); }

/* --- Hero Section --- */
.hero-section {
    position: relative;
}

.circles-bg {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-green-light) 0%, transparent 70%);
    z-index: 0; /* Ubah ke 0 agar berada di paling bawah */
}

.hero-img-wrapper {
    position: relative;
    z-index: 2;
    max-width: 450px; /* Batasi lebar agar tidak meleber dan menghemat ruang vertikal */
    margin: 0 auto;
}

.hero-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 8px solid white; /* Memberi kesan frame foto */
}

.hero-img-wrapper:hover img {
    transform: translateY(-10px) scale(1.02);
}

/* --- Stat Cards --- */
.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px !important;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.stat-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* --- Service Cards --- */
.service-card {
    transition: all 0.3s ease;
    border-radius: 24px !important;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(4, 107, 65, 0.1) !important;
}

.nav-pills .nav-link {
    color: var(--text-dark);
    background: white;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-green) !important;
}

/* --- News Cards --- */
.news-card {
    border-radius: 20px !important;
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.news-img-cap {
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: var(--light-gray);
}

.news-img-cap img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* --- Team Cards --- */
.team-card {
    border-radius: 20px !important;
    transition: all 0.3s ease;
}

.team-img-circle {
    width: 100px;
    height: 100px;
    background: var(--light-gray);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
}

/* --- Contact Section --- */
.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-success-subtle {
    background-color: rgba(4, 107, 65, 0.1);
}

.img-accent-box {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--secondary-gold);
    top: -20px;
    left: -20px;
    border-radius: 15px;
    z-index: 0;
}

/* --- Utility --- */
/* --- Layout & Utilities --- */
.rounded-4 { border-radius: 1.5rem !important; }
.rounded-pill { border-radius: 50rem !important; }

.mt-navbar { margin-top: 70px !important; }
.stats-overlap { margin-top: -110px !important; position: relative; z-index: 10; }

/* --- Section Backgrounds --- */
.hero-gradient-light {
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.page-header-green {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

.breadcrumb-nav-white {
    --bs-breadcrumb-divider-color: rgba(255,255,255,0.6);
}

.breadcrumb-nav-white .breadcrumb-item a {
    color: white !important;
    text-decoration: none;
    opacity: 0.75;
}

.breadcrumb-nav-white .breadcrumb-item.active {
    color: white !important;
    font-weight: 700;
}

/* --- Misc Components --- */
.icon-box-large {
    width: 80px;
    height: 80px;
}

.img-profile-header {
    height: 400px;
    object-fit: cover;
}

.sticky-top-80 {
    top: 100px;
    z-index: 10;
}

.hero-title {
    line-height: 1.1;
    color: var(--primary-green);
}

.social-share-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    letter-spacing: -0.5px;
}
