/* Contact Page Specific Styles */
.contact-page-hero {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)), url('../assets/images/contact_hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.contact-page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 80px;
}

.contact-info-section {
    background: #0a192f;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
}

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-text p, .info-text a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
}

.contact-form-section {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact-form-section h2 {
    font-size: 2rem;
    color: #0a192f;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
    outline: none;
}

.full-width {
    grid-column: span 2;
}

.submit-btn {
    background: #007bff;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.map-container {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
    .contact-page-hero h1 {
        font-size: 2.5rem;
    }
}
