/* ============================================
   CTA Section Component
   ============================================ */
.font-light {
    font-weight: 200;
}

.cta-section {
    position: relative;
    background-color: var(--white, #FFFFFF);
    padding: 5rem 0;
    overflow: hidden;
}

.cta-image-wrapper {
    position: relative;
    height: 500px;
    padding-left: 0;
    margin-left: calc(-50vw + 50%);
    padding-right: 15px;
}

.cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    border-radius: 0 24px 24px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    padding-left: 2rem;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--dark-grey) !important;
    text-decoration: none !important;
}

.cta-title {
    font-family: Inter, sans-serif;
    font-size: 2rem;
    line-height: 2rem;
    color: #333333;
    margin: 10px 0;
    padding: 0 0;
}

.cta-description {
    font-family: Inter, sans-serif;
    font-size: 1rem;
    line-height: 1.8rem;
    color: rgb(51, 51, 51);
    margin: 10px 0;
    padding: 0 0;
    width: 60%;
}

.btn-cta-outline {
    padding: 9px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    cursor: pointer;
    background: #2d348f;
    text-decoration: none;
    color: #ffffff !important;
    height: fit-content;
    width: fit-content;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-cta-outline:hover {
    background: #1f2563;
    color: var(--white);
}

.cta-contact {
    margin-top: 2rem;
}

.cta-contact-label {
    font-family: Inter, sans-serif;
    font-size: 1rem;
    line-height: 1.8rem;
    color: rgb(51, 51, 51);
    margin: 10px 0;
    padding: 0 0;
}

.cta-contact-number {
    font-size: 2rem;
    line-height: 2.8rem;
    color: #262626;
    margin: 0px 0px 0px 0px;
    padding: 0 0;
}

.cta-contact-number:hover {
    color: #2d348f;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .cta-section {
        padding: 3rem 0;
    }

    .cta-image-wrapper {
        min-height: 400px;
        margin-bottom: 2rem;
        margin-left: -15px;
        padding-right: 15px;
    }

    .cta-image {
        border-radius: 12px;
        position: relative;
        width: calc(100% + 15px);
        left: 0;
    }

    .cta-content {
        padding-left: 12px;
        height: auto;
        text-align: start;
        align-items: start;
    }

    .cta-contact br{
        display: none;
    }

    .cta-contact {
        display: flex;
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 767px) {
    /* Paragraph Tags - Mobile Styles */
    .cta-section p {
        font-size: 1rem !important;
        line-height: 1.8rem !important;
        font-weight: 400;
        width: 80%;
    }

    /* CTA Section */
    .cta-section {
        padding: 2.5rem 0;
    }

    .cta-image-wrapper {
        min-height: 350px;
        height: 350px;
        margin-left: 0;
        padding-right: 0;
        margin-bottom: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cta-image {
        width: 80%;
        height: 350px;
        left: 0;
        border-radius: 12px;
    }

    .cta-content {
        padding-left: 0;
        height: auto;
        text-align: center;
        align-items: center;
    }

    .cta-contact br{
        display: none;
    }

    .cta-title {
        font-size: 1.5rem;
        line-height: 1.4;
        margin: 15px 0;
    }

    .cta-description {
        font-size: 1rem;
        line-height: 1.8rem;
        width: 100%;
        margin: 15px 0;
    }

    .btn-cta-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .cta-contact-label {
        font-size: 1rem;
        line-height: 0.8rem;
        margin: 10px 0 0 0;
        width: 100%;
        text-align: start;
    }

    .cta-contact-number {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .cta-contact {
        margin-top: 1.5rem;
    }
}

/* Small Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
    /* Paragraph Tags - Small Mobile Styles */
    .cta-section p {
        font-size: 1rem !important;
        line-height: 1.4rem !important;
        width: 100%;
    }

    /* CTA Section */
    .cta-section {
        padding: 2rem 0;
    }

    .cta-image-wrapper {
        min-height: 300px;
        height: 300px;
        margin-left: 0;
        padding-right: 0;
        margin-bottom: 1.5rem;
    }

    .cta-image {
        width: 80%;
        height: 300px;
        left: 0;
        border-radius: 10px;
    }

    .cta-content {
        padding: 0 2rem;
        height: auto;
        text-align: center;
        align-items: center;
    }

    .cta-title {
        font-size: 1.25rem;
        line-height: 1.3;
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .cta-description {
        font-size: 1rem;
        line-height: 1.8rem;
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }

    .btn-cta-outline {
        padding: 8px 18px;
        font-size: 0.875rem;
        border-radius: 6px;
    }

    .cta-contact-label {
        font-size: 1rem;
        line-height: 1.8rem;
        margin: 8px 0;
        text-align: center;
    }

    .cta-contact-number {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }

    .cta-contact {
        margin-top: 1.25rem;
    }
}

/* Extra Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Paragraph Tags - Extra Small Mobile Styles */
    .cta-section p {
        font-size: 1rem !important;
        line-height: 1.4rem !important;
    }

    /* CTA Section */
    .cta-section {
        padding: 1.5rem 0;
    }

    .cta-image-wrapper {
        min-height: 250px;
        height: 250px;
        margin-bottom: 1rem;
    }

    .cta-image {
        height: 250px;
        border-radius: 8px;
    }

    .cta-title {
        font-size: 2rem;
        line-height: 1.2;
        margin: 8px 0;
    }

    .cta-description {
        font-size: 1rem;
        line-height: 1.8rem;
        margin: 8px 0;
    }

    .btn-cta-outline {
        padding: 15px 32px;
        font-size: 0.8rem;
        width: 100%;
    }

    .cta-contact-label {
        font-size: 1rem;
        line-height: 1.8rem;
        margin: 6px 0;
        text-align: center;
    }

    .cta-contact-number {
        font-size: 1.5rem;
        line-height: 1.6rem;
    }

    .cta-contact br {
        display: none;
    }

    .cta-contact {
        margin-top: 1rem;
    }
}
