/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact-header.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    text-align: center;
    color: var(--text-white);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: var(--text-white);
    font-size: 16px;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-white);
}

/* Section Title */
.section-title h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Info Cards */
.contact-info-card {
    background-color: var(--text-white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: var(--secondary-color);
    transform: rotateY(180deg);
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-info-card p {
    color: var(--text-gray);
    margin-bottom: 8px;
}

.contact-info-card p:last-child {
    margin-bottom: 0;
}

.contact-info-card a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Map Section */
.map-section {
    padding-top: 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Contact Form */
.contact-form-container {
    background-color: var(--text-white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    padding: 10px 15px;
    font-size: 16px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}

textarea.form-control {
    height: auto;
}

.form-check-label {
    font-size: 14px;
    color: var(--text-gray);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .page-header h1 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .page-header {
        padding: 80px 0;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .page-header h1 {
        font-size: 30px;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .contact-info-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 26px;
    }
    
    .breadcrumb-item, 
    .breadcrumb-item a {
        font-size: 14px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .form-control {
        height: 45px;
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 10px 25px;
    }
} 