/* Contact Page Styles */

.contact-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.branches-section {
    margin-bottom: 40px;
}

.branches-section h2 {
    color: #6a1480;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.branches-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.branch-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.branch {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 10px;
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.branch h3 {
    color: #6a1480;
    margin-bottom: 10px;
}

.timings-section {
    margin-bottom: 40px;
}

.timings-section h3 {
    color: #6a1480;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.doctor-timings {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.doctor {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 10px;
    flex: 1;
    min-width: 300px;
}

.doctor h4 {
    color: #6a1480;
    margin-bottom: 10px;
}

.doctor p {
    margin: 5px 0;
}

.note {
    text-align: center;
    font-weight: bold;
    color: #dc3545;
    margin-top: 20px;
}

.maps-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.map-container {
    margin: 10px;
    flex: 1;
    min-width: 300px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section h3 {
    color: #6a1480;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.btn-submit {
    background-color: #6a1480;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

.btn-submit:hover {
    background-color: #5a0f6f;
}

@media (max-width: 768px) {
    .branch-info,
    .doctor-timings,
    .maps-section {
        flex-direction: column;
        align-items: center;
    }

    .branch,
    .doctor,
    .map-container {
        width: 100%;
        max-width: 400px;
    }
}
