:root{
    --gold:#d4af37;
    --bg:#070707;
    --card:#111111;
    --text:#ffffff;
    --muted:#a9a9a9;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#070707;
    color:white;
    font-family:sans-serif;
    overflow-x:hidden;
}

.reserve-page{
    width:100%;
    padding:4vw 7vw 8vw;
}



/* HERO */

.top-download{
    text-align:center;
    margin-bottom:5rem;
}

.top-download h1{
    font-size:5rem;
    margin-bottom:1rem;
}

.top-download p{
    color:var(--muted);
    line-height:1.8;
}



/* BUTTONS */

.download-actions{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:1rem;
    margin-top:2rem;
}

.premium-btn,
.glass-btn,
.submit-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:1rem 2rem;

    border-radius:1rem;

    text-decoration:none;

    border:none;

    cursor:pointer;

    transition:0.4s;
}

.premium-btn,
.submit-btn{
    background:#111;
    color:white;
}

.glass-btn{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    color:white;
}

.premium-btn:hover,
.submit-btn:hover,
.glass-btn:hover{
    background:linear-gradient(135deg,var(--gold),#f0d980);
    color:black;
}



/* GRID */

.content-grid{
    width:100%;

    display:grid;
    grid-template-columns:0.8fr 1.2fr;

    gap:3rem;
}



/* CARDS */

.info-card,
.contract-section{
    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:2rem;

    padding:2rem;

    backdrop-filter:blur(20px);
}

.left-content{
    display:flex;
    flex-direction:column;
    gap:2rem;
}

.info-card h2{
    margin-bottom:1.5rem;
}

.info-card p,
.info-card li{
    color:var(--muted);
    line-height:1.9;
}

.info-card ul,
.info-card ol{
    padding-left:1.5rem;
}



/* FORM */

.contract-header h2{
    margin-top:1rem;
    margin-bottom:2rem;
    line-height:1.2;
}

.section-tag{
    color:var(--gold);
    letter-spacing:0.15rem;
    text-transform:uppercase;
    font-size:0.85rem;
}

.contract-form{
    display:flex;
    flex-direction:column;
    gap:2rem;
}

.form-section h3{
    margin-bottom:1.2rem;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1rem;
}

input,
select,
textarea{
    width:100%;

    padding:1rem;

    border-radius:1rem;

    border:1px solid rgba(255,255,255,0.08);

    background:#111;

    color:white;

    font-size:1rem;
}

textarea{
    resize:vertical;
}

.checkbox-group{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1rem;
}

.checkbox-group label{
    display:flex;
    align-items:center;
    gap:0.8rem;

    padding:1rem;

    border-radius:1rem;

    background:#111;
}

input[type="checkbox"]{
    width:20px;
    height:20px;
}



/* FOOTER */

.bottom-download{
    margin-top:6rem;
    text-align:center;
}

.bottom-download h2{
    font-size:3rem;
    margin-bottom:1rem;
}

.bottom-download p{
    color:var(--muted);
    margin-bottom:1rem;
}

.email-link{
    color:var(--gold);
    text-decoration:none;
}



/* ANIMATION */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}



/* BLURS */

.blur{
    position:fixed;
    border-radius:50%;
    filter:blur(8rem);
    opacity:0.12;
    z-index:-1;
}

.blur-one{
    width:25rem;
    height:25rem;
    background:gold;
    top:-5rem;
    left:-5rem;
}

.blur-two{
    width:20rem;
    height:20rem;
    background:white;
    right:-5rem;
    bottom:-5rem;
}

.top-header{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:1.2rem 2rem;

    position:sticky;

    top:0;

    z-index:999;

    backdrop-filter:blur(20px);

    background:
    linear-gradient(
        135deg,
        rgba(17,17,17,0.96),
        rgba(8,8,8,0.96)
    );

    border-bottom:
    1px solid rgba(255,255,255,0.08);
}

.brand-title{

    font-size:1rem;

    letter-spacing:0.35rem;

    color:#d4af37;

    font-weight:600;
}

.hamburger{

    width:3rem;
    height:3rem;

    border:none;

    border-radius:1rem;

    background:rgba(255,255,255,0.05);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:0.35rem;

    cursor:pointer;

    transition:0.4s;
}

.hamburger:hover{

    background:#d4af37;
}

.hamburger span{

    width:1.3rem;
    height:2px;

    background:white;

    border-radius:10px;

    transition:0.4s;
}

.hamburger:hover span{

    background:black;
}

.mobile-nav{

    position:fixed;

    top:5.8rem;
    right:-100%;

    width:18rem;

    height:auto;

    padding:2rem;

    display:flex;

    flex-direction:column;

    gap:1rem;

    border-radius:2rem 0 0 2rem;

    background:
    linear-gradient(
        180deg,
        #111111,
        #070707
    );

    border:
    1px solid rgba(255,255,255,0.08);

    transition:0.45s;

    z-index:998;
}

.mobile-nav.active{

    right:0;
}

.mobile-nav a{

    text-decoration:none;

    color:white;

    padding:1rem;

    border-radius:1rem;

    background:rgba(255,255,255,0.04);

    transition:0.4s;
}

.mobile-nav a:hover{

    background:#d4af37;

    color:black;
}