/*==============================================
    Cta One
===============================================*/
.cta-one {
    position: relative;
    display: block;
    padding: 80px 0px 80px;
    z-index: 1;
}

.cta-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--suntop-black);
    background-blend-mode: luminosity;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.cta-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #111827;
    mix-blend-mode: luminosity;
    opacity: 0.8;
    content: "";
}

.cta-one__inner {
    position: relative;
    display: block;
}

.cta-one__inner .sec-title {
    padding-bottom: 48px;
}

.cta-one__inner .sec-title__tagline .text-box p {
    color: var(--suntop-white);
}

.cta-one__inner .sec-title__title {
    color: var(--suntop-white);
}

.cta-one__btn {
    position: relative;
    display: block;
    line-height: 0px;
}












/*==============================================
    End
===============================================*/

/*==============================================
    CTA 1: Split Diagonal
===============================================*/
.cta-diagonal {
    position: relative;
    display: flex;
    overflow: hidden;
    background: #1c1d24;
    min-height: 480px;
}

.cta-diagonal__photo {
    width: 55%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.cta-diagonal__photo::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.cta-diagonal__content-wrap {
    width: 45%;
    background: var(--suntop-base, #ef7b00);
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 60px 80px 80px;
    z-index: 2;
}

.cta-diagonal__content-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -79px;
    width: 80px;
    background: var(--suntop-base, #ef7b00);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.cta-diagonal__content {
    position: relative;
    z-index: 3;
    max-width: 500px;
}

.cta-diagonal__title {
    color: #ffffff;
    font-size: 38px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-diagonal__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
}

.cta-diagonal__btn-box {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Modifier for solid dark theme button */
.thm-btn.thm-btn--dark {
    background: #1c1d24;
    color: #ffffff !important;
}
.thm-btn.thm-btn--dark .hover-btn {
    background-color: var(--suntop-base, #ef7b00);
}

/* Modifier for outline theme button */
.thm-btn.thm-btn--outline {
    background: transparent;
    border: 2px solid #ffffff;
    line-height: 51px;
    color: #ffffff !important;
}
.thm-btn.thm-btn--outline .hover-btn {
    background-color: #ffffff;
}
.thm-btn.thm-btn--outline:hover {
    color: var(--suntop-base, #ef7b00) !important;
}

/*==============================================
    CTA 2: Emergency Alert Banner
===============================================*/
.cta-emergency {
    position: relative;
    background: #13141a;
    padding: 80px 0;
    border-top: 4px solid var(--suntop-base, #ef7b00);
    text-align: center;
}

.cta-emergency__pill {
    display: inline-block;
    background: rgba(239, 123, 0, 0.15);
    border: 1px solid var(--suntop-base, #ef7b00);
    color: var(--suntop-base, #ef7b00);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.cta-emergency__header-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.cta-emergency__icon {
    background: var(--suntop-base, #ef7b00);
    color: #ffffff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: pulse-orange 2s infinite;
}

.cta-emergency__title {
    color: #ffffff;
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    max-width: 850px;
    margin: 0;
}

.cta-emergency__desc {
    color: #a4a5a9;
    font-size: 17px;
    line-height: 28px;
    max-width: 800px;
    margin: 0 auto 35px;
}

.cta-emergency__btn-pulse {
    animation: button-pulse 2s infinite;
}

@keyframes pulse-orange {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 123, 0, 0.5);
    }
    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 15px rgba(239, 123, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 123, 0, 0);
    }
}

@keyframes button-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 123, 0, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(239, 123, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 123, 0, 0);
    }
}

/*==============================================
    CTA 3: Promise Card with Checklist
===============================================*/
.cta-promise {
    position: relative;
    background: #f7f7f9;
    padding: 80px 0;
}

.cta-promise__card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-left: 6px solid var(--suntop-base, #ef7b00);
    display: flex;
    overflow: hidden;
    padding: 60px;
    max-width: 1140px;
    margin: 0 auto;
}

.cta-promise__left {
    width: 60%;
    padding-right: 40px;
}

.cta-promise__right {
    width: 40%;
    border-left: 1px solid #eaeaea;
    padding-left: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-promise__title {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    color: var(--suntop-black, #1c1d24);
    margin-bottom: 15px;
}

.cta-promise__desc {
    font-size: 16px;
    line-height: 28px;
    color: #5a5c61;
    margin-bottom: 30px;
}

.cta-promise__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-promise__list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.cta-promise__list-icon {
    color: var(--suntop-base, #ef7b00);
    font-size: 16px;
    margin-right: 15px;
    margin-top: 4px;
    flex-shrink: 0;
}

.cta-promise__list-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--suntop-black, #1c1d24);
    line-height: 24px;
}

.cta-promise__phone-text {
    font-size: 36px;
    font-weight: 800;
    color: var(--suntop-black, #1c1d24);
    text-decoration: none !important;
    transition: color 0.3s ease;
    margin-bottom: 5px;
    display: block;
}

.cta-promise__phone-text:hover {
    color: var(--suntop-base, #ef7b00);
}

.cta-promise__phone-sub {
    font-size: 14px;
    color: #5a5c61;
    font-weight: 600;
    margin-bottom: 25px;
}

/*==============================================
    Responsive Layout Media Queries
===============================================*/
@media (max-width: 991px) {
    .cta-diagonal {
        flex-direction: column;
    }
    
    .cta-diagonal__photo {
        width: 100%;
        height: 300px;
    }
    
    .cta-diagonal__content-wrap {
        width: 100%;
        padding: 50px 30px;
    }
    
    .cta-diagonal__content-wrap::before {
        display: none;
    }

    .cta-emergency__title {
        font-size: 26px;
        line-height: 36px;
    }
    
    .cta-promise__card {
        flex-direction: column;
        padding: 40px 25px;
    }
    
    .cta-promise__left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .cta-promise__right {
        width: 100%;
        border-left: none;
        border-top: 1px solid #eaeaea;
        padding-left: 0;
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .cta-diagonal__title {
        font-size: 30px;
        line-height: 40px;
    }
    
    .cta-diagonal__btn-box {
        flex-direction: column;
        gap: 10px;
    }

    .cta-diagonal__btn-box .thm-btn {
        width: 100%;
        text-align: center;
    }

    .cta-emergency__title {
        font-size: 22px;
        line-height: 32px;
    }

    .cta-emergency__btn-pulse {
        width: 100%;
        text-align: center;
    }

    .cta-promise__title {
        font-size: 26px;
        line-height: 36px;
    }
    
    .cta-promise__phone-text {
        font-size: 28px;
    }

    .cta-promise__right .thm-btn {
        width: 100%;
        text-align: center;
    }
}