/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #0b3d2e 0%, #0d4d3a 100%);
    padding: 60px 5%;
    color: white;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-content {
    margin-bottom: 30px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

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

.cta-hotline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.cta-hotline a {
    color: #bfc932;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-hotline a:hover {
    color: white;
}

.cta-button-wrapper {
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    background-color: #bfc932;
    color: #0b3d2e;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: white;
    color: #0b3d2e;
    transform: translateY(-3px);
}

.cta-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 5%;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 0.9rem;
    }
}
