/* =====================================================
   FURNXPERT CONSULTING PAGE
===================================================== */

.fx-consult-content {
	padding: 35px 0 50px;
    /*padding: 80px 0; */
    background: #ffffff;
}

/* INTRO */

.fx-intro {
    text-align: center;
    margin-bottom: 60px;
}

.fx-intro h2 {
    font-size: 42px;
    color: #1b1f24;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.fx-intro p {
    max-width: 900px;
    margin: auto;
    font-size: 19px;
    line-height: 1.9;
    color: #4b5563;
}

/* SERVICE GRID */

.fx-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	gap: 22px;
    /*gap: 30px;*/
}

/* SERVICE CARDS */

.fx-service-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
	padding: 28px 30px;
    /*padding: 40px;*/
    transition: 0.3s ease;
}

.fx-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.fx-service-card h3 {
    font-family: 'Roboto Condensed', sans-serif;
    /*text-transform: uppercase;*/
    font-size: 26px;
    color: #0b4a7d;
    line-height: 46px;
    margin-bottom: 12px;
    font-weight: 600;

}
/*
.fx-service-card h3 {
    font-size: 26px;
    color: #f8951d; /* #0b4a7d; */
    /*margin-bottom: 18px;
    font-weight: 600;
} */

.fx-service-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #4b5563;
}

/* MOBILE */

@media(max-width:768px) {

    .fx-consult-content {
        padding: 60px 20px;
    }

    .fx-intro h2 {
        font-size: 34px;
    }

    .fx-intro p {
        font-size: 15px;
    }

    .fx-service-grid {
        grid-template-columns: 1fr;
    }

    .fx-service-card {
        padding: 30px;
    }

}

/* Modal */
.fx-popup-btn {
    margin-top: 20px;
    background: /*#f8951d;*/ #0b4a7d;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.fx-popup-btn:hover {
    background: #08375e;
}

/* Modal Background */
.fx-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgba(0,0,0,0.7);
    padding: 40px 20px;
}

/* Modal Box */
.fx-modal-content {
    background: #fff;
    max-width: 800px;
    margin: 100px auto; /*auto;*/
    padding: 50px;
    border-radius: 12px;
    position: relative;
    animation: fxModalFade 0.3s ease;
}

/* Modal text */

.fx-modal-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #0b4a7d;
}

.fx-modal-content p {
    font-size: 14px;
    line-height: 1.9;
    color: #4b5563;
}

/* Close Button */
.fx-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 34px;
    cursor: pointer;
    color: #666;
}

.fx-close:hover {
    color: #000;
}

/* MODAL SUBTITLE */

.fx-modal-subtitle {

    font-size: 20px;
    font-weight: 600;

    color: #0b4a7d;

    margin-top: 30px;
    margin-bottom: 18px;

    letter-spacing: 0.3px;

}

/* MODAL LIST */

.fx-modal-content ul {

    margin: 0;
    padding-left: 0;

    list-style: none;

}

/* MODAL LIST ITEMS */

.fx-modal-content ul li {

    position: relative;

    padding-left: 28px;
    margin-bottom: 14px;

    font-size: 17px;
    line-height: 1.8;

    color: #374151;

}

/* CUSTOM BULLET */

.fx-modal-content ul li::before {

    content: "";

    position: absolute;

    left: 0;
    top: 11px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #0b4a7d;

}

/* Simple Animation */
@keyframes fxModalFade {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* Mobile Fix */
@media(max-width:768px) {

    .fx-modal-content {
        padding: 35px 25px;
    }

    .fx-modal-content h2 {
        font-size: 28px;
    }

    .fx-modal-content p {
        font-size: 16px;
    }

}
