/* Contact Page Specific Styles */

/* Page Header */
.page-header {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/gallery-bg.jpg');

    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: #fff;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Contact Info Section */
.contact-method {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-method p {
    margin-bottom: 5px;
    color: #555;
}

/* Campuses Section */
.campus-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.campus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.campus-map {
    height: 300px;
    overflow: hidden;
}

.campus-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.campus-info {
    padding: 20px;
}

.campus-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.campus-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.campus-info i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Contact Form Section */
.contact-form-section {
    background: #fff;
}

#contactForm {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
}

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 5px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

/* FAQ Section */
.accordion-item {
    border: none;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.accordion-button {
    font-weight: 600;
    padding: 15px 20px;
    background: #fff;
    color: var(--primary-color);
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--secondary-color);
    color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 20px;
    background: rgba(52, 152, 219, 0.05);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .page-header {
        padding: 80px 0 50px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .contact-method {
        margin-bottom: 20px;
    }
    
    #contactForm {
        padding: 20px;
    }
}