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

:root{
  --bg:#070A0F;
  --panel:#111925;
  --panel-strong:#151E2A;
  --line:rgba(255,255,255,.12);
  --line-strong:rgba(255,255,255,.2);
  --text:#F6F8FB;
  --muted:#A8B5C7;
  --muted-strong:#D2D9E4;
  --accent:#F4243E;
  --accent-dark:#B90F26;
  --cyan:#10D7F4;
  --green:#24E38B;
  --gold:#F7C844;
  --shadow:0 28px 80px rgba(0,0,0,.38);
}

body{
  min-height:100vh;
  background:
    linear-gradient(135deg, rgba(7,10,15,.88), rgba(7,10,15,.96)),
    url("/assets/homepage/racepass-home-bg.jpg") center / cover fixed,
    var(--bg);
  color:var(--text);
  font-family:Inter, "Segoe UI", Arial, sans-serif;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(7,10,15,.96), rgba(7,10,15,.66) 48%, rgba(7,10,15,.9)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 120px);
  z-index:-1;
}

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

.booking-header{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:16px clamp(22px, 5vw, 76px);
  background:rgba(7,10,15,.86);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(18px);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
}

.brand img{
  width:152px;
  height:auto;
  display:block;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.32));
}

.brand span{
  color:var(--muted-strong);
}

nav{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:13px;
  font-weight:850;
}

nav a{
  min-height:38px;
  display:grid;
  place-items:center;
  padding:0 12px;
  border-radius:7px;
  border:1px solid transparent;
}

nav a:hover{
  color:#fff;
  background:rgba(255,255,255,.08);
  border-color:var(--line);
}

.booking-page{
  min-height:calc(100vh - 76px);
  display:grid;
  grid-template-columns:minmax(320px, .78fr) minmax(460px, 1fr);
  gap:28px;
  padding:clamp(22px, 4vw, 56px) clamp(22px, 5vw, 76px);
}

.booking-intro,
.booking-card{
  border:1px solid var(--line);
  border-radius:10px;
  background:linear-gradient(180deg, rgba(17,25,37,.94), rgba(8,12,18,.96));
  box-shadow:var(--shadow);
}

.booking-intro{
  min-height:calc(100vh - 188px);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:32px;
  padding:30px;
}

.eyebrow{
  color:var(--cyan);
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
}

h1{
  margin-top:14px;
  font-size:clamp(42px, 5vw, 70px);
  line-height:.92;
  letter-spacing:0;
}

.lead{
  max-width:700px;
  margin-top:22px;
  color:var(--muted-strong);
  font-size:17px;
  font-weight:700;
  line-height:1.55;
}

.package-panel{
  display:grid;
  gap:14px;
}

.price-card{
  padding:22px;
  border-left:5px solid var(--accent);
  border-radius:8px;
  background:rgba(255,255,255,.06);
}

.price-card span,
.price-card small{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
}

.price-card strong{
  display:block;
  margin:9px 0;
  color:var(--gold);
  font-size:40px;
  line-height:1;
  font-weight:950;
}

.included-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:9px;
}

.included-list div{
  min-height:50px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.045);
  color:var(--muted-strong);
  font-size:12px;
  font-weight:850;
  line-height:1.35;
}

.included-list span{
  width:8px;
  height:8px;
  flex:0 0 auto;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 6px rgba(36,227,139,.1);
}

.booking-card{
  align-self:start;
  padding:28px;
}

.form-header{
  margin-bottom:20px;
}

h2{
  margin-top:8px;
  font-size:34px;
  line-height:1;
}

.form-header p:last-child{
  max-width:680px;
  margin-top:12px;
  color:var(--muted);
  font-size:14px;
  font-weight:750;
  line-height:1.5;
}

.booking-form{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.wide{
  grid-column:1 / -1;
}

label{
  display:grid;
  gap:8px;
}

label span{
  color:var(--muted);
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
}

input,
textarea{
  width:100%;
  min-height:45px;
  padding:0 13px;
  border:1px solid var(--line);
  border-radius:7px;
  outline:none;
  background:rgba(255,255,255,.065);
  color:var(--text);
  font:850 13px/1.2 Inter, "Segoe UI", Arial, sans-serif;
}

textarea{
  min-height:122px;
  padding:13px;
  resize:vertical;
}

input::placeholder,
textarea::placeholder{
  color:rgba(210,217,228,.42);
}

input:focus,
textarea:focus{
  border-color:rgba(16,215,244,.46);
  box-shadow:0 0 0 3px rgba(16,215,244,.11);
}

button{
  grid-column:1 / -1;
  min-height:52px;
  border:0;
  border-radius:8px;
  background:linear-gradient(135deg, var(--accent), var(--accent-dark));
  color:#fff;
  font-size:14px;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 20px 45px rgba(244,36,62,.2);
}

button:disabled{
  cursor:not-allowed;
  opacity:.66;
}

.form-note{
  grid-column:1 / -1;
  min-height:42px;
  display:flex;
  align-items:center;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.045);
  color:var(--muted);
  font-size:13px;
  font-weight:800;
  line-height:1.35;
}

.form-note.success{
  border-color:rgba(36,227,139,.32);
  background:rgba(36,227,139,.08);
  color:#B7FFD6;
}

.form-note.error{
  border-color:rgba(244,36,62,.34);
  background:rgba(244,36,62,.08);
  color:#FFC7CE;
}

@media (max-width:1080px){
  .booking-page{
    grid-template-columns:1fr;
  }

  .booking-intro{
    min-height:auto;
  }
}

@media (max-width:720px){
  .booking-header{
    align-items:flex-start;
    flex-direction:column;
  }

  nav{
    flex-wrap:wrap;
  }

  .booking-form,
  .included-list{
    grid-template-columns:1fr;
  }
}
