/* Service page specific styles */
.service-header {
    background: linear-gradient(135deg, #228B22 0%, #8B4513 50%, #D2691E 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.service-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-content {
    padding: 60px 0;
}

.service-description {
    margin-bottom: 40px;
}

.service-description ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-description li {
    margin-bottom: 8px;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.photo-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.photo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.photo-caption {
    padding: 15px;
    background-color: white;
}

.before-after {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.before-after-pair {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    max-width: 700px;
}

.comparison {
    display: flex;
    flex-direction: row;
}

.comparison-item {
    flex: 1;
}

.comparison-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.comparison-labels {
    display: flex;
}

.comparison-labels span {
    flex: 1;
    text-align: center;
    padding: 10px;
    background-color: #faf8f5;
    font-weight: bold;
}

.back-to-home {
    text-align: center;
    padding: 30px 0;
}

.back-to-home .btn {
    margin: 0 10px;
}

/* Header navigation */
.page-nav {
    padding: 15px 0;
    background-color: #faf8f5;
    border-bottom: 1px solid rgba(139, 69, 19, 0.2);
}

.page-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B4513;
    text-decoration: none;
}

.page-nav .nav-links {
    display: flex;
    gap: 20px;
}

.page-nav .nav-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.page-nav .nav-links a:hover {
    color: #8B4513;
}

/* Mobile nav */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #8B4513;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        background-color: #faf8f5;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
        border-radius: 0 0 0 10px;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .service-header h1 {
        font-size: 2rem;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .comparison {
        flex-direction: column;
    }
    
    .comparison-labels {
        flex-direction: column;
    }
    
    .before-after-pair {
        flex: 1 1 100%;
    }
}
