/* CTA Section Styles */
.cta-section {
    padding: 0;
    margin: 100px 0;
    position: relative;
    background-color: var(--light-bg);
   
}

.cta-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    
}

/* Background Styles */
.cta-background {
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(var(--secondary-color-rgb), 0.95),
        rgba(var(--primary-color-rgb), 0.85));
    z-index: 2;
}

/* Content Styles */
.cta-content {
    position: relative;
    z-index: 3;
    padding: 80px;
    color: var(--white);
    max-width: 800px;
    color: black;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item .icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.info-item:hover .icon {
    background: var(--primary-color);
    transform: rotateY(360deg);
}

.info-item .info {
    display: flex;
    flex-direction: column;
}

.info-item .label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.info-item .value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
   
}

.info-item:hover .value {
    color: var(--primary-color);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-outline-light {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-light:hover {
    background: var(--primary-color);
    color: var(--transition);
}

.cta-buttons .btn i {
    transition: transform 0.3s ease;
}

.cta-buttons .btn:hover i {
    transform: translateX(5px);
}

/* Animation Classes */
.cta-section .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.cta-section .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Delays */
.cta-section [data-delay="100"] { transition-delay: 0.1s; }
.cta-section [data-delay="200"] { transition-delay: 0.2s; }
.cta-section [data-delay="300"] { transition-delay: 0.3s; }
.cta-section [data-delay="400"] { transition-delay: 0.4s; }

/* Responsive Styles */
@media (max-width: 991.98px) {
    .cta-section {
        margin: 80px 0;
    }

    .cta-content {
        padding: 60px;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .cta-content {
        padding: 40px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .cta-section {
        margin: 60px 0;
    }

    .cta-content {
        padding: 30px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }
}