/* Our Services Page Specific Styles */

/* Hero Section */
.services-page-hero {
    margin-bottom: 0;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.services-page-hero .hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 79, 28, 0.92) 0%, rgba(10, 61, 22, 0.95) 100%);
    z-index: 2;
}

.services-page-hero .hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.services-page-hero .hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-page-hero .container {
    position: relative;
    z-index: 3;
}

.services-hero-content {
    max-width: 800px;
    /* padding: 80px 0; */
}

.services-hero-content .hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.services-hero-content h1 .highlight {
    color: #8fd9a8;
}

.services-hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 600px;
}

@media (max-width: 768px) {
    .services-page-hero {
        min-height: 70vh;
    }

    .services-hero-content {
        padding: 60px 0;
    }
}

/* Services Navigation Cards */
.services-nav-section {
    /* padding: 80px 0; */
    background: var(--light-green);
}

.services-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-nav-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 79, 28, 0.15);
    border-color: var(--primary-color);
}

.service-nav-card:hover::before {
    transform: scaleX(1);
}

.service-nav-icon {
    width: 70px;
    height: 70px;
    background: var(--light-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-nav-card:hover .service-nav-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.service-nav-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.service-nav-card p {
    font-size: 14px;
    color: var(--secondary-color);
    line-height: 1.5;
    flex-grow: 1;
}

.service-nav-card .nav-arrow {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 16px;
    transition: transform 0.3s ease;
}

.service-nav-card:hover .nav-arrow {
    transform: translateX(8px);
}

@media (max-width: 1100px) {
    .services-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-nav-grid {
        grid-template-columns: 1fr;
    }

    .services-nav-section {
        padding: 60px 0;
    }
}

/* Service Detail Sections */
.service-detail-section {
    padding: 60px 0;
    background: var(--white);
    margin-bottom: 0;
}

.service-detail-section.alt-bg {
    background: #f8faf8;
}

.service-detail-header {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.service-number {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 800;
    color: var(--light-green);
    line-height: 1;
    font-family: 'Source Sans 3', sans-serif;
    flex-shrink: 0;
}

.service-header-content {
    flex: 1;
}

.service-header-content .section-label {
    display: block;
    margin-bottom: 16px;
}

.service-header-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-header-content p {
    font-size: 16px;
    color: var(--secondary-color);
    line-height: 1.7;
    max-width: 700px;
}

@media (max-width: 768px) {
    .service-detail-header {
        flex-direction: column;
        gap: 20px;
    }

    .service-number {
        font-size: 4rem;
    }
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-features-grid.four-cols {
    grid-template-columns: repeat(4, 1fr);
}

.service-feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--light-green);
}

.service-detail-section.alt-bg .service-feature-card {
    background: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.service-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(13, 79, 28, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
}

.service-feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 12px;
}

.service-feature-card p {
    font-size: 14px;
    color: var(--secondary-color);
    line-height: 1.6;
}

@media (max-width: 1100px) {

    .service-features-grid,
    .service-features-grid.four-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .service-features-grid,
    .service-features-grid.four-cols {
        grid-template-columns: 1fr;
    }

    .service-detail-section {
        padding: 60px 0;
    }

    .service-feature-card {
        padding: 28px;
    }
}

/* Enhanced Industries Grid for Services Page */
.industries-grid.enhanced {
    grid-template-columns: repeat(4, 1fr);
}

.industries-grid.enhanced .industry-item {
    padding: 28px 20px;
}

.industries-grid.enhanced .industry-item p {
    font-size: 13px;
    color: var(--secondary-color);
    margin-top: 8px;
}

@media (max-width: 1100px) {
    .industries-grid.enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .industries-grid.enhanced {
        grid-template-columns: 1fr;
    }
}

/* Form Select Styling */
.quote-form select {
    padding: 14px 18px;
    border: 2px solid var(--light_grey_border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--dark-green);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230d4f1c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.quote-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 79, 28, 0.1);
}

/* Smooth scroll offset for anchor links */
.service-detail-section {
    scroll-margin-top: 80px;
}

.fleet-section-our-service {
    padding-bottom: clamp(2.5rem, 0.97rem + 3.1917vw, 4.8rem);

}