.cta-contact {
    padding: 80px 20px;
    background-color: var(--light);
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
    align-items: stretch;
}

.cta-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 24px;
}

.cta-title {
    font-size: 42px;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 18px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(var(--primary), 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.cta-hotline {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hotline-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    animation: pulse 2s infinite;
}

.hotline-info {
    display: flex;
    flex-direction: column;
}

.hotline-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hotline-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.cta-features {
    display: flex;
    gap: 24px;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary);
}

.cta-image-wrapper {
    position: relative;
    min-height: 400px;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
}

.exp-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.3;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--primary), 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(var(--primary), 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--primary), 0); }
}

@media (max-width: 992px) {
    .cta-container {
        grid-template-columns: 1fr;
    }
    .cta-image-wrapper {
        order: -1;
        height: 350px;
    }
    .cta-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .cta-contact {
        padding: 40px 15px;
    }
    .cta-title {
        font-size: 30px;
    }
    .cta-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    .cta-features {
        flex-direction: column;
        gap: 12px;
    }
    .experience-card {
        bottom: 20px;
        right: 20px;
        padding: 15px;
    }
}