/* ==========================================================================
   CTA (CALL TO ACTION) SECTION — FIGMA DESIGN SPECIFICATION
   ========================================================================== */
.cta-section {
    position: relative;
    width: 100%;
    min-height: 311px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Background Image */
.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay (linear gradient specified in Figma: 90deg, rgba(0,0,0,0.5) 0%, #1D3A72 74.69%) */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, #1D3A72 74.69%);
    z-index: 1;
}

/* Content Container */
.cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 80px 114px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
    gap: 24px;
}

/* Left Content Column */
.cta-content-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 958px;
    flex: 1;
}

.cta-subtag {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.cta-red-bar {
    width: 64px;
    height: 3px;
    background: #E7000B;
    border-radius: 0px;
}

.cta-subtag-text {
    font-family: 'Arial', system-ui, -apple-system, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #EAE8E8;
}

.cta-heading {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    color: #FFFFFF;
    margin: 0;
    max-width: 958px;
}

/* Right Content Column / Button */
.cta-content-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    flex-shrink: 0;
}

.cta-btn-link {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    gap: 8px;
    width: 230px;
    height: 56px;
    border: 1px solid #FFFFFF;
    border-radius: 100px;
    background: transparent;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-btn-link span {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    color: #FFFFFF;
    white-space: nowrap;
}

.cta-btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cta-btn-link:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-btn-link:hover .cta-btn-icon {
    transform: translateX(4px);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Desktop, Macbook, Tablet, Mobile)
   ========================================================================== */

/* MACBOOK & LAPTOP (1025px - 1440px) */
@media (max-width: 1440px) {
    .cta-container {
        padding: 60px 60px;
    }
}

/* TABLET (768px - 1024px) */
@media (max-width: 1024px) {
    .cta-container {
        padding: 50px 32px;
        gap: 32px;
    }

    .cta-heading {
        font-size: 30px;
        line-height: 40px;
    }
}

/* MOBILE (< 767px) */
@media (max-width: 767px) {
    .cta-section {
        min-height: auto;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
        gap: 28px;
    }

    .cta-heading {
        font-size: 24px;
        line-height: 34px;
    }

    .cta-subtag-text {
        font-size: 15px;
        line-height: 18px;
    }

    .cta-content-right {
        width: 100%;
        align-items: stretch;
    }

    .cta-btn-link {
        width: 100%;
        height: 52px;
    }
}
