/* =========================================================
   RESET
========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================================================
   HERO SECTION (FIXED & RESPONSIVE)
========================================================= */
.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    min-height: 90vh;
    padding: clamp(40px, 6vw, 80px) 20px;

    background: #b0c38b;
    color: #fff;
}

.hero-content {
    flex: 1 1 500px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 15px;
}

.hero-image {
    flex: 1 1 400px;
    padding: 20px;
    text-align: center;
}

/* IMAGE (ASLI – TIDAK DIUBAH) */
.hero-image img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05) rotate(1deg);
}

/* ✅ VIDEO FIX (TAMBAHAN – TIDAK MENGUBAH LOGIKA) */
.hero-image video {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    display: block;
    will-change: transform;
    backface-visibility: hidden;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn-cta,
.btn-readmore {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;

    background: #a5cd48;
    color: #fff;
    font-weight: 600;
    border-radius: 0;

    transition: all 0.3s ease;
}

.btn-cta:hover,
.btn-readmore:hover {
    background-color: #8fbf3f;
    transform: translateY(-2px);
}

/* =========================================================
   GLOBAL SECTION STYLES
========================================================= */
section {
    padding: 60px 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

/* =========================================================
   SERVICES
========================================================= */
.services .service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.services .card {
    position: relative;
    flex: 1 1 280px;
    padding: 40px 20px 20px;

    border-radius: 12px;
    background: #b0c38b;
    text-align: center;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.services .card h2 {
    margin-top: 25px;
}

/* =========================================================
   ICON CIRCLE
========================================================= */
.icon-circle {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);

    width: 80px;
    height: 80px;

    background: #c9dfc9;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.icon-circle img {
    width: 60px;
    height: 60px;
}

.services .card:hover .icon-circle {
    transform: translateX(-50%) translateY(-5px);
}

/* =========================================================
   THERAPY APPROACH
========================================================= */
.approach-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;

    max-width: 1200px;
    margin: 0 auto;
}

.approach-image,
.approach-text {
    flex: 1 1 500px;
    padding: 20px;
}

.approach-image img {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.approach-image img:hover {
    transform: scale(1.05);
}

/* =========================================================
   APPOINTMENT
========================================================= */
.appointment-section {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 40vh;
    background: #f5f5f5;
    padding: 40px 20px;
}

.appointment-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    max-width: 1200px;
    width: 100%;
    gap: 30px;
}

.appointment-left,
.appointment-right {
    flex: 1 1 400px;
    padding: 20px;
    text-align: center;
}

.appointment-right img {
    width: 6cm;
    height: 6cm;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
}

/* =========================================================
   QUOTE
========================================================= */
.quote-section {
    position: relative;
    text-align: center;
    padding: 60px 20px;
}

.quote-section .quote-mark {
    font-size: 6rem;
    color: #c9dfc9;

    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.quote-section p {
    font-size: 1.5rem;
    font-style: italic;
}

/* =========================================================
   BANNER
========================================================= */
.banner {
    width: 100vw;
    height: 70vh;
    overflow: hidden;
}

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

/* =========================================================
   ANIMATIONS
========================================================= */
.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s forwards;
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: left;
    }

    .hero-content {
        align-items: flex-start;
        text-align: left;
    }

    /* VIDEO MOBILE FIX (TAMBAHAN AMAN) */
    .hero-image video {
        max-height: 220px;
    }

    .services .service-cards,
    .approach-row,
    .appointment-row {
        flex-direction: column;
    }

    .appointment-section {
        height: auto;
    }

    .banner {
        height: 45vh;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .btn-cta,
    .btn-readmore {
        padding: 12px 22px;
        font-size: 0.95rem;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
    }

    .icon-circle img {
        width: 24px;
        height: 24px;
    }

    .quote-section .quote-mark {
        font-size: 4rem;
    }

    .quote-section p {
        font-size: 1.2rem;
    }
}