/* Services Page Deep Blue Theme - Garbage2Go */

/* Page title wrapper with deep blue background */
.page-title-wrapper {
    background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)), url('style/images/art/bg11.jpg') !important;
}

/* Service boxes highlighting with deep blue */
.box.highlight-blue {
    border-top: 4px solid #001f3f !important;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.box.highlight-blue:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0, 31, 63, 0.2) !important;
}

/* Service box shadows */
.box.shadow {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.box.shadow:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Service box styling */
.box {
    padding: 40px 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box h5 {
    color: #001f3f !important;
    font-weight: 600;
    margin-bottom: 15px;
}

.box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Button styling */
.btn-outline-primary {
    border-color: #001f3f !important;
    color: #001f3f !important;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #001f3f !important;
    border-color: #001f3f !important;
    color: white !important;
}

.btn-outline-success {
    border-color: #00EC01 !important;
    color: #00EC01 !important;
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background-color: #00EC01 !important;
    border-color: #00EC01 !important;
    color: white !important;
}

.btn-primary {
    background-color: #001f3f !important;
    border-color: #001f3f !important;
    padding: 15px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: rgba(0, 31, 63, 0.9) !important;
    border-color: rgba(0, 31, 63, 0.9) !important;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
}

/* Section titles with deep blue */
.display-2 {
    color: #001f3f !important;
    font-weight: 700;
}

h4 {
    color: #001f3f !important;
    font-weight: 600;
}

/* Icon colors */
.icon.color-default {
    color: #001f3f !important;
}

/* Counter values styling */
.counter .value {
    color: #001f3f !important;
    font-weight: 700;
    font-size: 3rem;
}

.counter p {
    color: #666 !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

/* Service categories section */
.wrapper.gray-wrapper {
    background-color: #f8f9fa !important;
}

/* List styling */
.icon-list.bullet-default li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 10px;
}

.icon-list.bullet-default li i {
    color: #001f3f !important;
    margin-right: 10px;
}

/* Service category icons */
.d-flex .icon {
    background: rgba(0, 31, 63, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #001f3f !important;
}

/* Lead text styling */
.lead {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Page title styling */
.page-title {
    color: white !important;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .box {
        padding: 30px 20px;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 14px;
        margin-bottom: 15px;
        display: block;
        width: 100%;
    }
    
    .display-2 {
        font-size: 2rem;
    }
    
    .d-flex .icon {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
    
    .icon.fs-48 {
        font-size: 32px !important;
    }
}

@media (max-width: 576px) {
    .box {
        margin-bottom: 20px;
    }
    
    .counter .value {
        font-size: 2.5rem;
    }
    
    .space40 {
        height: 20px;
    }
}

/* Special highlighting for featured services */
.highlight-blue .icon i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Call to action styling */
.text-center .btn + .mx-3 + .btn {
    margin-left: 0;
}

.mx-3 {
    color: #666;
    font-weight: 500;
}

/* Enhanced box hover effects */
.box:hover h5 {
    color: #001f3f !important;
}

.box:hover .icon i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Statistics section background overlay */
.wrapper.light-wrapper {
    position: relative;
}

.wrapper.light-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.05) 0%, rgba(0, 236, 1, 0.05) 100%);
    z-index: 1;
}

.wrapper.light-wrapper .container {
    position: relative;
    z-index: 2;
}