/**
 * Call CTA Section Styles
 * @version 1.0
 */

.call-cta-section {
    width: 100%;
    padding: 0 120px;
}

.call-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #ed6a59;
    border-radius: 24px;
    padding: 24px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    overflow: hidden;
}

/* Icon Container */
.call-cta-icon-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.call-icon {
    width: 147px;
    height: 147px;
    display: block;
}

/* Text Container */
.call-cta-text-container {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.call-cta-heading-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.call-cta-heading {
    font-family: 'IvyOra Display', serif;
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    color: #ed6a59;
    margin: 0;
    line-height: 1;
}

.call-cta-heading .bold-text {
    font-family: 'IvyOra Display', serif;
    font-weight: 700;
    font-style: normal;
}

.call-cta-heading .italic-text {
    font-style: italic;
}

.call-cta-heading .light-text {
    font-weight: 500;
    font-style: italic;
}

.call-cta-description {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #403936;
    margin: 0;
    line-height: 1;
}

.call-cta-description strong {
    font-weight: 700;
}

.call-cta-phone {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #403936;
    margin: 0;
    line-height: 1;
}

.call-cta-phone a {
    color: #403936;
    text-decoration: none;
}

.call-cta-phone a:hover {
    color: #ed6a59;
}

/* Call Button */
.call-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ed6a59;
    color: #fff;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 100px;
    height: 56px;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.call-cta-button:hover {
    background-color: #d95a49;
}

/* 24/7 Icon Container */
.call-cta-247-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-247 {
    width: 196.248px;
    height: 176.001px;
    display: block;
}

/* Responsive Design */

/* Tablet (max-width: 1199px) */
@media (max-width: 1199px) {
    .call-cta-section {
        padding: 0 60px;
    }

    .call-cta-container {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }

    .call-cta-icon-container {
        order: 1;
    }

    .call-icon {
        width: 100px;
        height: 100px;
    }

    .call-cta-text-container {
        order: 2;
        align-items: center;
        text-align: center;
    }

    .call-cta-heading {
        font-size: 20px;
        text-align: center;
    }

    .call-cta-description {
        text-align: center;
    }

    .call-cta-phone {
        font-size: 20px;
        text-align: center;
    }

    .call-cta-button {
        width: 100%;
        max-width: 400px;
    }

    .call-cta-247-container {
        order: 3;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .call-cta-section {
        padding: 0 16px;
    }

    .call-cta-container {
        padding: 24px;
    }

    .call-icon {
        width: 51px;
        height: 51px;
    }

    .call-cta-heading {
        font-size: 16px;
        font-weight: 700;
    }

    .call-cta-heading .bold-text,
    .call-cta-heading .italic-text,
    .call-cta-heading .light-text {
        font-weight: 700;
    }

    .call-cta-description {
        font-size: 16px;
        line-height: 1.4;
    }

    .call-cta-phone {
        font-size: 20px;
    }

    .call-cta-button {
        width: 100%;
        height: 48px;
        border-radius: 30px;
        padding: 13.663px 20.495px;
    }
}
