/* ===================================
   CTA Section Styles
   =================================== */

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--brand-color), var(--brand-hover));
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 15px;
    }
}

/* Background Decorative Elements */
.cta-decoration-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(100px, -200px);
}

@media (max-width: 768px) {
    .cta-decoration-1 {
        width: 300px;
        height: 300px;
        transform: translate(50px, -150px);
    }
}

.cta-decoration-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transform: translate(-100px, 150px);
}

@media (max-width: 768px) {
    .cta-decoration-2 {
        width: 200px;
        height: 200px;
        transform: translate(-50px, 100px);
    }
}

/* Content Container */
.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 24px;
    font-family: var(--font-family-elegant);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 48px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-subtitle {
        font-size: 18px;
        margin-bottom: 36px;
    }
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .cta-btn {
        padding: 16px 30px;
        font-size: 16px;
        justify-content: center;
    }
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Primary CTA Button (Phone) */
.cta-btn-primary {
    background: var(--white);
    color: var(--brand-color);
}

.cta-btn-primary:hover {
    background: var(--gray-50);
}

/* Secondary CTA Button (WhatsApp) */
.cta-btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.cta-btn-whatsapp:hover {
    background: #20BD5A;
}

/* Button Icons */
.cta-btn-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-btn-icon {
        width: 20px;
        height: 20px;
    }
}