﻿/* Contact Hero Section Styling */
.contact-hero {
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a4b78 0%, #083152 100%);
}

    .contact-hero h1 {
        text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

.hero-divider {
    width: 80px;
    height: 4px;
    background: #ff9800;
    border-radius: 2px;
}

.contact-hero .lead {
    font-weight: 300;
    letter-spacing: 0.5px;
}

.contact-hero p {
    text-shadow: 0 1px 5px rgba(0,0,0,0.1);
}


/* Decorative Elements */
.hero-shape-1,
.hero-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    right: -5%;
    top: -10%;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    left: -10%;
    bottom: -15%;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .contact-hero {
        padding: 40px 0 50px;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 30px 0 40px;
    }

    .contact-info-card {
        padding: 25px 15px;
    }
}








/* Contact Form Section Styles */
.contact-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }

.card-header {
    background-color: #0a4b78 !important;
    border-bottom: none;
}

.form-control {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-control:focus {
        border-color: #0a4b78;
        box-shadow: 0 0 0 0.25rem rgba(10, 75, 120, 0.25);
    }

textarea.form-control {
    resize: vertical;
}

.btn-primary {
    background-color: #0a4b78;
    border-color: #0a4b78;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #083d61;
        border-color: #083d61;
        transform: translateY(-2px);
    }

/* Call-to-Action Section Styles */
.cta-section {
    background-color: #ffffff;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    padding: 40px 0;
}

.btn-cta {
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-transform: uppercase;
    min-width: 200px;
}

    .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

.btn-orange {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    border: none;
    color: white;
}

.btn-green {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    border: none;
    color: white;
}

/* Quick Links Section */
.quick-links {
    margin-top: 20px;
    font-size: 0.9rem;
}

    .quick-links a {
        color: #495057;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .quick-links a:hover {
            color: #0a4b78;
        }

.separator {
    color: #ced4da;
    display: inline-block;
    margin: 0 0.25rem;
}

@media (max-width: 767.98px) {
    .quick-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .separator {
        display: none;
    }
}
