/* =========== Base =========== */
*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  font-family:Arial,Helvetica,sans-serif;
  color:#222;
  background:#f7f9fc;
  line-height:1.6;
}
a{color:inherit;text-decoration:none}

/* IMPORTANT: keep tabs working */
.hidden{
  display:none !important;
}

/* =========== Top Bar =========== */
.topbar{
  background:#062b63;
  color:#fff;
  font-size:14px;
  padding:6px 16px;
}
.topbar .wrap{
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
}
.topbar a{
  color:#fff;
  font-weight:600;
  margin-left:12px;
}
.topbar a:hover{text-decoration:underline}

/* =========== Navbar =========== */
.navbar{
  position:sticky;
  top:0;
  z-index:50;
  background:#0a3d91;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.navbar .wrap{
  max-width:1100px;
  margin:auto;
  padding:10px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{font-weight:800}
.nav-links a{
  margin:0 10px;
  padding:8px 10px;
  border-radius:8px;
  font-weight:700;
}
.nav-links a:hover,
.nav-links a.active{
  background:rgba(255,255,255,.14);
}

/* =========== HERO (FULL IMAGE – TEXT INSIDE) =========== */
.hero{
  min-height:70vh;
  display:flex;
  align-items:flex-end;      /* text at bottom of image */
  justify-content:center;
  text-align:center;
  color:#fff;
  position:relative;

  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;     /* 🔥 full image fills hero */
  background-color:#000;
  padding-bottom:20px;       /* spacing from bottom */
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.45));
}

.hero .inner{
  position:relative;
  padding:0 16px;
  width:100%;
}

.hero h1{
  margin:0;
  font-size:clamp(26px,5vw,42px);
  line-height:1.2;
}

/* =========== Containers =========== */
.container{
  max-width:1100px;
  margin:auto;
  padding:24px 16px;
}
.section-title{
  font-size:1.6rem;
  margin:14px 0;
  color:#0a3d91;
}

/* =========== Tabs (index forms) =========== */
.tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.tab-btn{
  padding:10px 14px;
  border:1px solid #dfe3ea;
  background:#fff;
  cursor:pointer;
  border-radius:10px;
  font-weight:700;
}
.tab-btn.active{
  background:#0a3d91;
  color:#fff;
  border-color:#0a3d91;
}

/* =========== Forms =========== */
.form-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:16px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}
form.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
label{
  font-size:13px;
  font-weight:700;
}
input,select,textarea{
  width:100%;
  padding:10px 12px;
  border:1px solid #e5e7eb;
  border-radius:10px;
}
textarea{min-height:110px}
.btn{
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #0a3d91;
  background:#0a3d91;
  color:#fff;
  font-weight:800;
  cursor:pointer;
}
.btn.outline{
  background:#fff;
  color:#0a3d91;
}
.btn.full{grid-column:1/-1}

/* =========== Services =========== */
.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}
.service{
  background:#fff;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  overflow:hidden;
  text-align:center;
}
.service img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}
.service h3{margin:12px 0 6px;color:#003366}
.service p{padding:0 14px 18px;color:#444}

/* =========== Packages =========== */
.grid-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}
.pkg{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
}
.pkg img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
  background:#e5e7eb;
}
.pkg .body{padding:12px}
.price{font-weight:900;color:#0a3d91}

/* =========== Floating Buttons =========== */
.fab{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:999;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.fab a{
  color:#fff;
  font-weight:800;
  padding:10px 12px;
  border-radius:10px;
  box-shadow:0 8px 20px rgba(0,0,0,.15);
}
.fab .call{background:#0a3d91}
.fab .wa{background:#25D366}
.fab .cb{background:#0a3d91}

/* =========== Footer =========== */
footer{
  background:#fff;
  text-align:center;
  padding:16px;
  color:#6b7280;
  border-top:1px solid #e6eef8;
}

/* =========== Mobile =========== */
@media(max-width:768px){
  .hero{min-height:55vh; align-items:flex-end; padding-bottom:16px}
  .service img{height:160px}
  .pkg img{height:150px}
}
/* modal FIX */
#bookingModal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
}
/* BOOK NOW MODAL FIX */
#bookingModal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
}

#bookingModal.hidden{
  display:none !important;
}

#bookingModal .form-card{
  max-width:420px;
  width:92%;
}
.brand {
  display: flex;
  align-items: center;
}

.navbar .brand img {
  height: 40px;          /* DP size height */
  width: 40px;           /* DP size width */
  object-fit: cover;     /* crop/fit nicely */
  border-radius: 50%;    /* make it round */
  vertical-align: middle;
  margin-right: 8px;     /* space between logo and text */
}
.navbar .wrap {
  flex-direction: column;    /* stack logo row + nav links row */
  align-items: flex-start;
  gap: 6px;
}

.navbar .brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .brand-row img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.navbar .brand-row span {
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}

.navbar .nav-links {
  display: flex;
  gap: 12px;
}
.navbar .nav-links {
  display: flex;
  flex-wrap: wrap;   /* allows links to go to next line if not enough space */
  gap: 12px;
}.navbar .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;  /* centers links under logo */
  width: 100%;
}

/* Navbar Logo + Name styling for all pages */
.navbar .wrap {
  flex-direction: column;    /* stack logo row + nav links row */
  align-items: flex-start;
  gap: 6px;
}

.navbar .brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .brand-row img {
  height: 40px;          /* DP size height */
  width: 40px;           /* DP size width */
  object-fit: cover;     /* crop/fit nicely */
  border-radius: 50%;    /* make it round */
}

.navbar .brand-row span {
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}

.navbar .nav-links {
  display: flex;
  flex-wrap: wrap;   /* allows links to go to next line if needed */
  gap: 12px;
  justify-content: center;  /* centers links under logo */
  width: 100%;
}
