
    /* Modern UI Refinements */
    .modern-service-wrapper {
        padding: 80px 0;
        background: #fdfdfd;
    }

    .service-hero-img {
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        margin-bottom: 30px;
        position: relative;
    }

    .service-hero-img img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .service-hero-img:hover img {
        transform: scale(1.03);
    }

    .service-title {
        font-size: 38px;
        font-weight: 700;
        color: #d32f2f;
        /* Premium Red */
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .service-intro-text {
        font-size: 16px;
        color: #555;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    /* Feature Cards */
    .feature-card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .modern-feature-card {
        background: #ffffff;
        border-radius: 10px;
        padding: 30px 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
    }

    .modern-feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid #e20001 !important;
        /* Brand accent color */
    }

    .modern-feature-card .icon-wrapper {
        width: 60px;
        height: 60px;
        background: rgba(255, 94, 20, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: #e20001 !important;
        font-size: 24px;
        transition: all 0.3s ease;
    }

    .modern-feature-card:hover .icon-wrapper {
        background: #e20001 !important;
        color: #fff !important;
    }

    .modern-feature-card h3 {
        font-size: 20px;
        font-weight: 600;
        color: #222;
        margin-bottom: 15px;
    }

    .modern-feature-card p {
        font-size: 15px;
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

    /* Benefits Section */
    .benefits-wrapper {
        background: #f4f6f9;
        border-radius: 12px;
        padding: 35px;
        margin-top: 30px;
    }

    .benefits-title {
        font-size: 24px;
        font-weight: 600;
        color: #d32f2f;
        margin-bottom: 20px;
    }

    .modern-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .modern-list li {
        position: relative;
        padding-left: 35px;
        margin-bottom: 15px;
        font-size: 16px;
        color: #444;
    }

    .modern-list li i {
        position: absolute;
        left: 0;
        top: 4px;
        color: #10b981;
        /* Success Green */
        font-size: 18px;
    }

    /* Form & Sidebar Styling */
    .services-single__sidebar {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        padding: 30px;
        position: sticky;
        top: 100px;
    }

    .sidebar-contact-promo {

        background: linear-gradient(135deg, #e20001, #e20001);
        border-radius: 10px;
        padding: 30px 20px;
        text-align: center;
        color: #fff;
        margin-bottom: 30px;
    }

    .sidebar-contact-promo h3 {
        color: #fff;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .sidebar-contact-promo .phone {
        display: inline-block;
        font-size: 24px;
        font-weight: 700;
        color: #ffffffff;
        text-decoration: none;
        margin-top: 10px;
        background: rgba(255, 255, 255, 0.1);
        padding: 10px 20px;
        border-radius: 30px;
    }

    .form-title {
        font-size: 22px;
        font-weight: 600;
        color: #222;
        margin-bottom: 20px;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 10px;
    }

    .comment-form__input-box input,
    .comment-form__input-box textarea {
        width: 100%;
        border: 1px solid #e5e5e5;
        border-radius: 6px;
        padding: 15px;
        margin-bottom: 20px;
        font-size: 15px;
        transition: all 0.3s ease;
        background: #fcfcfc;
    }

    .comment-form__input-box input:focus,
    .comment-form__input-box textarea:focus {
        border-color: #d32f2f;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
        outline: none;
    }

    .comment-form__btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        border-radius: 6px;
        background: #e20001 !important;
        color: #fff;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .comment-form__btn:hover {
        background: #c62828;
    }

    /* Sidebar Additional Widgets */
    .sidebar-widget {
        margin-top: 35px;
        padding-top: 25px;
        border-top: 1px solid #f0f0f0;
    }

    .sidebar-widget-title {
        font-size: 20px;
        font-weight: 600;
        color: #222;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

    .sidebar-widget-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background: #e20001;
    }

    .sidebar-services-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar-services-list li {
        margin-bottom: 12px;
    }

    .sidebar-services-list li a {
        display: flex;
        align-items: center;
        color: #555;
        font-size: 16px;
        text-decoration: none;
        padding: 10px 15px;
        border-radius: 6px;
        background: #fdfdfd;
        border: 1px solid #eee;
        transition: all 0.3s ease;
    }

    .sidebar-services-list li a i {
        color: #e20001;
        margin-right: 12px;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .sidebar-services-list li a:hover {
        background: #e20001;
        color: #fff;
        border-color: #e20001;
    }

    .sidebar-services-list li a:hover i {
        color: #fff;
    }

    .download-brochure-card {
        background: #f9f9f9;
        border-radius: 8px;
        padding: 20px;
        display: flex;
        align-items: center;
        margin-top: 20px;
        border: 1px dashed #ccc;
        transition: all 0.3s ease;
    }

    .download-brochure-card:hover {
        background: #fff5f5;
        border-color: #e20001;
    }

    .download-brochure-card .icon {
        font-size: 30px;
        color: #e20001;
        margin-right: 15px;
    }

    .download-brochure-card .text h4 {
        font-size: 16px;
        font-weight: 600;
        color: #222;
        margin: 0 0 5px;
    }

    .download-brochure-card .text a {
        font-size: 14px;
        color: #e20001;
        font-weight: 600;
        text-decoration: none;
    }

    
    
    
    
    .service-gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 25px;
    }

    .service-gallery-grid .gallery-item {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
    }

    .service-gallery-grid .gallery-item img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }

    .service-gallery-grid .gallery-item:hover img {
        transform: scale(1.05);
    }

    /* Mobile Responsive */
    @media (max-width: 767px) {
        .service-gallery-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .service-gallery-grid .gallery-item img {
            aspect-ratio: 1 / 1;
        }
    }
