:root{
  --sky:#8fd3f4;
  --sky-light:#c9ecff;
  --navy:#12233f;
  --red:#e63946;
  --yellow:#ffc93c;
  --blue:#2b6cb0;
  --green:#2f9e44;
  --white:#ffffff;
}
*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family:'Segoe UI', system-ui, -apple-system, sans-serif;
  color:var(--navy);
  background:linear-gradient(180deg, var(--sky) 0%, var(--sky-light) 100%);
  line-height:1.5;
}
a{color:inherit;}
img{max-width:100%;display:block;}
.wrap{max-width:1100px;margin:0 auto;padding:0 24px;}

/* Header */
header{
  position:sticky;top:0;z-index:50;
  background:var(--navy);
  color:var(--white);
  box-shadow:0 2px 10px rgba(0,0,0,.15);
}
header .wrap{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 24px;
}
.logo{
  font-weight:900;font-size:1.4rem;letter-spacing:.5px;
  display:flex;align-items:center;gap:10px;
  text-decoration:none;color:var(--white);
}
.logo .dot{color:var(--yellow);}
.logo img{height:52px;width:52px;object-fit:contain;border-radius:50%;}
nav ul{list-style:none;display:flex;gap:24px;}
nav a{
  text-decoration:none;font-weight:600;font-size:.95rem;
  padding:6px 4px;border-bottom:2px solid transparent;
}
nav a:hover{border-bottom:2px solid var(--yellow);}
.book-btn{
  background:var(--red);color:var(--white);
  padding:10px 18px;border-radius:30px;font-weight:700;
  text-decoration:none;font-size:.9rem;
  box-shadow:0 3px 0 #a4212b;
}
.book-btn:hover{filter:brightness(1.05);}

/* Hero */
.hero{
  text-align:center;padding:70px 24px 60px;
}
.hero .badge{
  display:inline-block;background:var(--yellow);color:var(--navy);
  padding:6px 16px;border-radius:20px;font-weight:800;font-size:.8rem;
  letter-spacing:1px;margin-bottom:18px;text-transform:uppercase;
}
.hero h1{
  font-size:3rem;font-weight:900;color:var(--navy);
  text-shadow:3px 3px 0 var(--white);
  line-height:1.1;margin-bottom:14px;
}
.hero h1 span{color:var(--red);}
.hero p{
  font-size:1.15rem;max-width:600px;margin:0 auto 28px;color:#1c3455;
}
.hero-cta{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}
.btn-primary{
  background:var(--red);color:var(--white);padding:16px 32px;
  border-radius:40px;font-weight:800;font-size:1.05rem;text-decoration:none;
  box-shadow:0 4px 0 #a4212b;
  border:none;cursor:pointer;font-family:inherit;
}
.btn-secondary{
  background:var(--white);color:var(--navy);padding:16px 32px;
  border-radius:40px;font-weight:800;font-size:1.05rem;text-decoration:none;
  box-shadow:0 4px 0 #b7d7ea;border:2px solid var(--blue);
}

/* Section titles */
section{padding:60px 0;}
.section-title{
  text-align:center;font-size:2.1rem;font-weight:900;color:var(--navy);
  margin-bottom:8px;
}
.section-sub{
  text-align:center;color:#3a5271;max-width:560px;margin:0 auto 40px;
}

/* Fleet */
.fleet-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:28px;
}
.fleet-card{
  background:var(--white);border-radius:18px;overflow:hidden;
  box-shadow:0 8px 24px rgba(18,35,63,.12);
  transition:transform .2s;
}
.fleet-card:hover{transform:translateY(-4px);}
.fleet-img{
  height:220px;background:linear-gradient(135deg,#dcf0ff,#b8e0ff);
  display:flex;align-items:center;justify-content:center;
  color:#5c85ad;font-weight:700;font-size:.95rem;text-align:center;padding:20px;
  border-bottom:4px solid var(--yellow);
}
.fleet-body{padding:22px 24px 26px;}
.fleet-body h3{font-size:1.35rem;font-weight:800;margin-bottom:6px;}
.fleet-price{
  display:inline-block;background:var(--green);color:var(--white);
  font-weight:800;padding:4px 14px;border-radius:20px;font-size:.95rem;
  margin-bottom:12px;
}
.fleet-specs{list-style:none;color:#3a5271;font-size:.92rem;margin-bottom:16px;}
.fleet-specs li{padding:3px 0;}
.fleet-specs li::before{content:"▸ ";color:var(--blue);font-weight:700;}
.fleet-note{
  font-size:.8rem;color:#8a97ab;font-style:italic;
}

/* Booking */
.booking-section{
  background:var(--navy);color:var(--white);
}
.booking-section .section-title,
.booking-section .section-sub{color:var(--white);}
.booking-section .section-sub{color:#b9c6dd;}
.request-wrap{
  background:var(--white);border-radius:18px;padding:28px 30px;
  max-width:640px;margin:0 auto 24px;
}
.request-form .form-row{margin-bottom:16px;}
.request-form .form-row label{
  display:block;font-weight:700;font-size:.88rem;margin-bottom:5px;color:var(--navy);
}
.request-form .form-row input[type=text],
.request-form .form-row input[type=tel],
.request-form .form-row input[type=date],
.request-form .form-row textarea{
  width:100%;padding:11px 13px;border:1.5px solid #d3dee9;border-radius:8px;
  font-size:.92rem;font-family:inherit;
}
.request-form .form-row textarea{min-height:70px;resize:vertical;}
.waiver-cta{
  max-width:900px;margin:0 auto;background:rgba(255,255,255,.08);
  border:1px dashed rgba(255,255,255,.35);border-radius:14px;
  padding:20px 24px;text-align:center;
}
.waiver-cta p{color:#dce6f5;margin-bottom:12px;}

/* Info / Contact */
.info-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
}
.info-card{
  background:var(--white);border-radius:16px;padding:26px 22px;
  text-align:center;box-shadow:0 6px 18px rgba(18,35,63,.1);
}
.info-card .icon{font-size:1.8rem;margin-bottom:10px;}
.info-card h4{font-weight:800;margin-bottom:6px;}
.info-card p, .info-card a{color:#3a5271;text-decoration:none;font-size:.95rem;}
.info-card a:hover{color:var(--blue);}

footer{
  background:var(--navy);color:#b9c6dd;text-align:center;
  padding:34px 24px;font-size:.85rem;
}
footer .foot-brand{color:var(--white);font-weight:800;margin-bottom:8px;font-size:1.05rem;}
footer .socials{margin:14px 0;display:flex;gap:16px;justify-content:center;}
footer .socials a{
  color:var(--white);text-decoration:none;font-weight:700;
  background:rgba(255,255,255,.1);padding:8px 16px;border-radius:20px;
}
footer .socials a:hover{background:rgba(255,255,255,.2);}

@media (max-width:640px){
  nav ul{display:none;}
  .hero h1{font-size:2.2rem;}
}

/* ---------- Waiver page ---------- */
.legal-page{padding:100px 0 70px;}
.legal-card{
  background:var(--white);border-radius:18px;padding:36px 40px;
  max-width:820px;margin:0 auto 32px;box-shadow:0 8px 24px rgba(18,35,63,.12);
}
.legal-card h1{font-size:1.9rem;font-weight:900;margin-bottom:6px;}
.legal-card .legal-sub{color:#3a5271;margin-bottom:24px;font-size:.95rem;}
.disclaimer-box{
  background:#fff4e5;border:1px solid #ffcf8a;border-radius:12px;
  padding:16px 18px;margin-bottom:26px;font-size:.88rem;color:#5a3d10;
}
.disclaimer-box strong{display:block;margin-bottom:4px;}
.legal-body h2{font-size:1.1rem;font-weight:800;margin:22px 0 8px;color:var(--navy);}
.legal-body p, .legal-body li{font-size:.93rem;color:#2c3e5c;margin-bottom:8px;}
.legal-body ul{padding-left:20px;margin-bottom:8px;}
.legal-body ul li::before{content:"";}

.waiver-form{margin-top:30px;border-top:2px solid #e7edf5;padding-top:26px;}
.waiver-form h2{font-size:1.2rem;font-weight:800;margin-bottom:16px;color:var(--navy);}
.form-row{margin-bottom:16px;}
.form-row label{
  display:block;font-weight:700;font-size:.88rem;margin-bottom:5px;color:var(--navy);
}
.form-row input[type=text],
.form-row input[type=email],
.form-row input[type=tel],
.form-row input[type=date],
.form-row textarea{
  width:100%;padding:11px 13px;border:1.5px solid #d3dee9;border-radius:8px;
  font-size:.92rem;font-family:inherit;
}
.form-row textarea{min-height:70px;resize:vertical;}
.form-row-2col{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.checkbox-row{
  display:flex;align-items:flex-start;gap:10px;margin-bottom:14px;
  background:#f6f9fc;padding:12px 14px;border-radius:10px;
}
.checkbox-row input{margin-top:3px;width:16px;height:16px;flex-shrink:0;}
.checkbox-row label{font-size:.86rem;color:#2c3e5c;font-weight:500;}
.sign-note{font-size:.78rem;color:#8a97ab;margin-top:-8px;margin-bottom:16px;}
.submit-btn{
  background:var(--red);color:var(--white);padding:15px 30px;
  border:none;border-radius:40px;font-weight:800;font-size:1rem;cursor:pointer;
  box-shadow:0 4px 0 #a4212b;width:100%;
}
.submit-btn:hover{filter:brightness(1.05);}
.back-link{
  display:inline-block;margin-bottom:18px;font-weight:700;font-size:.9rem;
  color:var(--blue);text-decoration:none;
}
@media (max-width:640px){
  .legal-card{padding:26px 20px;}
  .form-row-2col{grid-template-columns:1fr;}
}
