:root {
    --dark-green: #14352f;
    --orange: #ff9f43;
    --light-green: #f2f7f6;
    --text-body: #55605e;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-body);
    background-color: white;
}

.fw-extrabold { font-weight: 800; }

/* NAVBAR & CART */
.navbar { transition: all 0.3s; }
.cart-icon {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-right: 10px;
}
.bg-orange { background-color: var(--orange); }

/* HERO SECTION */
.hero-section {
    padding-top: 120px;
    padding-bottom: 150px;
    background-color: white;
}

.hero-image-circle {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background-color: var(--light-green);
    border: 20px solid white;
    box-shadow: 0 40px 60px rgba(0,0,0,0.05);
    overflow: hidden;
    margin: 0 auto;
}
.hero-image-circle img {
    width: 100%; height: 100%; object-fit: cover;
}

/* PAW DECORATIONS */
.paw-large { font-size: 3rem; position: absolute; opacity: 0.1; color: var(--dark-green); }
.paw-med { font-size: 1.5rem; position: absolute; opacity: 0.05; color: var(--dark-green); }
.p-top-right { top: 0; right: 10%; }
.p-mid-left { top: 40%; left: 0; transform: rotate(-30deg); opacity: 0.2; }
.p-bottom-left { bottom: -20px; left: 15%; color: var(--dark-green); opacity: 0.2; }

/* SERVICES DARK SECTION */
.services-dark {
    background-color: var(--dark-green);
    border-radius: 100% 0 0 0 / 120px 0 0 0; /* Membuat efek wave atas */
    padding: 100px 0;
    margin-top: -50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: left;
    height: 100%;
}
.feature-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark-green); margin: 20px 0; }
.icon-circle {
    width: 50px; height: 50px;
    background: var(--orange);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.2rem;
}

.circle-card-img img {
    width: 300px; height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid rgba(255,255,255,0.1);
}

/* INFO & CONTACT */
.list-points li {
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.list-points li i {
    color: var(--orange);
    margin-right: 12px;
}

.contact-box {
    background-color: var(--dark-green);
    color: white;
    border-radius: 40px;
}

.btn-orange { background-color: var(--orange); color: white; border: none; transition: 0.3s; }
.btn-orange:hover { background-color: #e68a2e; transform: translateY(-3px); }
.btn-light-green { background-color: var(--light-green); color: var(--dark-green); border: none; }
.btn-outline-orange { border: 1px solid var(--orange); color: var(--orange); }

.mini-pet-circle img {
    width: 140px; height: 140px;
    border-radius: 50%;
    background: var(--light-green);
    padding: 10px;
}

/* Responsivitas */
@media (max-width: 991px) {
    .hero-image-circle { width: 300px; height: 300px; }
    .services-dark { border-radius: 50px 0 0 0; }
}

/* Footer Radius */
footer {
    border-radius: 100px 100px 0 0; /* Atas kiri, atas kanan, bawah kanan, bawah kiri */
}