/* Contact Page Modern Styles */
:root {
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-800: #343a40;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url("../images/contact-hero-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    margin-bottom: 50px;
    text-align: center;
    min-height: 200px;
}

.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.modern-breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 15px;
    display: inline-flex;
}

.modern-breadcrumb .breadcrumb-item {
    color: #ffffff;
}

.modern-breadcrumb .breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
}

.modern-breadcrumb .breadcrumb-item a:hover {
    text-decoration: underline;
}

.modern-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.modern-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
    content: ">";
} /* Contact Form Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto;
}

.modern-contact-form {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 60px;
}

.form-group {
    margin-bottom: 25px;
}

.modern-form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid var(--gray-300);
    padding: 10px 15px;
    font-size: 1rem;
    transition: all 0.3s;
}

.modern-form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

textarea.modern-form-control {
    height: auto;
    min-height: 120px;
}

.modern-submit-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.modern-submit-btn:hover {
    background-color: #0069d9;
    transform: translateY(-2px);
}

/* Map Section */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 400px;
    margin-bottom: 30px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Info Cards */
.info-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

.info-card p {
    color: var(--secondary);
    margin-bottom: 5px;
}

/* Social Links */
.social-links {
    padding: 30px 0;
}

.social-links h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #0069d9;
    transform: translateY(-3px);
}

/* Alert Styles */
.modern-alert {
    border-radius: 5px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-left: 4px solid var(--success);
    color: #155724;
}

/* Appointment Modal Styles */
#appointmentModal .modal-header {
    background-color: var(--primary);
    border-radius: 5px 5px 0 0;
}

#appointmentModal {
    z-index: 1050;
}

#appointmentModal .modal-content {
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
}
#appointmentModal .modal-title {
    font-weight: 600;
}

#appointmentModal .form-control {
    height: 45px;
    border-radius: 5px;
    border: 1px solid var(--gray-300);
}

#appointmentModal textarea.form-control {
    height: auto;
}

#appointmentModal .form-group label {
    font-weight: 500;
    color: var(--dark);
}

#appointmentModal .btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

#appointmentModal .btn-primary:hover {
    background-color: #0069d9;
    transform: translateY(-2px);
}

#appointmentModal .btn-secondary {
    background-color: var(--gray-300);
    color: var(--dark);
    border: none;
}

#appointmentModal input[type="date"] {
    padding-right: 10px;
} /* Responsive Styles */
@media (max-width: 991px) {
    .contact-hero {
        padding: 80px 0;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .modern-contact-form {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .map-container {
        height: 300px;
        margin-bottom: 40px;
    }

    .info-card {
        margin-bottom: 20px;
    }
}
