
*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial,sans-serif;
  background:#f4f7fb;
  color:#111827;
}

.container{
  width:min(1180px, calc(100% - 32px));
  margin:auto;
}

.header{
  background:#031b43;
  color:white;
  padding:18px 0;
}

.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.topbar h1{
  margin:0;
  font-size:32px;
}

.topbar p{
  margin:4px 0 0;
  color:#c9d8ff;
}

.book-btn{
  background:#2e8fff;
  color:white;
  text-decoration:none;
  padding:14px 22px;
  border-radius:14px;
  font-weight:700;
}

.hero{
  position:relative;
  background:linear-gradient(135deg,#031b43,#0e4fb3);
  padding:80px 0;
  overflow:hidden;
}

.overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(255,255,255,.15), transparent 40%);
}

.hero-content{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 500px;
  gap:40px;
  align-items:center;
}

.hero-text{
  color:white;
}

.tag{
  display:inline-block;
  background:white;
  color:#0e4fb3;
  padding:10px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  margin-bottom:20px;
}

.hero-text h2{
  font-size:64px;
  line-height:1;
  margin:0 0 20px;
}

.hero-text p{
  font-size:20px;
  line-height:1.7;
  color:#dbeafe;
  max-width:600px;
}

.hero-buttons{
  display:flex;
  gap:14px;
  margin-top:30px;
}

.primary-btn,
.secondary-btn{
  padding:14px 24px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
}

.primary-btn{
  background:white;
  color:#031b43;
}

.secondary-btn{
  border:1px solid rgba(255,255,255,.4);
  color:white;
}

.flyer-card img{
  width:100%;
  border-radius:24px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.section{
  padding:80px 0;
}

.section-title{
  text-align:center;
  margin-bottom:40px;
}

.section-title h2{
  font-size:48px;
  margin:0 0 12px;
}

.section-title p{
  color:#6b7280;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.service-card{
  background:white;
  border-radius:24px;
  padding:30px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.featured{
  border:3px solid #2e8fff;
}

.service-card h3{
  margin-top:0;
  font-size:32px;
  color:#031b43;
}

.service-card ul{
  padding-left:20px;
  line-height:2;
}

.pricing{
  margin-top:25px;
}

.pricing div{
  display:flex;
  justify-content:space-between;
  padding:14px 0;
  border-bottom:1px solid #e5e7eb;
}

.pricing strong{
  color:#0e4fb3;
  font-size:24px;
}

.booking{
  background:#031b43;
  color:white;
  padding:80px 0;
}

.booking-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
}

.booking h2{
  font-size:48px;
  margin-top:0;
}

.contact-box{
  background:#0e4fb3;
  padding:24px;
  border-radius:20px;
  margin-top:30px;
}

.booking-form{
  background:white;
  padding:30px;
  border-radius:24px;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
  width:100%;
  margin-bottom:16px;
  padding:14px;
  border-radius:12px;
  border:1px solid #d1d5db;
  font-size:16px;
}

.booking-form button{
  width:100%;
  padding:16px;
  border:none;
  border-radius:14px;
  background:#0e4fb3;
  color:white;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
}

footer{
  background:#02112a;
  color:#d1d5db;
  text-align:center;
  padding:24px;
}

@media(max-width:950px){

.hero-content,
.booking-wrap{
  grid-template-columns:1fr;
}

.service-grid{
  grid-template-columns:1fr;
}

.hero-text h2{
  font-size:46px;
}

.topbar{
  flex-direction:column;
  gap:18px;
  text-align:center;
}

}
