.service-hero {
    padding: 120px 0 80px;
}

.bg-gray-900 {
    background-color: #1a1a1a !important;
}

.bg-gray-800 {
    background-color: #2d2d2d !important;
}

.border-gray-700 {
    border-color: #404040 !important;
}

.text-gray-300 {
    color: #d1d5db !important;
}

.text-gray-400 {
    color: #9ca3af !important;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ff6b35;
}

.feature-icon {
    font-size: 2rem;
    color: #ff6b35 !important;
}

.benefit-item {
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background-color: #333 !important;
    transform: translateX(5px);
    border-color: #ff6b35 !important;
}

.btn {
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Scroll to Top Button Styles */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .display-5 {
        font-size: 2.2rem;
    }

    .display-6 {
        font-size: 1.8rem;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .feature-icon {
        font-size: 1.7rem;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 576px) {
    .service-hero {
        padding: 80px 0 40px;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1.1rem !important;
    }
}


