@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

.cta-section {
    padding: 80px 0;
    background: transparent;
}

/* BANNER WRAPPER */
.cta-banner-luxury {
    background: linear-gradient(135deg, #a1ff5a 0%, #4efdc4 100%);
    border-radius: 50px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(161, 255, 90, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
}

/* TYPOGRAPHY */
.cta-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #030923;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 0.95rem;
    font-weight: 500;
    color: #030923;
    opacity: 0.85;
    max-width: 450px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* PREMIUM BUTTONS */
.btn-cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 350px;
}

.btn-dark-lux {
    background: #030923;
    color: #fff !important;
    font-weight: 800;
    padding: 16px 30px;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.9rem;
}

.btn-dark-lux:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.btn-glass-lux {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #030923 !important;
    font-weight: 800;
    padding: 16px 30px;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    font-size: 0.9rem;
}

/* LOGO CAPSULE (Sesuai Gambar Referensi) */
.logo-pill-container {
    background: #0d0d0d; /* Hitam Pekat */
    padding: 35px 50px;
    border-radius: 100px; /* Bentuk Kapsul/Pill Sempurna */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.1);
    transition: 0.5s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.logo-pill-container:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.logo-pill-container img {
    width: 100%;
    max-width: 240px; /* Ukuran Logo agar proporsional */
    height: auto;
}

/* MOBILE ADAPTATION */
@media (max-width: 992px) {
    .cta-banner-luxury {
        padding: 50px 25px;
        flex-direction: column;
        text-align: center;
        border-radius: 40px;
    }
    .cta-headline { font-size: 2rem; }
    .cta-sub { margin: 0 auto 35px; }
    .btn-cta-group { margin: 0 auto; width: 100%; }
    .logo-pill-container {
        margin-top: 40px;
        padding: 25px 40px;
    }
    .logo-pill-container img { max-width: 180px; }
}