*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --brand-primary:#c7a66a;

    --brand-primary-hover:#d4b278;

    --brand-primary-soft:rgba(199,166,106,.18);

    --brand-primary-border:rgba(199,166,106,.28);
}

body{
    font-family:'Montserrat',sans-serif;
    background:#161616;
    color:white;
    line-height:1.6;
}

a{
    color:inherit;
    text-decoration:none;
}

.booking-hero{
    padding:90px 20px 70px;
    background:
        linear-gradient(rgba(15,15,15,.88), rgba(15,15,15,.92)),
        #111;
    text-align:center;
}

.booking-hero-inner{
    max-width:900px;
    margin:0 auto;
}

.booking-logo{
    width:100%;
    max-width:340px;
    margin-bottom:40px;
}

.booking-hero h1{
    font-size:64px;
    line-height:1.05;
    margin-bottom:24px;
    color:var(--brand-primary);
}

.booking-hero p{
    color:rgba(255,255,255,.78);
    font-size:21px;
    line-height:1.7;
    margin-bottom:34px;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    border:none;
    border-radius:60px;
    padding:16px 34px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
}

.btn-primary{
    background:var(--brand-primary);
    color:white;
}

.btn-primary:hover{
    background:var(--brand-primary-hover);
}

.btn-secondary{
    border:2px solid rgba(255,255,255,.55);
    color:white;
    background:transparent;
}

.btn-secondary:hover{
    background:white;
    color:black;
}

.booking-trips-section{
    padding:90px 8%;
}

.booking-trips-section h2{
    text-align:center;
    font-size:52px;
    margin-bottom:20px;
}

.section-intro{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
    color:rgba(255,255,255,.74);
    font-size:20px;
}

.booking-trip-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:34px;
}

.booking-trip-card{
    background:linear-gradient(145deg,#262626,#1d1d1d);
    border:1px solid rgba(255,255,255,.08);
    border-radius:34px;
    overflow:hidden;
    transition:.25s;
}

.booking-trip-card:hover{
    transform:translateY(-5px);
    border-color:var(--brand-primary-border);
}

.booking-trip-image{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    display:block;
}

.booking-trip-content{
    padding:38px;
}

.tour-label{
    display:inline-block;
    color:var(--brand-primary);
    font-size:13px;
    font-weight:800;
    letter-spacing:3px;
    margin-bottom:18px;
}

.booking-trip-card h3{
    font-size:34px;
    line-height:1.15;
    margin-bottom:18px;
}

.tour-subtitle{
    color:rgba(255,255,255,.78);
    font-size:18px;
    margin-bottom:24px;
}

.booking-trip-description{
    color:rgba(255,255,255,.74);
    line-height:1.7;
    margin-bottom:30px;
    white-space:pre-line;
}

.tour-price{
    font-size:34px;
    font-weight:800;
    color:var(--brand-primary);
    margin-bottom:16px;
}

.tour-price-note{
    font-size:14px;
    color:rgba(255,255,255,.58);
    line-height:1.5;
    margin-bottom:34px;
}

.week-list{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.week-row{
    background:#202020;
    border-radius:18px;
    padding:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
}

.week-row span{
    color:rgba(255,255,255,.65);
    font-size:14px;
}

.week-book-btn{
    margin-top:10px;
    width:100%;
    border:none;
    background:var(--brand-primary);
    color:black;
    padding:10px 14px;
    border-radius:12px;
    font-weight:bold;
    cursor:pointer;
}

.week-book-btn:hover{
    opacity:.9;
}

.week-book-btn:disabled{
    opacity:.45;
    cursor:not-allowed;
}

.booking-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    z-index:999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.booking-modal-box{
    width:100%;
    max-width:920px;
    background:#1f1f1f;
    border-radius:32px;
    padding:42px;
    position:relative;
}

.booking-modal-close{
    position:absolute;
    top:20px;
    right:20px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#2b2b2b;
    color:white;
    font-size:24px;
    cursor:pointer;
}

.booking-modal h2{
    font-size:42px;
    margin-bottom:16px;
}

.modal-info{
    color:var(--brand-primary);
    margin-bottom:34px;
}

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

label{
    display:block;
    margin-bottom:8px;
    color:#cfcfcf;
    font-size:14px;
}

input,
select{
    width:100%;
    padding:14px;
    border:none;
    border-radius:14px;
    background:#2a2a2a;
    color:white;
}

.checkbox-row{
    display:flex;
    gap:12px;
    margin:28px 0;
    align-items:flex-start;
}

.checkbox-row input{
    width:auto;
    margin-top:4px;
}

.modal-message{
    margin-top:22px;
    color:#8de28d;
}

.no-weeks{
    color:rgba(255,255,255,.55);
}

.error{
    color:#ff8b8b;
}

footer{
    text-align:center;
    padding:80px 20px;
    background:#141414;
    border-top:1px solid rgba(255,255,255,.05);
}

footer h3{
    font-size:34px;
    margin-bottom:18px;
}

footer p{
    color:rgba(255,255,255,.68);
    margin-bottom:10px;
}

@media(max-width:1000px){

    .booking-trip-grid{
        grid-template-columns:1fr;
    }

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

    .booking-hero h1{
        font-size:48px;
    }
}

@media(max-width:700px){

    .booking-trip-content{
        padding:28px;
    }

    .week-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .week-book-btn{
        width:100%;
    }

    .booking-modal-box{
        padding:32px 24px;
    }

    .booking-modal h2{
        font-size:32px;
    }
}
