/* =====================================================
   ROOT VARIABLES
===================================================== */
:root{
  --bg:#0b1020;
  --panel:#121a33;
  --panel-soft:#0f1731;
  --text:#eef1ff;
  --muted:#a7b0d8;
  --border:rgba(255,255,255,.08);
  --accent:#6ea8fe;
  --accent2:#8b5cf6;
  --radius:16px;
  --radius-sm:12px;
  --shadow:0 20px 60px rgba(0,0,0,.45);
}

/* =====================================================
   RESET / BASE
===================================================== */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:var(--bg);
  color:var(--text);
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* keep header/footer safe */
header, footer{position:relative;z-index:10}
main{position:relative;z-index:1}

/* =====================================================
   BUTTONS
===================================================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:var(--radius-sm);
  border:none;
  cursor:pointer;
  font-weight:700;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#0b1020;
}
.btn:hover{filter:brightness(1.05)}
.btn.secondary{
  background:transparent;
  border:1px solid var(--border);
  color:var(--text);
}
.btn:active{transform:translateY(1px)}

/* =====================================================
   HERO
===================================================== */
.hero{
  background:
    linear-gradient(90deg, rgba(11,16,32,.88), rgba(11,16,32,.6)),
    url("https://images.pexels.com/photos/6560304/pexels-photo-6560304.jpeg") center/cover no-repeat;
  padding:90px 20px;
}
.hero__content{
  max-width:1100px;
  margin:0 auto;
}
.hero h1{
  font-size:38px;
  margin:0 0 12px;
}
.hero p{
  max-width:620px;
  color:var(--muted);
  line-height:1.6;
}
.hero__actions{
  display:flex;
  gap:12px;
  margin-top:20px;
  flex-wrap:wrap;
}

/* =====================================================
   SECTIONS
===================================================== */
.section{
  max-width:1100px;
  margin:0 auto;
  padding:50px 20px;
}
.section__head{
  text-align:center;
  margin-bottom:30px;
}
.section__head h2{
  margin:0;
  font-size:30px;
}
.section__head p{
  margin-top:8px;
  color:var(--muted);
}

/* =====================================================
   PLANS / SERVICES
===================================================== */
.plans{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:22px;
}
.plan{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:var(--shadow);
}
.plan img{
  height:190px;
  width:100%;
  object-fit:cover;
}
.plan__body{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.plan__body h3{
  margin:0;
  font-size:18px;
}
.plan__body p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.plan__price{
  margin-top:8px;
  font-size:20px;
  font-weight:800;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.plan .btn{
  margin-top:12px;
}

/* =====================================================
   MODAL
===================================================== */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}
.modal.show{display:block}

.modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65);
}

.modal__box{
  position:relative;
  background:var(--panel);
  border-radius:var(--radius);
  border:1px solid var(--border);
  max-width:760px;
  margin:40px auto;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  max-height:90vh;
  overflow:hidden;
}

/* =====================================================
   MODAL HEADER / FOOTER
===================================================== */
.modal__header{
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--border);
}
.modal__header h3{
  margin:0;
  font-size:18px;
}
.modal__header button{
  background:none;
  border:none;
  font-size:26px;
  cursor:pointer;
  color:var(--text);
}

.modal__footer{
  padding:16px 18px;
  border-top:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.total{
  font-size:16px;
}
.total strong{
  margin-left:6px;
  font-size:22px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.total__hint{
  font-size:12px;
  color:var(--muted);
}

/* =====================================================
   BOOKING FORM
===================================================== */
.booking-form{
  padding:18px;
  overflow:auto;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.form-grid .full{
  grid-column:1 / -1;
}

label{
  display:block;
  font-size:12px;
  font-weight:600;
  color:var(--muted);
  margin-bottom:6px;
}

input, select, textarea{
  width:100%;
  padding:12px;
  border-radius:var(--radius-sm);
  border:1px solid var(--border);
  background:var(--panel-soft);
  color:var(--text);
  outline:none;
}
textarea{
  resize:vertical;
  min-height:90px;
}
input:focus, select:focus, textarea:focus{
  border-color:rgba(110,168,254,.55);
}

/* =====================================================
   ADDONS
===================================================== */
.addons{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.addon{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  cursor:pointer;
}
.addon input{margin-top:4px}
.addon__main{
  display:flex;
  flex-direction:column;
  gap:4px;
  flex:1;
}
.addon__main small{
  font-size:12px;
  color:var(--muted);
}
.addon__price{
  font-weight:800;
  white-space:nowrap;
}

/* =====================================================
   TRACK PAGE SUPPORT
===================================================== */
.grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
}
@media(max-width:900px){
  .grid{grid-template-columns:1fr}
}

.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.card__pad{padding:18px}
.card__title{
  margin:0 0 8px;
  font-size:20px;
  font-weight:800;
}
.card__sub{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.6;
}

.badge{
  display:inline-block;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  font-size:12px;
  font-weight:700;
}

.table{
  width:100%;
  border-collapse:collapse;
  margin-top:8px;
}
.table th, .table td{
  padding:10px 8px;
  border-bottom:1px solid var(--border);
  text-align:left;
  font-size:14px;
}
.table th{
  color:var(--muted);
  font-weight:800;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:900px){
  .hero h1{font-size:30px}
  .modal__box{margin:20px}
}

@media(max-width:700px){
  .form-grid{grid-template-columns:1fr}
  .modal__box{
    margin:0;
    border-radius:0;
    height:100vh;
    max-height:100vh;
  }
  .modal__overlay{display:none}
}
/* ===============================
   GLOBAL LAYOUT
================================ */
.site-header{
  background:rgba(11,16,32,.9);
  border-bottom:1px solid var(--border);
}
.site-header__inner{
  max-width:1100px;
  margin:0 auto;
  padding:16px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  flex-direction:column;
  font-size:14px;
}
.brand strong{
  font-size:18px;
}
.brand span{
  color:var(--muted);
  font-size:12px;
}
.nav{
  display:flex;
  gap:16px;
}
.nav a{
  color:var(--text);
  font-weight:600;
  opacity:.9;
}
.nav a:hover{opacity:1}

/* ===============================
   FOOTER
================================ */
.site-footer{
  border-top:1px solid var(--border);
  background:rgba(255,255,255,.02);
}
.site-footer__inner{
  max-width:1100px;
  margin:0 auto;
  padding:16px 20px;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}

/* ===============================
   SUCCESS PAGE
================================ */
.page{
  min-height:calc(100vh - 160px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
}
.page__content{
  width:100%;
  max-width:720px;
}
.success-card{
  background:linear-gradient(180deg,#121a33,#0f1731);
  border:1px solid var(--border);
  border-radius:22px;
  padding:36px 32px;
  text-align:center;
  box-shadow:0 30px 80px rgba(0,0,0,.6);
}
.success-card h2{
  margin:0 0 12px;
  font-size:28px;
  font-weight:900;
}
.success-card p{
  color:var(--muted);
  line-height:1.6;
}
.success-id{
  margin:24px 0;
  padding:16px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
}
.success-id strong{
  display:block;
  font-size:13px;
  color:var(--muted);
}
.success-id code{
  display:block;
  margin-top:6px;
  font-size:22px;
  font-weight:900;
  letter-spacing:1px;
}
.success-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  margin-top:26px;
  flex-wrap:wrap;
}
