/* Section Header Backgrounds */
.section-header {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M20 20h10v10H20zM60 20h10v10H60zM20 60h10v10H20zM60 60h10v10H60z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 1;
}

.section-header .container {
    position: relative;
    z-index: 2;
}

.section-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

/* Specific Page Headers */
.about-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('../images/headers/women1.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.services-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('../images/headers/women2.jpg') no-repeat bottom center/cover;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.team-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('../images/headers/women3.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.gallery-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('../images/headers/women4.jpeg') no-repeat top center/cover;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.contact-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('../images/headers/women5.jpg') no-repeat bottom center/cover;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.appointment-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('../images/headers/women.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.service-detail-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('../images/headers/women5.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}  

.appointment-header h1 {
    position: relative;
    z-index: 2;
}

.appointment-header .breadcrumb {
    position: relative;
    z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-header {
        padding: 80px 0 60px;
    }
    
    .section-header h1 {
        font-size: 2.5rem;
    }
}
