/* ---- Service Pages Styles ---- */

.video-container {
    display: flex;
    justify-content: center; /* Qendron videot ne qender */
    gap: 20px; /* Hapesire mes videove */
    flex-wrap: wrap; /* Ne rast se faqja zvogelohet, videot do zbresin poshte */
  }

  video {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

.container h2 {
    color: black;
}

/* Hero Section */
.service-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    background-image: url('../img/backgrounds/back.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.service-hero-plaster {
    background-image: url('../img/backgrounds/back.jpg');
}

.service-hero-naturo {
    background-image: url('../img/backgrounds/back.jpg');
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: left;
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.service-hero-subtitle {
    font-size: 1.4rem;
    max-width: 600px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Service Introduction */
.service-intro {
    padding: var(--section-spacing) 0;
    background-color: white;
}

.service-intro-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-intro-text {
    flex: 1;
}

.service-intro-image {
    flex: 1;
}

.service-intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.service-intro h2 {
    text-align: left;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.service-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.service-intro p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-features {
    margin: 30px 0;
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.service-features svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Gallery Section */
.service-gallery {
    padding: var(--section-spacing) 0;
    background-color: var(--light-gray);
    position: relative;
}

.service-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255,215,0,0.05) 0%, rgba(29,29,29,0.03) 100%);
    pointer-events: none;
}

.gallery-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto 20px;
}

.gallery-slider {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 500px;
    /* box-shadow: var(--box-shadow); */
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 10;
}

.gallery-nav:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    background-color: var(--medium-gray);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.gallery-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.gallery-thumbs .thumb {
    width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.gallery-thumbs .thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-thumbs .thumb.active {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Process Section */
.service-process {
    padding: var(--section-spacing) 0;
    background-color: white;
}

.process-steps {
    margin-top: 50px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    height: calc(100% + 20px);
    width: 2px;
    background-color: var(--light-gray);
    z-index: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-right: 25px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-content {
    padding-top: 5px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Benefits Section */
.service-benefits {
    padding: var(--section-spacing) 0;
    background-color: var(--light-gray);
    position: relative;
}

.service-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255,215,0,0.05) 0%, rgba(29,29,29,0.03) 100%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.benefit-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
}

.benefit-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.benefit-card p {
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Info Section */
.service-info {
    padding: var(--section-spacing) 0;
    background-color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    position: relative;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--light-gray);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.info-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.info-card p {
    line-height: 1.6;
}

/* CTA Section */
.cta-full {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255,215,0,0.15) 0%, rgba(29,29,29,0.1) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Related Services Section */
.related-services {
    padding: var(--section-spacing) 0;
    background-color: white;
}

.related-services-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.related-service-card {
    flex: 0 0 calc(50% - 30px);
    max-width: 450px;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--hover-transition);
}

.related-service-image {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.related-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-service-card:hover .related-service-image img {
    transform: scale(1.05);
}

.related-service-content {
    padding: 25px;
}

.related-service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
}

.related-service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.related-service-card:hover h3::after {
    width: 70px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .service-intro-grid {
        gap: 40px;
    }
    
    .benefits-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        height: 50vh;
    }
    
    .service-hero h1 {
        font-size: 2.8rem;
    }
    
    .service-intro-grid {
        flex-direction: column-reverse;
        gap: 30px;
    }
    
    .gallery-slider {
        height: 350px;
    }
    
    .related-services-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .related-service-card {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .service-hero h1 {
        font-size: 2.3rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-slider {
        height: 250px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .gallery-thumbs .thumb {
        width: 80px;
        height: 60px;
    }
}