
/* ==========================================================
   LQW REALTY - RESERVATION MODULE
========================================================== */

/* ==========================================================
   HERO
========================================================== */

.lqw-reservation-hero{
    padding:100px 0 70px;
    text-align:center;
}

.lqw-reservation-hero h1{
    font-size:54px;
    margin:20px 0;
}

/* ==========================================================
   RESERVATION PROCESS
========================================================== */

.lqw-reservation-process{
    padding:70px 0;
}

.lqw-process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:24px;
    align-items:stretch;
}

.lqw-process-card{

    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    border-radius:20px;
    padding:24px;
    box-shadow:0 10px 28px rgba(15,23,42,.08);
    transition:.25s ease;
    height:100%;
}

.lqw-process-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 36px rgba(15,23,42,.12);

}

.lqw-process-card span{
    flex:0 0 44px;
    width:44px;
    height:44px;
    border-radius:50%;
    background:var(--lqw-gold);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:800;
}

.lqw-process-content{
    flex:1;
}

.lqw-process-content h3{
    margin:4px 0 10px;
    font-size:20px;
    color:#1A365D;
}

.lqw-process-content p{
    margin:0;
    color:#64748B;
    line-height:1.7;
}

/* ==========================================================
   RESERVATION FORM
========================================================== */

.lqw-reservation-form{
    padding:80px 0;
}

.lqw-reservation-form-wrapper{
    background:#fff;
    border-radius:24px;
    padding:50px;
    box-shadow:0 18px 60px rgba(0,0,0,.08);
}

/* ==========================================================
   RESERVATION FORM GRID
========================================================== */

.lqw-reservation-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    margin-top:35px;
}

.lqw-reservation-form-grid input,
.lqw-reservation-form-grid select,
.lqw-reservation-form-grid textarea{
    width:100%;
    min-height:54px;
    padding:16px 18px;
    background:#ffffff;
    color:#1F2937;
    border:1px solid #D1D5DB;
    border-radius:12px;
    font-size:16px;
    box-sizing:border-box;
}

.lqw-reservation-form-grid textarea{
    min-height:150px;
}

.lqw-reservation-form-grid input::placeholder,
.lqw-reservation-form-grid textarea::placeholder{
    color:#6B7280;
    opacity:1;
}

.lqw-reservation-form-grid select{
    color:#1F2937;
}

.lqw-reservation-form-grid input:focus,
.lqw-reservation-form-grid select:focus,
.lqw-reservation-form-grid textarea:focus{
    outline:none;
    border-color:var(--lqw-gold);
    box-shadow:0 0 0 4px rgba(212,160,23,.15);
}

/* Reservation Submit Button */

.lqw-reservation-form-grid button{

    width:100%;

    min-height:58px;

    margin-top:12px;

    font-size:17px;

    font-weight:700;

}

.lqw-reference-note{

    margin-top:15px;

    font-size:15px;

    color:#64748B;

    line-height:1.6;

}

/* ==========================================================
   NOTICE
========================================================== */

.lqw-reservation-notice,
.lqw-payment-policy{
    background:#FFFDF7;
    border-left:5px solid var(--lqw-gold);
    padding:30px;
    border-radius:18px;
    margin-bottom:35px;
}

.lqw-reservation-notice h3{
    margin:0 0 18px;
}

.lqw-reservation-notice ul{
    margin:0;
    padding-left:20px;
}

.lqw-reservation-notice li,
.lqw-payment-policy li{
    margin-bottom:12px;
    line-height:1.7;
}

/* ==========================================================
   PAYMENT
========================================================== */

.lqw-payment-upload{
    padding:80px 0;
    background:#fff;
}

.lqw-payment-form{
    margin-top:40px;
    background:#f8f8f8;
    padding:40px;
    border-radius:24px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.lqw-payment-form input{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:12px;
}

/* ==========================================================
   BANK DETAILS
========================================================== */

.lqw-payment-bank-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    margin-bottom:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.lqw-bank-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

.lqw-bank-table th{
    width:35%;
    text-align:left;
    padding:12px;
    white-space:normal;
}

.lqw-bank-table td{
    padding:12px;
    font-size:15px;
    word-break:break-word;
}

.lqw-bank-number{
    font-size:28px;
    font-weight:800;
    letter-spacing:2px;
    color:var(--lqw-gold);
}

/* ==========================================================
   BANK DETAILS
========================================================== */

.lqw-bank-details{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-top:25px;

}

.lqw-bank-row{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

    padding-bottom:14px;

    border-bottom:1px solid #E5E7EB;

}

.lqw-bank-row:last-child{

    border-bottom:none;

}

.lqw-bank-row span{

    color:#64748B;

    font-weight:600;

    min-width:120px;

}

.lqw-bank-row strong{

    flex:1;

    text-align:right;

    color:#1A365D;

    font-weight:700;

}

.lqw-bank-number{

    color:var(--lqw-gold);

    font-size:20px;

    letter-spacing:1px;

}
/* ==========================================================
   STATUS NOTICES
========================================================== */

.lqw-notice{
    padding:20px 25px;
    margin-bottom:30px;
    border-radius:16px;
    border-left:6px solid;
    font-size:15px;
    line-height:1.7;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.lqw-notice-error{
    background:#FFF5F5;
    border-color:#DC3545;
    color:#842029;
}

.lqw-notice-info{
    background:#EEF6FF;
    border-color:#0D6EFD;
    color:#084298;
}

.lqw-notice-success{
    background:#F0FFF4;
    border-color:#198754;
    color:#0F5132;
}

/* ==========================================================
   RESERVATION SUMMARY
========================================================== */


.lqw-summary-header p{
    margin-top:10px;
    color:#64748B;
    font-size:15px;
    line-height:1.6;
}

/* ==========================================================
   RESERVATION CHECKBOX
========================================================== */

.lqw-reservation-checkbox{

    grid-column:1 / -1;

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-top:8px;

    font-size:15px;

    line-height:1.6;

    color:#374151;

}

.lqw-reservation-checkbox input[type="checkbox"]{

    width:18px;

    height:18px;

    min-width:18px;

    min-height:18px;

    margin-top:2px;

    accent-color:var(--lqw-gold);

    flex-shrink:0;

}

/* ==========================================================
   PROPERTY SUMMARY
========================================================== */

.lqw-property-summary{

    display:none;

    background:#ffffff;

    border-radius:22px;

    padding:30px;

    margin-bottom:35px;

    box-shadow:0 18px 45px rgba(15,23,42,.08);

    border-left:6px solid var(--lqw-gold);

}

.lqw-summary-header{

    margin-bottom:25px;

}

.lqw-summary-header h3{

    margin:0;

    color:#1A365D;

    font-size:28px;

}

.lqw-summary-grid{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:24px;

}

.lqw-summary-grid small{

    display:block;

    color:#64748B;

    margin-bottom:6px;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.lqw-summary-grid strong{

    display:block;

    color:#1A365D;

    font-size:20px;

}

.available{

    display:inline-block;

    padding:8px 16px;

    background:#ECFDF5;

    color:#15803D;

    border-radius:999px;

    font-weight:600;

    font-size:14px;

}

/* ==========================================================
   PAYMENT RECEIPT
========================================================== */

.lqw-payment-receipt{

    max-width:240px;

    width:100%;

    border-radius:12px;

    border:1px solid #E5E7EB;

    box-shadow:0 6px 18px rgba(0,0,0,.08);

    margin-bottom:15px;

    transition:.25s;

}

.lqw-payment-receipt:hover{

    transform:scale(1.02);

}

/* ==========================================================
   MOBILE & TABLET RESPONSIVE
========================================================== */

@media (max-width:767px){

    /* Hero */

    .lqw-reservation-hero{
        padding:45px 20px 35px;
    }

    .lqw-reservation-hero h1{
        font-size:clamp(2rem,6vw,2.5rem);
        line-height:1.15;
        margin:16px 0;
    }

    .lqw-reservation-hero p{
        font-size:16px;
        line-height:1.7;
    }

    /* Reservation Journey */

    .lqw-process-grid{
        grid-template-columns:1fr;
        gap:18px;
        max-width:500px;
        margin:auto;
    }

    .lqw-process-card{
        padding:20px;
        gap:16px;
        align-items:flex-start;
    }

    .lqw-process-card span{
        width:42px;
        height:42px;
        flex:0 0 42px;
        font-size:16px;
    }

    .lqw-process-content h3{
        font-size:18px;
    }

    .lqw-process-content p{
        font-size:15px;
        line-height:1.6;
    }

    /* Reservation Form */

    .lqw-reservation-form-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .lqw-reservation-form-wrapper,
    .lqw-payment-form,
    .lqw-payment-bank-card,
    .lqw-reservation-notice,
    .lqw-payment-policy{
        padding:24px;
    }

    .lqw-reservation-form-grid input,
    .lqw-reservation-form-grid select,
    .lqw-reservation-form-grid textarea{
        font-size:16px;
    }

    /* Property Summary */

    .lqw-summary-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .lqw-property-summary{
        padding:22px;
    }

    /* Bank Table */

    .lqw-bank-table{
        display:block;
        overflow-x:auto;
        white-space:nowrap;
    }
    
    /* ======================================================
   BANK DETAILS - MOBILE
====================================================== */

.lqw-payment-bank-card{

    padding:20px;

}

.lqw-bank-table{

    width:100%;

    table-layout:fixed;

}

.lqw-bank-table th{

    width:40%;

    font-size:14px;

    padding:10px 8px;

}

.lqw-bank-table td{

    width:60%;

    font-size:14px;

    padding:10px 8px;

    word-break:break-word;

}

.lqw-bank-row{

    flex-direction:column;

    gap:6px;

}

.lqw-bank-row strong{

    text-align:left;

}

.lqw-bank-row span{

    min-width:auto;

}

.lqw-bank-number{

    font-size:18px;

}

/* ==========================================================
   LQW ERP Content Cards
========================================================== */

.lqw-detail-card{

    background:#FFFFFF;

    border:1px solid #E8EDF5;

    border-radius:18px;

    padding:35px;

    margin-bottom:35px;

    box-shadow:0 10px 30px rgba(15,23,42,.08);

}

.lqw-detail-card h2{

    font-size:30px;

    color:#123A63;

    margin-bottom:25px;

    padding-bottom:15px;

    border-bottom:2px solid #F1F5F9;

}

.lqw-info-table{

    width:100%;

    border-collapse:collapse;

}

.lqw-info-table th{

    width:230px;

    padding:15px 0;

    color:#64748B;

    font-weight:700;

    vertical-align:top;

}

.lqw-info-table td{

    padding:15px 0;

    color:#1E293B;

    border-bottom:1px solid #EDF2F7;

}

.lqw-info-table tr:last-child td,

.lqw-info-table tr:last-child th{

    border-bottom:none;

}

/* Verification */

.lqw-verification{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.lqw-verification textarea{

    width:100%;

    min-height:140px;

    border:1px solid #CBD5E1;

    border-radius:12px;

    padding:15px;

    resize:vertical;

}

.lqw-verification label{

    font-weight:600;

    color:#334155;

}

.lqw-verification input[type="radio"]{

    margin-right:10px;

}

.lqw-save-btn{

    background:#C8A94C;

    color:#fff;

    border:none;

    border-radius:12px;

    padding:14px 30px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

.lqw-save-btn:hover{

    transform:translateY(-2px);

    box-shadow:0 10px 24px rgba(200,169,76,.35);

}

/* ==========================================================
   SECONDARY BUTTON
========================================================== */

.lqw-btn-secondary{

    display:inline-block;

    margin-top:12px;

    padding:10px 18px;

    background:#123A63;

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    font-size:14px;

    font-weight:600;

    transition:.25s ease;

}

.lqw-btn-secondary:hover{

    background:#0E2F50;

    color:#fff;

    transform:translateY(-2px);

}

/* ==========================================================
   FORM ACTIONS
========================================================== */

.lqw-form-actions{

    margin-top:25px;

}

}