@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --brand: #00bfff;
  --dark: #0b2239;
  --light: #ffffff;
  --muted: #6b7b8c;
  --bg: #f7fbff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --accent: #e2357a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow { max-width: 960px; }
.prose { max-width: 760px; }
.prose p { margin: 0 0 14px; }
.section-lg { padding: 90px 0; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 1000;
  background: #ffffff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  color: var(--dark);
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 10px;
  transition: 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(0, 0, 0, 0.06);
}
.nav-cta {
  color: var(--dark);
  background: var(--brand);
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--dark);
}

/* Mobile nav dropdown */
.nav-links.open {
  display: flex !important;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 6px;
  background: #ffffff;
  padding: 14px 16px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 999;
}
.nav-links.open a {
  padding: 12px;
  border-radius: 10px;
}
.no-scroll {
  overflow: hidden;
}

/* Hero */
.hero {
  margin-top: 72px;
  position: relative;
  height: 75vh;
  min-height: 420px;
  max-height: 900px;
  overflow: hidden;
}
#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.35));
  z-index: -1;
}
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light);
  padding: 0 20px;
}
.hero-logo {
  width: 110px;
  margin-bottom: 14px;
}
.hero h1 {
  margin: 0 0 8px;
  font-size: 40px;
  letter-spacing: 1px;
}
.hero p {
  margin: 0 0 22px;
  color: #e6f7ff;
}

.btn {
  display: inline-block;
  background: var(--brand);
  color: var(--dark);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn.outline {
  background: transparent;
  color: var(--light);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn.small {
  padding: 8px 12px;
  border-radius: 10px;
}

/* Sections */
section {
  padding: 70px 0;
}
section h2 {
  font-size: 28px;
  margin: 0 0 8px;
}
section p.section-subtitle {
  color: var(--muted);
  margin: 0 0 28px;
}

/* Generic section structure */
.section {
  padding: 70px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 24px;
}
.section-header h2 {
  margin: 0 0 8px;
  font-size: 32px;
}
.section-header p { margin: 0; color: var(--muted); }

/* Services */
.services .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.card img.thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}
.section-cta {
  margin-top: 18px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  text-align: center;
}
.stat h3 { margin: 0 0 6px; }
.stat p { margin: 0; color: var(--muted); }

/* Experience split */
.experience-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}
.experience-split .title { color: var(--accent); font-size: 32px; margin: 0 0 10px; }
.kpi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.kpi { background: var(--light); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; text-align: center; }
.kpi h3 { margin: 0 0 6px; }
.kpi p { margin: 0; color: var(--muted); }
.experience-image { width: 100%; border-radius: var(--radius); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }

/* About page */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.person, .why {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.avatar {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}
.why-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Feature list with icons */
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 12px;
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef6ff;
  color: var(--brand);
}
.icon-circle svg { width: 26px; height: 26px; }
.tint-green { background:#e8fff3; color:#22c55e; }
.tint-pink { background:#fff0f4; color:#e2357a; }
.tint-gold { background:#fff8e1; color:#d97706; }
.tint-blue { background:#eef6ff; color:#1e66f5; }

@media (max-width: 1024px) {
  .feature-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .feature-list { grid-template-columns: 1fr; }
}

/* Plans */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.plan-card {
  border-radius: 18px;
  color: #fff;
  padding: 18px 18px 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  text-align: center;
}
.plan-card .icon-ring { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,0.18); display:grid; place-items:center; margin: 0 auto 10px; }
.plan-card .icon-ring svg { width: 26px; height: 26px; fill: #fff; }
.plan-card h4 { margin: 6px 0 2px; font-weight: 600; }
.plan-card .duration { opacity: 0.9; font-size: 14px; }
.plan-card .amount { font-size: 24px; font-weight: 800; margin: 10px 0 8px; }
.plan-card .pill { background: rgba(255,255,255,0.92); color: #0b2239; padding: 8px 12px; border-radius: 999px; display: inline-block; font-weight: 600; }
.plan-card a.pill { color: #0b2239; }
.plan-blue { background: #0f6c8d; }
.plan-teal { background: #11a3a3; }
.plan-coral { background: #e05a43; }
.plan-gold { background: #e8a225; }

/* Explore lists */
.info-panels { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; }
.panel { background:#fff; border-radius: 18px; box-shadow: var(--shadow); padding: 18px; }
.panel h3 { margin: 0 0 12px; letter-spacing: .5px; }
.panel h3 span { display:inline-block; border-bottom: 3px solid var(--accent); padding-bottom: 4px; }
.panel ul { margin: 0; padding-left: 18px; display: grid; gap: 8px; }

/* Gallery */
/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Video Section */
.video-section {
  margin-top: 40px;
}

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

.video-item {
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
}

.video-item iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 8px;
  }

  .gallery-item {
    border-radius: 4px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 8px;
  }

  .video-item {
    border-radius: 4px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Book form */
.form {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  max-width: 760px;
  margin: 0 auto;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
label { font-weight: 600; }
input, select, textarea {
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid #d8e6f2;
  background: #fbfeff;
  font-family: inherit;
}
textarea { min-height: 120px; }
.error { color: #d64545; font-size: 13px; }

/* Contact layout (Book page) */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.info-card {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.info-card h3 { margin: 0 0 10px; }
.info-row { display: grid; grid-template-columns: 44px 1fr; gap: 10px; align-items: start; margin-bottom: 12px; }
.icon-circle.sm { width: 44px; height: 44px; }
.hours { margin-top: 12px; }
.hours .row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed #e6eef5; font-size: 14px; }
.hours .row:last-child { border-bottom: 0; }
.map-wrap { margin-top: 20px; background: var(--light); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; max-width: 100%; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 230px;
}
.card-link { display: block; color: inherit; text-decoration: none; cursor: pointer; }
.card-link:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.12); transform: translateY(-2px); transition: 0.25s ease; }
.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e6f7ff;
  color: var(--brand);
}
.contact-icon svg { width: 28px; height: 28px; }
.contact-card .btn { display: none; }
.card-cta { margin-top: auto; color: var(--accent); font-weight: 600; }
.wa .contact-icon { background: #e8fff3; color: #25d366; }
.mail .contact-icon { background: #fff0f4; color: #e2357a; }
.call .contact-icon { background: #eef6ff; color: #1e66f5; }
.follow-card { text-align: center; margin-top: 20px; }
.social-icons { display: flex; gap: 12px; justify-content: center; margin-top: 8px; }
.social-icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; }
.social-icon svg { width: 22px; height: 22px; fill: #fff; }
.social-icon.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-icon.yt { background: #ff0000; }

/* Monochrome social icons */
.social-icon.mono { background: #ffffff; border: 1px solid #e6e6e6; }
.social-icon.mono svg { fill: #111111; }
.social-icon.fb { background: #ffffff; }

/* Testimonials embed image */
.testimonials-embed { margin-top: 20px; }
.testimonials-embed h2 { margin: 0 0 10px; text-align: center; }
.testimonials-embed img { width: 100%; height: auto; border-radius: 12px; box-shadow: var(--shadow); display: block; }
.testimonials-embed .reviews-link { display: block; }
.testimonials-embed .reviews-fallback { display: none; background: #f3f8fd; border-radius: 12px; box-shadow: var(--shadow); padding: 16px; text-align: center; }
.testimonials-embed.img-error .reviews-fallback { display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Footer */
footer {
  background: #0a1a2b;
  color: #d8e6f2;
  padding: 50px 0 20px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
}
.footer-grid h4 { margin: 0 0 10px; color: var(--light); }
.footer a { color: #cdefff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 24px;
  padding-top: 14px;
  text-align: center;
  color: #bcd6e6;
}
/* Designer credit styling */
.footer-bottom a.designer-credit { color: var(--accent); font-weight: 700; }
.footer-bottom a.designer-credit:hover { text-decoration: underline; }

/* Utility */
.hidden { display: none !important; }

/* Responsive */
@media (max-width: 1024px) {
  .services .cards { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .why-list { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; }
  .experience-split { grid-template-columns: 1fr; }
  .kpi-cards { grid-template-columns: repeat(3, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .plan-cards { grid-template-columns: repeat(2, 1fr); }
  .info-panels { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hamburger { display: inline-flex; }
  .services .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .field-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; line-height: 1.2; }
  .hero p { font-size: 14px; }
  .hero-logo { width: 90px; margin-bottom: 10px; }
  .kpi-cards { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .plan-cards { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 12px; }
  /* Hide Quick Links column on mobile */
  .footer-grid > :nth-child(2),
  .footer-quick-links { display: none; }
  footer { text-align: center; padding: 40px 0 16px; }
  .footer-bottom { padding-top: 10px; }
  .follow-card .card { margin: 0 10px; }
  .container { padding: 0 16px; }
  /* Tighter card thumbnails on small screens */
  .card img.thumb { height: 160px; }
  /* Make grouped buttons easier to tap */
  .hero .btn { padding: 12px 16px; }
  .hero .btn + .btn { margin-left: 0; }
}

@media (max-width: 460px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 22px; }
  .hero p { font-size: 13px; }
  .hero-logo { width: 78px; }
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Hero Section */
.hero {
  position: relative;
  height: 75vh; /* 3/4th screen height */
  width: 100%;
  overflow: hidden;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Remove duplicate overlay block that caused stacking/layout inconsistencies on mobile */

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.hero-logo {
  width: 120px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
}

.hero p {
  margin-top: 10px;
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: #00bfff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #008ccc;
}

/* Services Section */
.services {
  padding: 60px 20px;
  text-align: center;
  background: #f5f9ff;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.services p {
  color: #444;
  margin-bottom: 40px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.view-all {
  margin-top: 30px;
}

/* Experience Section */
.experience {
  padding: 70px 20px;
  text-align: center;
  background: #002f4b;
  color: white;
}

.experience p {
  max-width: 800px;
  margin: 10px auto 40px;
}

.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-box h3 {
  font-size: 2rem;
  color: #00bfff;
}

.stat-box p {
  margin-top: 5px;
}

/* Purged legacy footer/styles to avoid conflicts on mobile */

/* Hero overrides to ensure proper layout on mobile and avoid clipping */
.hero {
  margin-top: 72px; /* keep content below fixed navbar */
}
.hero-content {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
}

@media (max-width: 720px) {
  .hero { height: 70vh; min-height: 440px; }
  .hero-logo { width: 90px; }
  .hero-content { padding-top: 8px; padding-bottom: 16px; }
}
@media (max-width: 460px) {
  .hero-logo { width: 80px; }
}