/* Service Pages Styles */

/* Breadcrumb */
.breadcrumb-container {
    background: var(--light-bg);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span:last-child {
    color: var(--primary);
    font-weight: 600;
}

/* Service Hero */
/* Service Hero Creative */
.service-hero {
    padding: 100px 0 80px;
    background-color: #0d0f12;
    background-image:
        radial-gradient(circle at 90% 10%, rgba(45, 148, 53, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(45, 148, 53, 0.1) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
    background-position: 0 0, 0 0, -1px -1px, -1px -1px;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    /* Base properties set above. Specific bgs below override background-image */
}

/* Specific Hero Backgrounds */
.hero-vas {
    background-image:
        linear-gradient(to bottom, rgba(13, 15, 18, 0.8), rgba(13, 15, 18, 0.95)),
        url('../pic/gallery/gallery_1.jpg');
    background-size: cover;
    background-position: center;
}

.hero-szines {
    background-image:
        linear-gradient(to bottom, rgba(13, 15, 18, 0.8), rgba(13, 15, 18, 0.95)),
        url('../pic/gallery/gallery_3.jpg');
    background-size: cover;
    background-position: center;
}

.hero-bontas {
    background-image:
        linear-gradient(to bottom, rgba(13, 15, 18, 0.8), rgba(13, 15, 18, 0.95)),
        url('../pic/gallery/gallery_9.jpg');
    background-size: cover;
    background-position: center;
}

.hero-lom {
    background-image:
        linear-gradient(to bottom, rgba(13, 15, 18, 0.8), rgba(13, 15, 18, 0.95)),
        url('../pic/gallery/gallery_6.jpg');
    background-size: cover;
    background-position: center;
}

.hero-quote {
    background-image:
        linear-gradient(to bottom, rgba(13, 15, 18, 0.8), rgba(13, 15, 18, 0.95)),
        url('../pic/gallery/gallery_8.jpg');
    /* Truck/Scale image */
    background-size: cover;
    background-position: center;
}

.service-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: white;
    margin-bottom: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 30%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 12px rgba(45, 148, 53, 0.2));
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

/* Service Content */
.service-content {
    padding: 80px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.main-content {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.main-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark);
    margin: 48px 0 24px;
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
}

/* Service Images Grid */
.service-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.image-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.image-caption {
    padding: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

/* Content Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.sidebar-box {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.sidebar-box h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.sidebar-box.highlight {
    background: var(--primary-light);
    border: 2px solid var(--primary);
}

.sidebar-box.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.sidebar-box.cta h3 {
    color: white;
}

.sidebar-box.cta p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.sidebar-box.cta .btn-primary {
    background: white;
    color: var(--primary);
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sidebar-box.cta .btn-primary:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

/* Lists */
.benefits-list,
.materials-list {
    list-style: none;
    padding: 0;
}

.benefits-list li,
.materials-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.benefits-list li:last-child,
.materials-list li:last-child {
    border-bottom: none;
}

.benefits-list li {
    color: var(--text);
    font-weight: 500;
}

.materials-list li {
    color: var(--text-light);
}

/* CTA Section Spectucular */
.cta-section {
    background: linear-gradient(135deg, #0f1115 0%, #1a3c22 100%);
    padding: 100px 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Background Texture & Glow */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(45, 148, 53, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 148, 53, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    /* Glassy container */
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: white;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #fff 0%, #81e68b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: none;
}

.cta-box p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-cta-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(45, 148, 53, 0.4);
    border: 2px solid var(--primary);
}

.btn-cta-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 148, 53, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--dark);
    border-color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(45, 148, 53, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(45, 148, 53, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 968px) {
    .service-hero h1 {
        font-size: 2.2rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-content {
        padding: 32px 24px;
    }

    .service-images {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        order: -1;
        position: static;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        justify-content: center;
    }
}