:root{
 --bg:#f5f7fb;
 --ink:#0f172a;
 --muted:#64748b;
 --line:#e5e7eb;


 --brand:#2563eb;
 --brand-d:#1e3a8a;
}

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

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial;
}

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


.container{
  width:min(1180px,92%);
  margin:auto;
}


.section{
  padding:50px 0;   
}


.hero-slider{
  position:relative;
  background:var(--bg);
  margin-bottom:30px;  
}

.hero-viewport{
  width:100%;
  margin:0;
  padding:0;
}

.slides{
  position:relative;
  height:clamp(360px,65vh,580px); 
  overflow:hidden;
  background:#000;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .6s ease;
}

.slide.active{
  opacity:1;
}

.slide img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.02);
  transition:transform 8s ease;
}

.slide.active img{
  transform:scale(1.08);
}

.veil{
  position:absolute;
  inset:0;
  background:
  linear-gradient(90deg,rgba(0,0,0,.55) 0%,rgba(0,0,0,.35) 42%,rgba(0,0,0,0) 72%),
  radial-gradient(80% 120% at 0% 50%, rgba(0,0,0,.55), transparent 60%);
}

.caption{
  position:absolute;
  left:40px;   
  top:40px;
  max-width:min(680px,72%);
  color:#fff;
}

.tag{
  display:inline-block;
  background:#2563eb;
  color:#fff;
  border-radius:12px;
  padding:7px 12px;
  font-weight:800;
  margin-bottom:12px;
}

.headline{
  font-size:clamp(28px,5vw,52px);
  line-height:1.05;
  font-weight:800;
  margin:0;
  text-shadow:0 2px 12px rgba(0,0,0,.45);
}

.subhead{
  margin:12px 0 18px;
  font-size:16px;
  opacity:.96;
}

.cta-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:linear-gradient(90deg,var(--brand),var(--brand-d));
  color:#fff;
  padding:12px 20px;
  border-radius:999px;
  font-weight:800;
  box-shadow:0 8px 20px rgba(37,99,235,.35);
}


.dots{
  display:flex;
  gap:10px;
  justify-content:center;
  padding:16px 0; 
}

.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#cbd5e1;
  border:2px solid #fff;
  cursor:pointer;
}

.dot.active{
  background:var(--brand);
}



.offer-strip{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  margin:25px 0; 
}

.offer-row{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;   
  padding:18px 0;
}

.offer-pill{
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 16px;
  box-shadow:0 6px 14px rgba(15,23,42,.08);
}



.title-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px; 
}

.section-title{
  margin:0;
  font-size:26px;
  font-weight:800;
}

.pkg-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px; 
}

.pkg-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  transition:all .25s ease;
}

.pkg-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(15,23,42,.15);
}

.pkg-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.pkg-body{
  padding:16px;
}

.pkg-body .sub{
  color:var(--muted);
  margin:.25rem 0 .75rem;
}



.btn.primary{
  background:#2563eb;
  color:#fff;
  border:0;
  padding:12px 20px;
  border-radius:14px;
  font-weight:700;
  box-shadow:0 6px 16px rgba(0,0,0,.15);
  transition:.2s;
}

.btn.primary:hover{
  background:#1e40af;
  transform:translateY(-2px);
}


.reviews-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px; 
}

.review-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px;
}

.review-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  object-fit:cover;
}

.stars{
  color:#f59e0b;
  font-size:14px;
  letter-spacing:1px;
}

.review-text{
  color:var(--muted);
  font-size:14px;
  margin-top:6px;
}



.site-footer{
  background:linear-gradient(180deg,#1e293b,#0f172a);
  color:#e5e7eb;
  margin-top:50px; 
}

.footer-top{
  padding:36px 0;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.fgrid{
  display:grid;
  grid-template-columns:2fr 1.2fr 1.2fr 1.2fr;
  gap:28px;
}

.fbrand h4{
  margin:0 0 10px;
  color:#60a5fa;
}

.fbrand p{
  margin:0;
  color:#cbd5e1;
}

.fcol h4{
  margin:0 0 12px;
  color:#60a5fa;
}

.fcol ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.fcol a{
  color:#e5e7eb;
}

.fcol a:hover{
  color:#fff;
}

.social{
  display:flex;
  gap:12px;
  margin-top:10px;
}

.social a{
  display:inline-grid;
  place-items:center;
  width:36px;
  height:36px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:10px;
}

.foot-bottom{
  padding:16px 0;
  color:#94a3b8;
  font-size:14px;
}
/* ===== MOBILE HERO FIX ===== */

@media(max-width:768px){

.caption{
left:20px;
top:20px;
max-width:90%;
}

.headline{
font-size:28px;
line-height:1.2;
}

.subhead{
font-size:14px;
}

.slides{
height:60vh;
}

}