/* Service Page Styles */

.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.7) 100%);
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.service-hero-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 15px;
}

.service-hero-content p {
    color: var(--gray-300);
    font-size: 1.25rem;
    margin-bottom: 25px;
}

/* Service Content */
.service-content {
    padding: 80px 0;
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.service-intro h2 {
    margin-bottom: 20px;
}

.service-intro .lead {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    margin-bottom: 60px;
}

.service-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--navy-900);
}

.service-text h3:first-child {
    margin-top: 0;
}

.service-text p {
    color: var(--gray-600);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: var(--gold-500);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.price-card {
    background: var(--navy-900);
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
}

.price-card h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.price-card p {
    color: var(--gray-400);
    margin-bottom: 25px;
}

.price-card .btn {
    width: 100%;
    margin-bottom: 12px;
    justify-content: center;
}

.price-card .btn:last-child {
    margin-bottom: 0;
}

.service-areas-card {
    background: var(--gray-50);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.service-areas-card h4 {
    margin-bottom: 15px;
    color: var(--navy-900);
}

.service-areas-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-areas-card li {
    padding: 8px 0;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-areas-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold-500);
    border-radius: 50%;
}

.service-areas-card li:last-child {
    border-bottom: none;
}

/* Service Gallery */
.service-gallery {
    margin-top: 40px;
}

.service-gallery h3 {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Service CTA */
.service-cta {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    padding: 80px 0;
    text-align: center;
}

.service-cta h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.service-cta p {
    color: var(--gray-400);
    font-size: 1.125rem;
    margin-bottom: 30px;
}

/* Before/After Section */
.before-after {
    margin: 60px 0;
}

.before-after h3 {
    text-align: center;
    margin-bottom: 30px;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.before-after-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.before-after-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.before-after-label {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    background: var(--navy-900);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.before-after-label.after {
    background: var(--gold-500);
    color: var(--navy-900);
}

/* Responsive */
@media (max-width: 900px) {
    .service-details {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        order: -1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .service-hero {
        height: 40vh;
        min-height: 300px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

