.additional-services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #F8FAF8 50%, #F0F8F0 100%);
    position: relative;
    overflow: hidden;
}

.additional-services-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(90, 138, 90, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.additional-services-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -3%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(123, 164, 40, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.additional-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.additional-services-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.additional-services-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2D4A2D;
    margin: 0 0 20px 0;
    line-height: 1.2;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.02em;
    position: relative;
}

.additional-services-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #5A8A5A, #7BA428, transparent);
    border-radius: 2px;
}

.additional-services-subtitle {
    font-size: 1.3rem;
    color: #5A6B5A;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
    margin-top: 35px;
}

.services-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.service-card-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(90, 138, 90, 0.05);
    min-height: 320px;
}

.service-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #E8F5E8, #7BA428, #E8F5E8);
    transition: all 0.3s ease;
    opacity: 0;
}

.service-card-item:hover::before {
    opacity: 1;
}

.service-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(90, 138, 90, 0.12);
}

.service-card-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #F8FAF8 100%);
    position: relative;
    box-shadow: 0 8px 30px rgba(90, 138, 90, 0.08);
}

.service-card-highlight::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, #5A8A5A, #7BA428);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.service-card-header {
    position: relative;
    margin-bottom: 24px;
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E8F5E8, #F0F8F0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-card-icon i {
    font-size: 32px;
    color: #5A8A5A;
    transition: all 0.3s ease;
}

.service-card-item:hover .service-card-icon {
    background: linear-gradient(135deg, #5A8A5A, #7BA428);
    transform: scale(1.05) rotate(5deg);
}

.service-card-item:hover .service-card-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

.service-highlight-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.service-highlight-badge i {
    font-size: 14px;
    color: #ffffff;
}

.service-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D4A2D;
    margin: 0 0 16px 0;
    line-height: 1.3;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.service-card-description {
    font-size: 1.05rem;
    color: #5A6B5A;
    margin: 0;
    line-height: 1.6;
    max-width: 90%;
}

.truck-gallery-section {
    margin: 80px 0;
    position: relative;
}

.gallery-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2D4A2D;
    margin: 0 0 50px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.gallery-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-viewport {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(90, 138, 90, 0.1);
    position: relative;
    background: #f5f5f5;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.gallery-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.gallery-nav:hover {
    background: #5A8A5A;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav:hover i {
    color: #ffffff;
}

.gallery-nav i {
    font-size: 20px;
    color: #5A8A5A;
    transition: color 0.3s ease;
}

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

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

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #5A8A5A;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-indicator.active {
    background: #5A8A5A;
    transform: scale(1.2);
}

.gallery-indicator:hover {
    background: #7BA428;
    border-color: #7BA428;
}

.services-contact-cta {
    background: linear-gradient(135deg, #F0F8F0 0%, #E8F5E8 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(90, 138, 90, 0.05);
    max-width: 800px;
    margin: 80px auto 0;
}

.services-cta-text {
    font-size: 1.2rem;
    color: #5A6B5A;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

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

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.services-btn-primary {
    background: linear-gradient(135deg, #5A8A5A, #7BA428);
    color: #ffffff;
}

.services-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(90, 138, 90, 0.3);
    background: linear-gradient(135deg, #4A7A4A, #6B9428);
    text-decoration: none;
    color: #ffffff;
}

.services-btn-secondary {
    background: #ffffff;
    color: #5A8A5A;
    border-color: #5A8A5A;
}

.services-btn-secondary:hover {
    background: #5A8A5A;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(1deg); 
    }
}

@media (max-width: 1200px) {
    .additional-services-container {
        padding: 0 30px;
    }
    
    .services-cards-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .additional-services-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .additional-services-section {
        padding: 100px 0;
    }
    
    .services-cards-wrapper {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .additional-services-title {
        font-size: 2.8rem;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-nav {
        width: 45px;
        height: 45px;
    }
    
    .gallery-nav i {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .additional-services-section {
        padding: 80px 0;
    }
    
    .additional-services-container {
        padding: 0 24px;
    }
    
    .additional-services-title {
        font-size: 2.4rem;
    }
    
    .additional-services-subtitle {
        font-size: 1.2rem;
    }
    
    .service-card-item {
        padding: 32px 24px;
        min-height: 280px;
    }
    
    .service-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-card-icon i {
        font-size: 28px;
    }
    
    .services-contact-cta {
        padding: 32px 24px;
    }
    
    .services-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .gallery-nav-prev {
        left: 10px;
    }
    
    .gallery-nav-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .additional-services-title {
        font-size: 2rem;
    }
    
    .services-cards-wrapper {
        grid-template-columns: 1fr;
    }
    
    .service-card-item {
        padding: 28px 20px;
    }
    
    .gallery-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .gallery-indicators {
        gap: 8px;
    }
    
    .gallery-indicator {
        width: 10px;
        height: 10px;
    }
}

@media (hover: none) {
    .gallery-nav {
        background: rgba(255, 255, 255, 0.95);
    }
}

@media print {
    .additional-services-section {
        background: white !important;
        padding: 40px 0 !important;
    }
    
    .service-card-item {
        box-shadow: 0 2px 10px rgba(90, 138, 90, 0.05) !important;
        break-inside: avoid;
    }
    
    .gallery-nav {
        display: none !important;
    }
    
    .gallery-indicators {
        display: none !important;
    }
}