 .contact-section-main2 {
        padding: 0px 0;
        background: #f8f9fa;
        position: relative;
        overflow: hidden;
    }

    .service-hero {
        position: relative;
        height: 300px;
        overflow: hidden;
        border-radius: 20px;
        margin-bottom: 50px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .service-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.5);
    }

    .service-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(to bottom, rgba(44, 95, 111, 0.6), rgba(26, 26, 26, 0.6));
    }

    .service-hero h1 {
        color: white;
        font-size: 3.5rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 3px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        margin: 0;
    }

    .back-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--primary-color);
        color: white;
        padding: 12px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-bottom: 40px;
        box-shadow: 0 5px 15px rgba(44, 95, 111, 0.3);
    }

    .back-btn:hover {
        background: white;
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
    }

    .back-btn i {
        transition: transform 0.3s ease;
    }

    .back-btn:hover i {
        transform: translateX(-5px);
    }

    /* Success Message Styling */
    .contact-success-msg {
        background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
        color: white;
        padding: 20px 25px;
        border-radius: 12px;
        margin-bottom: 25px;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        box-shadow: 0 8px 25px rgba(56, 239, 125, 0.4);
        animation: slideDown 0.5s ease-out;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .contact-success-msg i {
        font-size: 28px;
        animation: checkmarkPop 0.6s ease-out;
    }

    /* Error Message Styling */
    .contact-error-msg {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        color: white;
        padding: 20px 25px;
        border-radius: 12px;
        margin-bottom: 25px;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
        animation: slideDown 0.5s ease-out;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .contact-error-msg i {
        font-size: 28px;
    }

    /* Slide Down Animation */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Checkmark Pop Animation */
    @keyframes checkmarkPop {
        0% { transform: scale(0) rotate(0deg); }
        50% { transform: scale(1.3) rotate(180deg); }
        100% { transform: scale(1) rotate(360deg); }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .back-btn { animation: fadeIn 0.6s ease-out; }
    .service-hero { animation: fadeIn 0.8s ease-out; }

    /* Loading Overlay */
    .loading-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 9999;
        justify-content: center;
        align-items: center;
    }

    .loading-overlay.active {
        display: flex;
    }

    .loading-content {
        text-align: center;
        color: white;
    }

    .loading-spinner {
        border: 4px solid rgba(255, 255, 255, 0.3);
        border-top: 4px solid white;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        animation: spin 1s linear infinite;
        margin: 0 auto 20px;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .contact-submit-btn {
        position: relative;
    }

    .contact-submit-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .service-hero h1 {
            font-size: 2.8rem;
            letter-spacing: 2px;
        }
    }

    @media (max-width: 768px) {
        .service-hero {
            height: 250px;
        }
        .service-hero h1 {
            font-size: 2.2rem;
            letter-spacing: 1.5px;
        }
        .contact-success-msg,
        .contact-error-msg {
            font-size: 14px;
            padding: 15px 20px;
        }
    }

    @media (max-width: 576px) {
        .service-hero {
            height: 200px;
        }
        .service-hero h1 {
            font-size: 1.8rem;
            letter-spacing: 1px;
        }
    }
