/* Parallax CTA Section */
.parallax-cta-section {
    position: relative;
    min-height: 500px;
    padding: 80px 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Fallback for mobile (no fixed attachment support) */
@supports (-webkit-touch-callout: none) {
    .parallax-cta-section {
        background-attachment: scroll;
    }
}

.parallax-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.8) 100%);
    pointer-events: none;
}

.parallax-cta-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.parallax-cta-box {
    background: #14176c;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 450px;
    margin-left: auto;
    margin-right: 60px;
    box-shadow: 0 20px 50px rgba(20, 23, 108, 0.3);
}

.parallax-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 30px;
}

.parallax-cta-title span {
    font-style: italic;
    color: #ffa800;
}

.parallax-cta-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.parallax-cta-phone-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 168, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-cta-phone-icon i {
    font-size: 22px;
    color: #ffa800;
}

.parallax-cta-phone-text {
    display: flex;
    flex-direction: column;
}

.parallax-cta-phone-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.parallax-cta-phone-number {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.parallax-cta-phone-number:hover {
    color: #ffa800;
}

.btn-parallax-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffa800;
    color: #14176c;
    padding: 16px 35px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-parallax-cta:hover {
    background: #ffffff;
    color: #14176c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 168, 0, 0.3);
}

.btn-parallax-cta i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-parallax-cta:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .parallax-cta-section {
        min-height: 350px;
        background-attachment: scroll;
    }

    .parallax-cta-box {
        max-width: 100%;
        margin: 0 auto;
    }

    .parallax-cta-section::before {
        background: rgba(255, 255, 255, 0.85);
    }
}

@media (max-width: 576px) {
    .parallax-cta-box {
        padding: 35px 25px;
    }

    .parallax-cta-title {
        font-size: 22px;
    }
}