/* CTA2 Section */
.cta2-section {
    padding: var(--spacing-xl) 0;
    color: #fff;
}

.cta2-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Side - Text Content */
.cta2-wrapper>.cta2-text {
    flex: 1;
}

.cta2-wrapper>.cta2-text .cta2-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta2-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Right Side - Contact Information */
.cta2-contacts {
    display: flex;
    align-items: center;
    gap: 50px;
}

.cta2-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-base);
    text-decoration: none;
    color: inherit;
}

.cta2-item:hover {
    opacity: 0.85;
    transform: translateX(5px);
}

.cta2-item:hover .cta2-icon {
    transform: scale(1.1);
}

.cta2-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition-base);
}

.cta2-icon svg {
    width: 44px;
    height: 44px;
    fill: currentColor;
}

.cta2-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cta2-content .cta2-title {
    font-size: 24px;
    font-size: 1.5rem;
    margin: 0 0 0.3em;
    font-weight: 700;
    color: #fff;
}

.cta2-content .cta2-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
    line-height: 1.2;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .cta2-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .cta2-contacts {
        flex-direction: column;
        gap: 30px;
    }

    .cta2-wrapper>.cta2-text .cta2-title {
        font-size: 28px;
    }

    .cta2-section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 767px) {
    .cta2-wrapper>.cta2-text .cta2-title {
        font-size: 24px;
    }

    .cta2-desc {
        font-size: 14px;
    }

    .cta2-item {
        gap: 12px;
    }

    .cta2-icon {
        width: 45px;
        height: 45px;
    }

    .cta2-icon svg {
        width: 20px;
        height: 20px;
    }

    .cta2-content .cta2-title {
        font-size: 15px;
    }

    .cta2-content .cta2-text {
        font-size: 13px;
    }

    .cta2-section {
        padding: var(--spacing-md) 0;
    }
}