﻿/* --------------- Contact CTA Section --------------- */
.contact-cta-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #003b5c, #002b47);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 800px;
    margin: auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    background-color: #e65c0d;
    color: white;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .cta-button:hover {
        background-color: #ff6f2c;
        transform: scale(1.05);
    }
