:root {
    --primary-color: #0c3649;
    --secondary-color: #77a36b;
    --accent-color: #f8a31b;
    --light-bg: #f8f9fa;
    --dark-text: #2d3a3a;
    --light-text: #6c757d;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(12, 54, 73, 0.9) 0%, rgba(12, 54, 73, 0.95) 100%), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(119, 163, 107, 0.2)"/></svg>');
    background-size: 100% 100%;
    opacity: 0.3;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.cta-feature span {
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 280px;
}

.cta-btn {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-btn:hover .cta-btn-icon {
    transform: scale(1.1);
}

.cta-call {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #669959 100%);
}

.cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.cta-btn-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta-btn-icon i {
    font-size: 1.5rem;
    color: white;
}

.cta-btn-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.cta-btn-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.cta-btn-subtext {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Animation for section entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-features {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        width: 100%;
    }
    
    .cta-btn {
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-btn {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .cta-btn-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cta-btn-text {
        font-size: 1.1rem;
    }
    
    .cta-btn-subtext {
        font-size: 0.85rem;
    }
}