/* Contact Page Specific Styles */

:root {
    --primary-orange: #FF5E00;
    --dark-blue: #003366;
    --light-grey: #f8f9fa;
    --text-muted: #6c757d;
}

/* Contact Hero */
.contact-hero {
    padding: 120px 0;
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.85)), url('../images/Executed Work_JES/22.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 0;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0, 51, 102, 0.05);
    height: 100%;
    transition: 0.3s;
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.contact-info-card i {
    width: 70px;
    height: 70px;
    background: #fff0e6;
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: 0.3s;
}

.contact-info-card:hover i {
    background: var(--primary-orange);
    color: white;
    transform: rotateY(360deg);
}

.contact-info-card h5 {
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.contact-info-card p, .contact-info-card a {
    color: var(--text-muted);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form-card {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.form-label {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.form-control {
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fcfcfc;
    transition: 0.3s;
}

.form-control:focus {
    background: white;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 94, 0, 0.1);
}

/* Map Section */
.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 450px;
}

@media (max-width: 991px) {
    .contact-hero-title { font-size: 2.5rem; }
    .contact-form-card { padding: 30px; }
}
