/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 48px 0;
}

.section.services-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/images/parcel_handing.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 96px 0;
}

.section.services-section .section-title,
.section.services-section .section-subtitle {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 18px;
    color: #666666;
    text-align: center;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 16px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-description {
    color: #666666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 16px;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: #666666;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fbb511;
    font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #F5F5F5;
}

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

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-description {
    color: #666666;
    line-height: 1.6;
}

/* Customers Section */
.customers-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/images/parcel_handing.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    position: relative;
    padding: 48px 0;
}

.customers-content {
    text-align: center;
}

.customers-text h2 {
    color: white;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.customers-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 48px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Customer Logos Carousel */
.customer-logos-carousel {
    overflow: hidden;
    position: relative;
    margin-top: 32px;
}

.customer-logos-row {
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 20px;
}

.customer-logos-row:last-child {
    margin-bottom: 0;
}

.customer-logos-track {
    display: inline-flex;
    align-items: center;
    gap: 60px;
}

.customer-logos-track.first-row {
    animation: scroll-left 35s linear infinite;
}

.customer-logos-track.second-row {
    animation: scroll-right 40s linear infinite;
}

.customer-logo {
    flex-shrink: 0;
    height: 50px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.8);
    transition: all 0.3s ease;
    background: white;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.customer-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.customer-logos-carousel:hover .customer-logos-track {
    animation-play-state: paused;
}
