/* 
   FTK Native Style Implementation 
*/

/* Application Slider - Index App */
.index-app .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .index-app .top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .index-app .top-right {
        width: 100%;
        text-align: left;
    }

    .index-app .top-right a {
        display: inline-block;
        padding: 10px 20px;
    }

    .index-app .h3 {
        font-size: 24px;
        line-height: 1.2;
    }

    .index-app .text {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 10px;
    }

    .index-app .swiper-slide p {
        padding: 10px 0;
        font-size: 14px;
        text-align: center;
    }
}

/* Swiper Styling Refinements */
.swiper-pagination-bullet-active {
    background: #e1251b !important;
}

.swiper-slide img {
    border-radius: 8px;
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

.swiper-slide:hover img {
    transform: scale(1.02);
}

/* Inquiry Modal Styles - Premium Industrial Theme */
#mb-feedback {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    width: 90%;
    max-width: 650px;
    background: #fff;
    z-index: 10002;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    overflow: hidden;
}

#mb-feedback .modal-overlay {
    position: fixed;
    top: -100vh;
    left: -100vw;
    width: 300vw;
    height: 300vh;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: -1;
}

#mb-feedback .modal-header {
    background: #1a1a1a;
    color: #fff;
    padding: 25px 30px;
    position: relative;
}

#mb-feedback .modal-header .h3 {
    color: #e1251b;
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 600;
}

#mb-feedback .modal-header p {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

#mb-feedback .close-reveal-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    transition: color 0.3s;
}

#mb-feedback .close-reveal-modal:hover {
    color: #e1251b;
}

#mb-feedback .modal-body {
    padding: 30px;
}

#mb-feedback label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
    color: #333;
}

#mb-feedback .form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 15px;
}

#mb-feedback .form-control:focus {
    border-color: #e1251b;
    box-shadow: none;
}

#mb-feedback .submit-btn {
    padding: 12px 40px;
}

@media (max-width: 767px) {
    #mb-feedback { width: 95%; max-height: 90vh; overflow-y: auto; }
    #mb-feedback .modal-header { padding: 20px; }
    #mb-feedback .modal-body { padding: 20px; }
}