.cta-section {
    position: relative;
    padding: 120px 0;
    margin-top: 100px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(39, 55, 77, 0.05), rgba(157, 108, 68, 0.05));
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pattern-luxury.png');
    opacity: 0.03;
    z-index: 2;
}

.container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 3;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.cta-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.service-item {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 24px;
    color: #9D6C44;
}

.service-item h3 {
    font-size: 1.1rem;
    color: #9D6C44;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.cta-description {
    font-size: 1.2rem;
    color: #9D6C44;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.phone {
    background-color: #9D6C44;
    color: white;
    box-shadow: 0 4px 15px rgba(39, 55, 77, 0.15);
}

.cta-button.phone:hover {
    background-color: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 55, 77, 0.2);
}

.cta-button.estimate {
    background-color: transparent;
    color: #9D6C44;
    border: 2px solid #9D6C44;
}

.cta-button.estimate:hover {
    background-color: #9D6C44;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .cta-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
        margin-top: 60px;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-services {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}
