/* --- CTA Banner Section --- */
.cta-banner-section {
    position: relative;
    padding: 4rem 0; /* py-16 */
    background-image: url("/images/default-source/about-us/stay-in-touch-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* --- Overlay --- */
.cta-banner-overlay {
    position: absolute;
    inset: 0; /* top, right, bottom, left: 0 */
    background-color: var(--gray-950-opaque);
}

/* --- Content --- */
.cta-banner-content {
    position: relative;
    z-index: 10;
    max-width: 56rem; /* max-w-4xl */
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.cta-banner-heading {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600; /* font-semibold */
    color: white;
    margin: 0 0 1rem 0;
}

.cta-banner-subheading {
    font-size: 1.5rem; /* text-lg */
    line-height: 2rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 1.5rem 0;
}

/* --- Button --- */
.cta-banner-button-link {
    text-decoration: none;
}

.cta-banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--daikin-blue);
    color: var(--white);
    padding: 0.45rem 2rem; /* px-8 py-3 */
    font-size: 1rem; /* text-lg */
    font-weight: 500; /* font-medium */
    border-radius: 0.5rem; /* rounded-lg */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-banner-button:hover {
    background-color: rgba(0, 156, 222, 0.9);
}


/* --- Responsive Styles --- */
@media (min-width: 640px) { /* sm */
    .cta-banner-content {
        padding: 0 1.5rem;
    }

    .cta-banner-heading {
        font-size: 1.875rem;
    }
    /* sm:text-3xl */
}

@media (min-width: 1024px) { /* lg */
    .cta-banner-content {
        padding: 0 2rem;
    }
}
