/* =========================================================
   CASANOVA CAR RENTAL — HOME PAGE: FINAL CTA BANNER
   10% OFF promo banner | WhatsApp Book Now button
   Colors: Amber #FFBF01 | Rich Black #111111
========================================================= */

.cta-banner-section {
    position: relative;
    background-color: var(--color-rich-black);
    padding: 40px 0 100px;
}

.cta-banner-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.cta-banner-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #111111;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 191, 1, 0.25);
    border-radius: 24px;
    padding: 80px 40px;
    overflow: hidden;
}

/* Black overlay on top of the background image, so text stays readable */
.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
    opacity: 5;
}

/* Amber glow accents — sit above the overlay for extra depth */
.cta-banner-box::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 191, 1, 0.18) 0%, rgba(255, 191, 1, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.cta-banner-box::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 191, 1, 0.18) 0%, rgba(255, 191, 1, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.cta-banner-badge {
    position: relative;
    z-index: 2;
    display: inline-block;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: clamp(28px, 5vw, 48px);
    letter-spacing: 1px;
    color: var(--color-amber);
    margin-bottom: 16px;
}

.cta-banner-heading {
    position: relative;
    z-index: 2;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(18px, 2.4vw, 24px);
    color: var(--color-white);
    max-width: 560px;
    line-height: 1.4;
    margin-bottom: 36px;
}

.cta-banner-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    padding: 15px 34px;
    border-radius: 50px;
    background-color: var(--color-amber);
    color: var(--color-rich-black);
    line-height: 1.2;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.cta-banner-btn:hover {
    background-color: #e6ac00;
    transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */
@media (max-width: 1024px) {
    .cta-banner-section {
        padding: 20px 0 80px;
    }

    .cta-banner-box {
        padding: 56px 32px;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */
@media (max-width: 640px) {
    .cta-banner-container {
        padding: 0 20px;
    }

    .cta-banner-box {
        padding: 44px 24px;
        border-radius: 18px;
    }

    .cta-banner-btn {
        width: 100%;
        justify-content: center;
    }
}