/* =====================================================
   Natwende Tour Reservations
===================================================== */

.ntr-booking-wrapper{
    width:95%;
    max-width:1280px;
    margin:60px auto;
    background:#fff;
    padding:45px;
    border-radius:16px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    box-sizing:border-box;
}

.ntr-booking-wrapper h2{
    margin:0 0 30px;
    text-align:center;
    color:#1b4332;
    font-size:32px;
    font-weight:700;
}

.ntr-row{
    display:flex;
    gap:30px;
    margin-bottom:28px;
    flex-wrap:wrap;
}

.ntr-col{
    flex:1 1 350px;
    min-width:350px;
}

.ntr-col label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

.ntr-col input,
.ntr-col select,
.ntr-col textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:15px;
    transition:.3s;
    box-sizing:border-box;
}

.ntr-col input:focus,
.ntr-col select:focus,
.ntr-col textarea:focus,
.ntr-col input.ntr-active,
.ntr-col select.ntr-active,
.ntr-col textarea.ntr-active{
    border-color:#2d6a4f;
    outline:none;
    box-shadow:0 0 0 3px rgba(45,106,79,.15);
}

.ntr-col textarea{
    resize:vertical;
}

.ntr-submit-btn{
    background:#2d6a4f;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.ntr-submit-btn:hover{
    background:#1b4332;
}

.ntr-success{
    background:#d8f3dc;
    border-left:5px solid #2d6a4f;
    padding:15px;
    margin-bottom:20px;
    border-radius:4px;
}

.ntr-error{
    background:#ffe5e5;
    border-left:5px solid #d90429;
    padding:15px;
    margin-bottom:20px;
    border-radius:4px;
}

.ntr-error ul{
    margin:0;
    padding-left:20px;
}

.ntr-error li{
    margin:4px 0;
    color:#8a0619;
}

/* =====================================================
   Admin Dashboard
===================================================== */

.ntr-dashboard{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:30px;
}

.ntr-card{
    background:#fff;
    border-radius:10px;
    padding:25px;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
    text-align:center;
    border-top:4px solid #2d6a4f;
}

.ntr-card h2{
    margin:0;
    font-size:34px;
    font-weight:bold;
    color:#1b4332;
}

.ntr-card p{
    margin:10px 0 0;
    color:#555;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.ntr-card.pending{
    border-top-color:#ff9800;
}

.ntr-card.confirmed{
    border-top-color:#2196f3;
}

.ntr-card.completed{
    border-top-color:#2e7d32;
}

.ntr-card.cancelled{
    border-top-color:#d32f2f;
}

/* Search & Filters */

.ntr-search-form{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    margin:20px 0;
}

.ntr-search-form input[type="search"]{
    padding:10px 14px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:14px;
    min-width:280px;
    max-width:100%;
}

.ntr-filters{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.ntr-filters a{
    padding:8px 16px;
    border-radius:20px;
    background:#f1f1f1;
    color:#333;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:.2s;
}

.ntr-filters a:hover{
    background:#e0e0e0;
}

.ntr-filters a.active{
    background:#2d6a4f;
    color:#fff;
}

/* Status Badges */

.ntr-status{
    display:inline-block;
    padding:6px 12px;
    border-radius:30px;
    color:#fff;
    font-size:12px;
    font-weight:600;
}

.ntr-pending{
    background:#ff9800;
}

.ntr-confirmed{
    background:#2196f3;
}

.ntr-completed{
    background:#2e7d32;
}

.ntr-cancelled{
    background:#d32f2f;
}

/* =====================================================
   Responsive
===================================================== */

@media(max-width:768px){

    .ntr-booking-wrapper{
        padding:20px;
    }

    .ntr-row{
        flex-direction:column;
    }

    .ntr-col{
        flex:1 1 auto;
        min-width:0;
    }

    .ntr-submit-btn{
        width:100%;
    }

    .ntr-search-form input[type="search"]{
        min-width:0;
        width:100%;
    }

}

/*------------------------------------
 Shortcode Card
------------------------------------*/

.ntr-shortcode-card{
    background:#fff;
    border-radius:10px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.ntr-shortcode-card h2{
    margin-top:0;
    color:#1b4332;
}

.ntr-shortcode-box{
    display:flex;
    gap:10px;
    margin-top:15px;
    flex-wrap:wrap;
}

.ntr-shortcode-box input{
    flex:1;
    font-size:16px;
    padding:12px 15px;
    border:1px solid #ddd;
    border-radius:6px;
    background:#f8f8f8;
    font-family:monospace;
}

.ntr-shortcode-box button{
    white-space:nowrap;
}

/*------------------------------------
 Tour Page Form ([natwende_tour_form])
------------------------------------*/

.ntr-hidden{
    display:none;
}

.ntr-tour-toggle-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.ntr-toggle-btn{
    flex:1 1 220px;
    text-align:center;
}

.ntr-toggle-btn-outline{
    background:#fff;
    color:#2d6a4f;
    border:2px solid #2d6a4f;
}

.ntr-toggle-btn-outline:hover{
    background:#2d6a4f;
    color:#fff;
}

@media(max-width:768px){

    .ntr-tour-toggle-buttons{
        flex-direction:column;
    }

}