/* Service Hero Section */
.service-hero-image img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-hero-image:hover img {
    transform: scale(1.02);
}

.btn-primary-service {
    background: linear-gradient(135deg, #e41e13 0%, #c41a10 100%);
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 30, 19, 0.3);
    border-radius: 4px;
}

.btn-primary-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 30, 19, 0.4);
    color: #fff;
}

.btn-outline-service {
    background: transparent;
    color: #e41e13;
    border: 2px solid #e41e13;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-outline-service:hover {
    background: #e41e13;
    color: #fff;
    transform: translateY(-2px);
}

/* Service Gallery */
.service-main-img {
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.main-gallery-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-overlay {
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    opacity: 0;
    border-radius: 8px;
}

.main-gallery-image:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.gallery-zoom-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    color: #fff;
    transition: all 0.3s ease;
}

.gallery-zoom-btn:hover {
    background: #e41e13;
    border-color: #e41e13;
    transform: scale(1.1);
}

.thumbnail-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    height: 120px;
}

.thumbnail-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover {
    border-color: #e41e13;
    transform: translateY(-3px);
}

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

.thumbnail-item.active {
    border-color: #e41e13;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(228, 30, 19, 0);
    transition: background 0.3s ease;
}

.thumbnail-item:hover .thumbnail-overlay {
    background: rgba(228, 30, 19, 0.2);
}

/* Service Info Card */
.service-info-card {
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-info-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    border-color: #e41e13;
}

.service-info-item {
    color: #223645;
    font-size: 14px;
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: #e41e13;
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Process Steps */
.process-step {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: #e41e13;
}

/* FAQ Accordion */
.accordion-button {
    background: #fff;
    color: #223645;
    font-weight: 600;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #e41e13;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #e41e13;
}

/* Contact Form */
.form-control-modern-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    background: #fff;
    color: #223645;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control-modern-input:focus {
    outline: none;
    border-color: #e41e13;
    box-shadow: 0 0 0 3px rgba(228, 30, 19, 0.1);
}

.form-control-modern-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    background: #fff;
    color: #223645;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-control-modern-textarea:focus {
    outline: none;
    border-color: #e41e13;
    box-shadow: 0 0 0 3px rgba(228, 30, 19, 0.1);
}

.btn-contact-submit {
    background: linear-gradient(135deg, #e41e13 0%, #c41a10 100%);
    color: #fff;
    padding: 14px 40px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 30, 19, 0.3);
    border-radius: 4px;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 30, 19, 0.4);
    color: #fff;
}

/* Related Service Cards */
.related-service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.related-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: #e41e13;
}

.service-image-wrapper {
    height: 200px;
    background: #f5f5f5;
}

.service-image {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-service-card:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    background: linear-gradient(135deg, rgba(228, 30, 19, 0.85) 0%, rgba(228, 30, 19, 0.75) 100%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 2;
}

.related-service-card:hover .service-overlay {
    opacity: 1;
}

.btn-service-link-small {
    background: transparent;
    color: #e41e13;
    border: 2px solid #e41e13;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
}

.btn-service-link-small:hover {
    background: #e41e13;
    color: #fff;
    transform: translateX(5px);
}

/* Subscribe Section */
.form-control-modern {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 0;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-modern:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.letter-spacing-1 {
    letter-spacing: 1.5px;
}

@media (max-width: 768px) {
    .service-main-img {
        height: 350px;
    }

    .thumbnail-item {
        height: 100px;
    }

    .sub-left h4 {
        font-size: 18px;
        margin-bottom: 20px !important;
    }
}