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

body{
background:black;
color:white;
display:flex;
justify-content:center;
align-items:center;
min-height:100vh;
animation:fade .6s ease;
}

@keyframes fade{
from{opacity:0;transform:scale(.97);}
to{opacity:1;transform:scale(1);}
}

.container{
text-align:center;
max-width:700px;
padding:40px 25px;
}

.logo{
opacity:.5;
margin-bottom:10px;
}

.subtitle{
letter-spacing:6px;
font-size:14px;
margin-bottom:10px;
}

.title{
color:#f4c400;
font-size:80px;
font-weight:bold;
margin-bottom:25px;
}

.desc{
line-height:1.6;
color:#ddd;
margin-bottom:40px;
}

.btn{
background:#f4c400;
border:none;
padding:18px 45px;
border-radius:40px;
font-weight:bold;
cursor:pointer;
color: black;
transition:.3s;
}

.btn:hover{
transform:scale(1.05);
}

input{
width:100%;
padding:20px;
background:black;
border:2px solid #f4c400;
border-radius:40px;
color:white;
margin-bottom:20px;
font-size:16px;
}

input::placeholder{

font-size:10px;

color:#888;

letter-spacing:1px;

}

.row{
display:flex;
gap:15px;
}

.guest-counter{

display:flex;

align-items:stretch;

width:100%;

margin-bottom:20px;

border:2px solid #f4c400;

border-radius:40px;

overflow:hidden;

background:#000;

height:64px;   /* MATCH INPUT HEIGHT */

}

.guest-btn{

width:70px;

min-width:70px;

height:100%;

border:none;

background:#000;

color:#f4c400;

font-size:34px;

cursor:pointer;

display:flex;

align-items:center;

justify-content:center;

}

.guest-display{
flex:1;
height:100%;
background:#f4c400;
color:#000;
font-weight:700;
font-size:16px;
letter-spacing:.5px;
display:flex;
align-items:center;
justify-content:center;
line-height:1;
}

@media(max-width:600px){
  .guest-display{
    transform:translateY(-1px);
  }
}

.guest-btn:active{
transform:scale(0.98);
}

@media(max-width:600px){
.guest-btn{
width:64px;
min-width:64px;
height:70px;
font-size:34px;
}

.guest-display{
height:70px;
font-size:16px;
}
}

@media(max-width:600px){

.title{
font-size:50px;
}

.row{

display:flex;

gap:15px;

}

.row input{

flex:1;

min-width:0;

}


}

@media(max-width:420px){

.row{

gap:10px;

}

input{

padding:16px;

font-size:14px;

}

}


.hero-logo{

display:block;

width:100%;

max-width:520px;

height:auto;

margin:0 auto 30px auto;

object-fit:contain;

}

@keyframes fadeHero{

from{

opacity:0;
transform:translateY(10px);

}

to{

opacity:.95;
transform:translateY(0);

}

}

@media(max-width:600px){

.hero-logo{

max-width:340px;

}

}


.captcha-wrap{

display:flex;

justify-content:center;

margin:25px 0;

}

.submit-btn{

width:100%;

height:64px;   /* match input height */

background:#f4c400;

border:none;

border-radius:40px;

font-weight:700;

font-size:16px;

letter-spacing:.5px;

color:black;

cursor:pointer;

transition:.25s;

margin-top:10px;

}

.submit-btn:hover{

transform:scale(1.01);

}

.submit-btn:active{

transform:scale(.99);

}

.lambo-check{

display:flex;

align-items:center;

justify-content:center;   /* CENTER IT */

gap:16px;

margin:10px auto 26px auto;

cursor:pointer;

user-select:none;

max-width:520px;   /* keeps it aligned with inputs */

text-align:left;

}

.lambo-check input{
position:absolute;
opacity:0;
pointer-events:none;
width:0;
height:0;
}

.custom-check{
width:28px;
height:28px;
min-width:28px;
border-radius:8px;
background:#f4c400;
display:flex;
align-items:center;
justify-content:center;
position:relative;
transition:all .2s ease;
}

.custom-check::after{
content:"✓";
color:#000;
font-size:18px;
font-weight:700;
line-height:1;
opacity:0;
transform:scale(.7);
transition:all .2s ease;
}

.lambo-check input:checked + .custom-check::after{
opacity:1;
transform:scale(1);
}

.check-label{

color:#fff;

font-size:16px;

font-weight:600;

line-height:1.4;

text-align:left;

max-width:420px;

}

.model-wrap{
transition:opacity .25s ease, transform .25s ease, max-height .25s ease, margin .25s ease;
opacity:1;
transform:translateY(0);
max-height:120px;
overflow:hidden;
margin-bottom:20px;
}

.model-wrap.hidden{
opacity:0;
transform:translateY(-8px);
max-height:0;
margin-bottom:0;
pointer-events:none;
}

@media(max-width:600px){
.check-label{
font-size:16px;
}
.custom-check{
width:24px;
height:24px;
min-width:24px;
border-radius:7px;
}
.custom-check::after{
font-size:16px;
}
}

@media(max-width:600px){

.lambo-check{

max-width:100%;

padding:0 10px;

}

.check-label{

font-size:16px;

}

}


.model-select-wrap{
position:relative;
width:100%;
margin-bottom:0px;
}

.model-select{
width:100%;
height:64px;
padding:0 92px 0 42px;
background:#000;
border:2px solid #f4c400;
border-radius:40px;
color:#f4c400;
font-size:16px;
font-weight:700;
letter-spacing:.4px;
outline:none;
cursor:pointer;
appearance:none;
-webkit-appearance:none;
-moz-appearance:none;
}

.model-select option{
background:#000;
color:#f4c400;
}

.model-select:invalid{
color:#f4c400;
}

.model-select-arrow{
position:absolute;
top:0;
right:0;
width:92px;
height:100%;
background:#f4c400;
border-left:2px solid #f4c400;
border-radius:0 40px 40px 0;
display:flex;
align-items:center;
justify-content:center;
pointer-events:none;
}

.model-select-arrow span{

width:14px;

height:14px;

border-right:3px solid #000;

border-bottom:3px solid #000;

transform:rotate(45deg) translateY(-2px);

}

@media(max-width:600px){
.model-select{
height:64px;
padding:0 82px 0 28px;
font-size:14px;
}

.model-select-arrow{
width:82px;
}

.model-select-arrow span{
width:15px;
height:15px;
border-right:4px solid #000;
border-bottom:4px solid #000;
}
}