/* ====== Top Bar ====== */
.top-bar{
  display:grid;
  grid-template-columns: 1fr auto 1fr; /* left | social | right */
  gap:12px;
  align-items:center;
  padding:10px 16px;
  background:#f7fbff;
  border-bottom:1px solid #eef3f8;
  font-family:'Segoe UI',sans-serif;
}
.top-left, .top-right, .top-social{ display:flex; align-items:center; gap:14px; }
.top-left a, .top-left span, .top-right button, .top-social a{
  font-size:.95rem; color:#02334e; text-decoration:none;
}
.top-left i, .top-right i{ color:#0190ca; margin-right:6px; }
.top-social a{ color:#0190ca; font-size:18px; }
.top-social a:hover{ color:#ff4fa2; }

@media (max-width:840px){
  .top-bar{ grid-template-columns: 1fr auto; }
  .top-right{ justify-content:flex-end; }
  .top-social{ display:none; } /* keep it clean on small screens */
}

/* ====== Header + Navigation ====== */
.main-header{ position:sticky; top:0; z-index:50; background:#fff; border-bottom:1px solid #eef3f8; }
.nav-inner{
  max-width:1200px; margin:0 auto; padding:10px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.logo img{ height:64px; width:auto; display:block; }

.nav-toggle{
  display:none; background:#fff; border:1px solid #e6eef5; border-radius:10px;
  padding:8px 10px; font-size:18px; color:#02334e; cursor:pointer;
}
.main-nav{ display:flex; gap:18px; align-items:center; }
.main-nav a{
  color:#02334e; text-decoration:none; font-weight:600; padding:8px 10px; border-radius:10px;
}
.main-nav a:hover{ background:#f2f7ff; color:#0190ca; }

/* Mobile menu */
@media (max-width:960px){
  .nav-toggle{ display:inline-flex; }
  .main-nav{
    position:fixed; left:0; right:0; top:64px; /* just below header row */
    background:#ffffff; border-top:1px solid #eef3f8;
    padding:14px 16px; gap:10px; flex-direction:column; display:none;
  }
  body.nav-open .main-nav{ display:flex; }
}

/* Keep CTAs consistent */
.book-now-btn{
  background-color:#ff4fa2; color:#fff; padding:10px 18px; border:none; border-radius:30px;
  cursor:pointer; font-weight:700; box-shadow:0 6px 12px rgba(255,79,162,.25);
}
.book-now-btn:hover{ background:#e0388f; }


.admin-login, .admin-dashboard {
  max-width: 500px;
  margin: 100px auto;
  padding: 40px;
  background: #f9f9f9;
  border: 2px solid #0190ca;
  border-radius: 10px;
  font-family: 'Segoe UI', sans-serif;
}

.admin-login h2, .admin-dashboard h1 {
  color: #ff4fa2;
  margin-bottom: 20px;
}

.admin-login form input, .admin-login form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 16px;
}

.admin-dashboard ul {
  list-style: none;
  padding: 0;
}

.admin-dashboard ul li {
  margin: 15px 0;
}

.admin-dashboard ul li a {
  color: #0190ca;
  font-weight: bold;
  text-decoration: none;
}

.admin-dashboard ul li a:hover {
  text-decoration: underline;
}

.book-now-btn {
  background-color: #ff4fa2;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.book-now-btn:hover {
  background-color: #e0388f;
}

/* footer.css */
.site-footer {
  background: #0190ca;
  color: #fff;
  padding: 40px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr; /* Give About section more width */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h3 {
  margin-top: 0;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-column p,
.footer-column ul {
  margin: 0 0 12px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 6px 0;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social a {
  margin-left: 12px;
  font-size: 1.1rem;
  color: #fff;
}

.footer-social a:hover {
  color: #ffd700;
}

.page-hero.small-hero { position: relative; min-height: 280px; display:flex; align-items:center; justify-content:center; }
.page-hero .overlay { background: rgba(2,51,78,0.45); color:#fff; padding: 40px 20px; text-align:center; border-radius:16px; }
.grid-wrap { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.card-grid { display:grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap:24px; }
.card-grid.five-up { grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); }
.card { background:#fff; border:1px solid #eee; border-radius:12px; overflow:hidden; display:flex; flex-direction:column; }
.card-image img { width:100%; height:auto; display:block; }
.card-image.square img { aspect-ratio: 1/1; object-fit: cover; }
.card-body { padding:16px; }
.card-body h3 { color:#02334e; margin: 0 0 8px; }
.card-body .meta { color:#666; font-size:.95rem; }
.marketing-empty { text-align:center; background:#f7fbff; border:2px dashed #0190ca; padding:40px; border-radius:16px; }
.gallery-wrap { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.gallery-heading { margin: 26px 0 12px; color:#02334e; }
.gallery-grid { display:grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap:10px; }
.gallery-item img { width:100%; height:auto; border-radius:10px; display:block; }

/* HERO */
.hero { position: relative; overflow: hidden; }
.hero-slide { 
  min-height: 78vh; 
  background-size: cover; 
  background-position: center; 
  display: none; 
}
.hero-slide:first-child { display: block; }

/* Center the overlay vertically */
.hero-overlay { 
  background: rgba(2,51,78,0.45); 
  color:#fff; 
  padding: 40px 24px; 
  border-radius: 20px; 
  max-width: 860px; 
  margin: auto;               /* <-- replaces margin-top */
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  text-align: center; 
}

.hero h1, .hero h2 { margin: 0 0 12px; }
.hero p { margin: 0 0 18px; font-size: 1.05rem; }
.hero-cta { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

.ghost-btn { 
  border:2px solid #fff; 
  background:transparent; 
  color:#fff; 
  padding:10px 22px; 
  border-radius:30px; 
  font-weight:600; 
  text-decoration:none; 
  display:inline-block; 
}
.ghost-btn:hover { background:#fff; color:#02334e; }

.hero-dots { 
  position:absolute; 
  bottom:18px; 
  left:0; 
  right:0; 
  display:flex; 
  justify-content:center; 
  gap:8px; 
}
.dot { width:10px; height:10px; border-radius:50%; background:#ffffff88; cursor:pointer; }
.dot.active { background:#fff; }


/* TRUST STRIP */
.trust-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; max-width:1100px; margin:-40px auto 30px; padding:0 20px; }
.trust-item { background:#fff; border-radius:16px; padding:16px; text-align:center; box-shadow:0 10px 18px rgba(0,0,0,0.07); }
.trust-item i { font-size:26px; color:#ff4fa2; margin-bottom:8px; }

/* TILES */
.visual-tiles { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; max-width:1200px; margin: 40px auto; padding: 0 20px; }
.tile { position:relative; min-height: 280px; background-size:cover; background-position:center; border-radius:18px; overflow:hidden; }
.tile-overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(2,51,78,0.1), rgba(2,51,78,0.55)); color:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; text-align:center; padding:20px; }

/* GALLERY STRIP */
.gallery-strip { background: linear-gradient(90deg,#0190ca,#ff4fa2); color:#fff; margin: 50px 0; }
.gallery-strip .strip { display:flex; gap:8px; overflow:auto; padding: 22px 12px; }
.gallery-strip img { border-radius:12px; height: 160px; object-fit:cover; }
.strip-cta { text-align:center; padding: 16px 20px 30px; }

/* SECTION HEAD */
.section-head { text-align:center; margin: 20px auto 10px; }
.section-head h2 { color:#02334e; margin:0 0 8px; }

/* CARDS */
.card-cta { display:flex; gap:12px; align-items:center; margin-top:10px; }
.text-link { color:#0190ca; text-decoration:none; font-weight:600; }
.text-link:hover { text-decoration:underline; }

/* CENTER CTA */
.center-cta { text-align:center; margin-top:14px; }

/* CTA BANNER */
.cta-banner { background: radial-gradient(circle at 30% 15%, #ff4fa2 0%, #ff4fa2 25%, #0190ca 90%); color:#fff; text-align:center; padding: 50px 20px; margin: 50px 0; }
.cta-banner h2 { margin:0 0 8px; }

/* RESPONSIVE */
@media (max-width: 960px){
  .visual-tiles { grid-template-columns:1fr; }
  .trust-strip { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 520px){
  .hero-overlay { margin-top: 14vh; }
  .trust-strip { grid-template-columns:1fr; }
}

/* Simple two-column layout */
.two-col { display:grid; grid-template-columns: 1.2fr 1fr; gap:28px; }
@media (max-width: 900px){ .two-col { grid-template-columns: 1fr; } }

.stack-cta { display:flex; gap:12px; flex-wrap:wrap; margin: 10px 0 20px; }

.inline-form-card, .visual-card, .contact-card, .benefits {
  background:#fff; border:1px solid #eee; border-radius:12px; padding:16px; 
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

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

.stack-form .submit-btn {
  background:#ff4fa2; color:#fff; border:none; border-radius:30px; padding:12px 22px; font-weight:700; cursor:pointer;
}
.stack-form .submit-btn:hover { background:#e0388f; }

.fineprint { font-size:.9rem; color:#666; margin-top:8px; }

.contact-cards { display:grid; grid-template-columns: repeat(2,1fr); gap:12px; margin-top:14px; }
.contact-card i { font-size:22px; color:#0190ca; margin-bottom:6px; display:block; }
.visual-card img { width:100%; height:auto; border-radius:10px; object-fit:cover; }

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 1.6rem;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 999;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* ===== Popup Form ===== */
.popup-form-container{
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.55);
  display: none; /* toggled by JS */
  align-items: center; justify-content: center;
  padding: 18px;
}

.popup-form-card{
  width: 100%; max-width: 720px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  overflow: hidden;
  border: 2px solid #f2f7ff;
}

.popup-close{
  position: absolute; right: 14px; top: 10px;
  background: transparent; border: none; font-size: 28px; line-height: 1;
  color: #02334e; cursor: pointer;
}

.popup-header{
  background: linear-gradient(90deg,#0190ca 0%, #ff4fa2 100%);
  color: #fff; padding: 22px 22px 18px;
}
.popup-header h2{ margin:0 0 6px; }
.popup-header p{ margin:0; opacity:.95; }

.popup-form-body{ padding: 18px; }

.form-grid{
  display: grid; gap: 14px;
  grid-template-columns: 1fr 1fr;
}
.form-span-2{ grid-column: span 2; }

.form-field label{
  display:block; font-weight:700; color:#02334e; margin-bottom:6px;
}
.form-field input,
.form-field select,
.form-field textarea{
  width: 100%; padding: 12px 12px;
  border: 1px solid #dde6f0; border-radius: 12px;
  font-size: 16px; outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  border-color: #0190ca;
  box-shadow: 0 0 0 3px rgba(79,170,255,.15);
}

.popup-actions{
  margin-top: 8px; display:flex; gap:12px; flex-wrap:wrap;
}
.submit-btn{
  background:#ff4fa2; color:#fff; border:none; border-radius:30px;
  padding: 12px 22px; font-weight:700; cursor:pointer;
  box-shadow: 0 8px 18px rgba(255,79,162,.28);
}
.submit-btn:hover{ background:#e0388f; }

.ghost-btn{
  border:2px solid #0190ca; color:#0190ca; background:transparent;
  border-radius:30px; padding:10px 18px; text-decoration:none; font-weight:700;
}
.ghost-btn:hover{ background:#0190ca; color:#fff; }

@media (max-width: 720px){
  .form-grid{ grid-template-columns: 1fr; }
  .form-span-2{ grid-column: span 1; }
}

.card-cta { display:flex; gap:12px; align-items:center; margin-top:10px; }
.ghost-btn {
  border:2px solid #0190ca; color:#0190ca; background:transparent;
  border-radius:30px; padding:10px 18px; text-decoration:none; font-weight:700;
}
.ghost-btn:hover { background:#0190ca; color:#fff; }

/* ===== Logo bigger on desktop ===== */
.logo img {
  height: 80px; /* default */
  width: auto;
}
@media (min-width: 1100px) {
  .logo img {
    height: 120px; /* double the original small desktop size */
  }
}

/* ===== Activities section layout only ===== */
.card-grid.five-up {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 340px)); /* 3 across desktop */
  justify-content: center; /* center grid so 2 bottom cards align nicely */
  gap: 24px;
}

@media (max-width: 1024px) {
  .card-grid.five-up {
    grid-template-columns: repeat(2, minmax(260px, 1fr)); /* 2 across tablet */
  }
}

@media (max-width: 600px) {
  .card-grid.five-up {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}
/* --- Gallery strip: center + responsive --- */
.gallery-strip { background: linear-gradient(90deg,#0190ca,#ff4fa2); color:#fff; }
.gallery-strip .strip{
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  align-items: center;
  justify-items: center; /* centers each image cell */
}
.gallery-strip .strip img{
  width: 100%;
  max-width: 260px;      /* keeps items neat when lots of columns */
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Keep the CTA centered */
.gallery-strip .strip-cta{
  text-align: center;
  padding: 18px 14px 28px;
}

/* --- Other activities card --- */
.side-cta .card + .card { margin-top: 14px; }

.other-acts{
  list-style: none;
  padding: 0;
  margin: 8px 0 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.other-acts li a{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #02334e;
  background: #fff;
  border: 1px solid #e6eef5;
  border-radius: 12px;
  padding: 8px 10px;
  transition: box-shadow .2s, border-color .2s, transform .05s;
}
.other-acts li a:hover{
  border-color: #0190ca;
  box-shadow: 0 6px 14px rgba(79,170,255,.15);
}
.other-acts img{
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e6eef5;
  flex: 0 0 56px;
}
.other-acts .title{
  font-weight: 700;
  line-height: 1.2;
}
.other-acts .meta{
  font-size: .9rem;
  color: #466274;
}

.book-now-btn {
  background-color: #0190ca !important;
  border: none;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s ease;
}

.book-now-btn:hover {
  background-color: #017ba9 !important; /* slightly darker on hover */
}

