/* Contact Hero Section */
.contact-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
    z-index: 1;
}

.contact-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(58, 147, 180, 0.8) 0%, rgba(42, 122, 143, 0.8) 100%);
    display: flex;
    align-items: center;
}

.contact-hero__title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-hero__subtitle {
    color: #fff;
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    z-index: 1;
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-info-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3a93b4 0%, #2a7a8f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-card__icon i {
    color: #fff;
    font-size: 32px;
}

.contact-info-card__content h4 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-card__content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-info-card__content a {
    color: #3a93b4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card__content a:hover {
    color: #2a7a8f;
}

/* Social Links */
.social-links {
    margin-top: 50px;
}

.social-links h4 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-links__list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links__item {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3a93b4 0%, #2a7a8f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(58, 147, 180, 0.4);
    color: #fff;
}

.social-links__item i {
    font-size: 24px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #3a93b4;
    box-shadow: 0 0 0 0.2rem rgba(58, 147, 180, 0.25);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #3a93b4 0%, #2a7a8f 100%);
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(58, 147, 180, 0.4);
}

.contact-form .btn-primary i {
    margin-right: 10px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    z-index: 1;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    border-radius: 20px;
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
    margin-bottom: 20px;
    padding: 15px 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.btn-close {
    background: none;
    border: none;
    font-size: 18px;
    color: inherit;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 300px;
        margin-top: 0;
    }
    
    .contact-hero__title {
        font-size: 2.5rem;
    }
    
    .contact-hero__subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .map-section {
        padding: 60px 0;
    }
    
    .social-links__list {
        gap: 15px;
    }
    
    .social-links__item {
        width: 50px;
        height: 50px;
    }
    
    .social-links__item i {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero__title {
        font-size: 2rem;
    }
    
    .contact-hero__subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-info-card__icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-info-card__icon i {
        font-size: 24px;
    }
} 