/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0, 45, 91, 0.9), rgba(0, 45, 91, 0.8)), url('../assets/images/warehouse.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    /* margin-top: 76px; */
    text-align: center;
    color: var(--white);
}

.services-hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero .lead {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.service-category {
    margin-bottom: 60px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.service-category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.service-category-header h2 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-feature {
    background-color: var(--light-blue);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-orange);
}

.service-feature h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-feature p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Service Detail Pages */
.service-detail-hero {
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    margin-top: 76px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 45, 91, 0.9), rgba(0, 45, 91, 0.7));
}

.service-detail-hero .container {
    position: relative;
    z-index: 1;
}

.service-detail-hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-detail-hero .lead {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 30px;
}

.service-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-stat {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 150px;
    backdrop-filter: blur(10px);
}

.service-stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.service-stat .label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Service Sections */
.service-sections {
    padding: 80px 0;
    background-color: var(--white);
}

.service-section {
    margin-bottom: 60px;
}

.service-section:last-child {
    margin-bottom: 0;
}

.service-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 15px;
}

.service-section-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.service-section-header h2 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 2rem;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-benefit {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

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

.service-benefit h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-benefit p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    padding: 8px 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 25px;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-orange);
    font-weight: bold;
}

/* Service Comparison Tables */
.service-comparison {
    margin-top: 60px;
    background-color: var(--light-gray);
    padding: 60px 0;
}

.comparison-table {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    color: var(--medium-gray);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--light-blue);
}

.comparison-table .feature {
    font-weight: 500;
    color: var(--primary-blue);
}

/* CTA Section */
.service-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.service-cta h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.service-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
}

.service-cta .btn {
    background-color: var(--secondary-orange);
    border-color: var(--secondary-orange);
    color: var(--white);
    font-size: 1.1rem;
    padding: 15px 40px;
}

.service-cta .btn:hover {
    background-color: #e05e1a;
    border-color: #e05e1a;
    transform: translateY(-3px);
}

/* Service Gallery */
.service-gallery {
    padding: 60px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 45, 91, 0.9));
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Responsive Styles for Services Pages */
@media (max-width: 992px) {
    .services-hero h1,
    .service-detail-hero h1 {
        font-size: 3rem;
    }
    
    .services-hero .lead,
    .service-detail-hero .lead {
        font-size: 1.3rem;
    }
    
    .service-category-header h2 {
        font-size: 1.8rem;
    }
    
    .service-stats {
        gap: 20px;
    }
    
    .service-stat {
        min-width: 130px;
        padding: 15px;
    }
    
    .service-stat .number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero,
    .service-detail-hero {
        padding: 100px 0 60px;
    }
    
    .services-hero h1,
    .service-detail-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-hero .lead,
    .service-detail-hero .lead {
        font-size: 1.2rem;
    }
    
    .service-category-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-category-icon {
        margin-right: 0;
    }
    
    .service-section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
}

@media (max-width: 576px) {
    .services-hero h1,
    .service-detail-hero h1 {
        font-size: 2rem;
    }
    
    .services-hero .lead,
    .service-detail-hero .lead {
        font-size: 1rem;
    }
    
    .service-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .service-stat {
        width: 100%;
        max-width: 250px;
    }
    
    .service-cta h2 {
        font-size: 2rem;
    }
    
    .service-cta p {
        font-size: 1rem;
    }
}