/* =========================================================
   CASANOVA CAR RENTAL — ABOUT US PAGE: FINAL CTA SECTION
   Background image + dark overlay + right-side amber gradient
========================================================= */

.about-final-cta-section {
    position: relative;
    width: 100%;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-rich-black);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding: 90px 24px;
}

/* Dark overlay so text stays readable on any image */
.about-final-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(17, 17, 17, 0.55) 0%,
        rgba(17, 17, 17, 0.75) 100%
    );
    z-index: 1;
}

/* Amber gradient glow — right side of the section */
.about-final-cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 191, 1, 0) 45%,
        rgba(255, 191, 1, 0.22) 100%
    );
    z-index: 2;
}

.about-final-cta-container {
    position: relative;
    z-index: 3;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.about-final-cta-heading {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: clamp(28px, 4vw, 46px);
    color: var(--color-white);
    text-transform: capitalize;
    margin-bottom: 22px;
}

.about-final-cta-text {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 38px;
}

/* -----------------------------------------
   Buttons
----------------------------------------- */
.about-final-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.about-final-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.about-final-cta-btn-solid {
    background-color: var(--color-amber);
    color: var(--color-rich-black);
    border: 1px solid var(--color-amber);
}

.about-final-cta-btn-solid:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.about-final-cta-btn-outline {
    background-color: transparent;
    color: var(--color-amber);
    border: 1px solid var(--color-amber);
}

.about-final-cta-btn-outline:hover {
    background-color: var(--color-amber);
    color: var(--color-rich-black);
    transform: translateY(-2px);
}

/* -----------------------------------------
   Responsive
----------------------------------------- */
@media (max-width: 768px) {
    .about-final-cta-section {
        min-height: 400px;
        padding: 70px 20px;
        background-attachment: scroll;
    }

    .about-final-cta-gradient {
        background: linear-gradient(
            180deg,
            rgba(255, 191, 1, 0) 55%,
            rgba(255, 191, 1, 0.2) 100%
        );
    }
}

@media (max-width: 576px) {
    .about-final-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .about-final-cta-btn {
        width: 100%;
    }
}