/* Contact Page Styles */

.breadcrumb {
    background-color: transparent;
}

.contact-section {
    padding: 10px 0;
    background-color: #f8f9fa;
}

.contact-section h2 {
    text-align: center;
    margin: 20px 0;
    color: #333;
    font-size: 2.5rem;
}

.contact-content p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.info-card h3 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.info-card p {
    margin: 10px 0;
    color: #555;
    text-align: left;
    line-height: 1.6;
}

.info-card i {
    margin-right: 10px;
    color: #007bff;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #007bff;
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.submit-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 14px 25px;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-info-container {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 30px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-content p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .info-card,
    .contact-form {
        padding: 20px;
    }
    
    .info-card h3,
    .contact-form h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 20px 0;
    }
    
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .info-card,
    .contact-form {
        padding: 15px;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}