.contact-hero {
    padding: 40px 0 0;
    margin-bottom: 60px;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-hero h3 {
    font-size: 1.5rem;
    color: #7f8c8d;
    font-weight: 400;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-section {
    padding: 60px 0;
}

.contact-form-container {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-form p.subtitle {
    color: #7f8c8d;
    margin-bottom: 30px;
    font-style: italic;
    font-size: 0.95rem;
}

.form-control {
    height: 50px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, .25);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.btn-submit {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.contact-info-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-card h5 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-card h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #3498db;
}

.contact-info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-info-icon {
    margin-right: 15px;
    color: #3498db;
    font-size: 1.2rem;
    min-width: 25px;
    text-align: center;
}

.contact-info-content h6 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-info-content p,
.contact-info-content a {
    color: #7f8c8d;
    margin-bottom: 0;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-content a:hover {
    color: #3498db;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 50px 0 30px;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-form-container,
    .contact-info-card {
        padding: 25px;
    }

    .contact-map {
        height: 300px;
    }
}