body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* =========================================================
   CTA SECTION (50% HEIGHT)
========================================================= */
.cta-section {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/cta-bg.jpg') center/cover no-repeat;
}

/* Overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    z-index: 1;
}

/* Container */
.cta-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 90%;
    text-align: center;
}

/* Content */
.cta-content {
    color: #1f1f1f;
}

/* Title */
.cta-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-title span {
    color: #a5cd48;
}

/* Text */
.cta-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Contact Info */
.cta-contact {
    margin-bottom: 20px;
    font-size: 1rem;
}

/* =========================================================
   CTA BUTTON (PERSIS DENGAN YANG KAMU MAU)
========================================================= */
.btn-consultation {
    display: inline-block;
    padding: 14px 38px;
    border: 2px solid #1f1f1f;
    background: transparent;
    color: #1f1f1f;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.btn-consultation:hover {
    background: #a5cd48;
    border-color: #a5cd48;
    color: #ffffff;
}

/* =========================================================
   ANIMATION ENTRANCE
========================================================= */
.reveal-bottom {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.reveal-bottom.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 768px) {
    .cta-section {
        height: auto;
        padding: 70px 20px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .btn-consultation {
        width: 100%;
        text-align: center;
    }
}