/* Contact Page Styles */
.contact-page-header {
    background-color: #163172;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.contact-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1560264280-88b68371db39?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.contact-page-header .container {
    position: relative;
    z-index: 1;
}

.contact-page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.contact-page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent);
}

.contact-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-info-wrapper {
    padding: 40px;
    background-color: #163172;
    color: #fff;
    height: 100%;
}

.contact-info-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #fff;
}

.contact-info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 24px;
    margin-right: 15px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.contact-info-item p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-info-content {
    flex: 1;
}

.social-icons {
    margin-top: 40px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
    border: none;
}

.social-icons a:hover {
    background-color: #fff;
    color: #163172;
    transform: translateY(-5px);
}

.contact-form-wrapper {
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #163172;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #163172;
}

.contact-form .form-control {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: #163172;
}

.contact-form .form-label {
    font-weight: 600;
    color: #333;
}

.contact-form .btn-primary {
    padding: 12px 30px;
    background-color: #163172;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: #0e2358;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(22, 49, 114, 0.2);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.map-container iframe {
    display: block;
}

@media (max-width: 991.98px) {
    .contact-page-header {
        padding: 60px 0;
    }
    
    .contact-page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-wrapper, .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .contact-page-header {
        padding: 40px 0;
    }
    
    .contact-page-header h1 {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info-wrapper {
        margin-bottom: 30px;
    }
}
