.footer-section .inquiry-float-btn {
    cursor: pointer;
    position: fixed;
    right: 0;
    top: 70%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #4a6fa5, #2c4d80);
    color: white;
    align-items: center;
    padding: 15px 10px 15px 15px;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    display: none;
}

.footer-section .inquiry-btn-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    flex-shrink: 0;
}

.footer-section .inquiry-btn-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-section .inquiry-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.footer-section .inquiry-main-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-section .inquiry-sub-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: lowercase;
}

.footer-section .inquiry-float-btn:hover {
    background: linear-gradient(135deg, #3a5a8c, #1f3a60);
    padding-left: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer-section .inquiry-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
    backdrop-filter: blur(2px);
}

.footer-section .inquiry-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    padding: 30px;
}

.footer-section .modal-content {
    padding: 0 10px;
}

.footer-section .modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(245, 247, 250, 0.8);
    border: none;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.footer-section .modal-close-btn:hover {
    background-color: #4a6fa5;
    color: white;
}

.footer-section .inquiry-form {
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
}

.footer-section .form-group {
    margin-bottom: 15px;
    width: 100%;
}

.footer-section .form-label {
    display: block;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.footer-section .form-required {
    color: #e74c3c;
}

.footer-section .form-input {
    width: 100%;
    padding: 8px 12px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.footer-section .inquiry-form .form-input:focus {
    outline: none;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 0 1px rgb(95, 126, 172);
}

.footer-section .inquiry-form .form-input.error{
    border-color: #e74c3c;
}

.footer-section .form-input::placeholder {
    color: #999;
}

.footer-section .form-textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

.footer-section .form-hint {
    display: block;
    font-size: 13px;
    color: #777;
    margin-top: 6px;
}

.footer-section .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    width: 100%;
}

.footer-section .procurement-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.85);
}

.footer-section .procurement-table thead {
    background-color: #4a6fa5;
    color: white;
}

.footer-section .procurement-table th {
    padding: 12px 10px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.footer-section .procurement-table td {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(238, 238, 238, 0.8);
    background-color: transparent;
}

.footer-section .procurement-table tbody tr:hover {
    background-color: rgba(248, 250, 252, 0.9);
}

.footer-section .table-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid rgba(221, 221, 221);
    border-radius: 4px;
    font-size: 14px;
    background-color: rgba(252, 252, 252, 0.9);
    box-sizing: border-box;
}

.footer-section .table-input:focus {
    outline: none;
    border-color: #4a6fa5;
    box-shadow: 0 0 0 2px rgba(74, 111, 165, 0.1);
}

.footer-section .table-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.footer-section .table-btn {
    padding: 8px 16px;
    background-color: rgba(240, 247, 255, 0.8);
    color: #4a6fa5;
    border: 1px solid #c5d7f0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-section .table-btn:hover {
    background-color: #4a6fa5;
    color: white;
}

.footer-section .form-submit {
    margin-top: 30px;
    text-align: center;
    width: 100%;
}

.footer-section .submit-btn {
    background-color: #4a6fa5;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    width: 100%;
    max-width: 300px;
}

.footer-section .submit-btn:hover {
    background-color: #2c4d80;
    transform: translateY(-2px);
}

.footer-section .submit-btn:active {
    transform: translateY(0);
}

