:root {
  --primary: #0077b6;
  --primary-dark: #03045e;
  --primary-light: #00b4d8;
  --secondary: #90e0ef;
  --cyan-glow: #00f2fe;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --emerald: #10b981;
  --dark: #03045e;
  --dark-surface: #0f172a;
  --light-bg: #f0f9ff;
  --light-card: #ffffff;
  --text-main: #03045e;
  --text-muted: #475569;
  --text-white: #ffffff;
  --radius-lg: 1.75rem;
  --radius-md: 1.15rem;
  --radius-sm: 0.75rem;
  --shadow-sm: 0 4px 14px -2px rgba(0, 119, 182, 0.08);
  --shadow-md: 0 14px 35px -5px rgba(0, 119, 182, 0.15);
  --shadow-lg: 0 25px 60px -10px rgba(0, 119, 182, 0.22);
  --shadow-glow: 0 0 35px rgba(0, 180, 216, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.94);
  --glass-border: rgba(255, 255, 255, 0.8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

body {
  background-color: var(--light-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Vibrant Gradients & Text Glow */
.text-gradient {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gold {
  color: var(--accent);
}

/* Floating Bubbles Water Animation */
.bubbles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  bottom: -40px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(0, 180, 216, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: floatUp 8s infinite ease-in;
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.3);
}

.bubble:nth-child(1) { left: 10%; width: 30px; height: 30px; animation-duration: 7s; animation-delay: 0s; }
.bubble:nth-child(2) { left: 25%; width: 18px; height: 18px; animation-duration: 9s; animation-delay: 1.5s; }
.bubble:nth-child(3) { left: 45%; width: 42px; height: 42px; animation-duration: 11s; animation-delay: 0.5s; }
.bubble:nth-child(4) { left: 65%; width: 24px; height: 24px; animation-duration: 8s; animation-delay: 2s; }
.bubble:nth-child(5) { left: 85%; width: 36px; height: 36px; animation-duration: 10s; animation-delay: 1s; }

@keyframes floatUp {
  0% { transform: translateY(0) scale(0.8); opacity: 0.6; }
  50% { transform: translateY(-400px) scale(1.1); opacity: 0.9; }
  100% { transform: translateY(-850px) scale(1.3); opacity: 0; }
}

/* Image Fluid */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Buttons with Glow & Ripple Effects */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.95rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.65s ease;
}

.btn:hover::after {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  color: var(--text-white);
  box-shadow: 0 10px 25px rgba(0, 119, 182, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 18px 36px rgba(0, 119, 182, 0.42);
  background: linear-gradient(135deg, #03045e 0%, #0077b6 100%);
}

.btn-accent {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #0b132b;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.38);
}

.btn-accent:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 18px 36px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

.btn-whatsapp {
  position: relative;
  z-index: 20;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--text-white);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.38);
}

.btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.5);
}

.btn-outline {
  background: #ffffff;
  color: var(--primary);
  border: 2px solid var(--primary-light);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-sm { padding: 0.65rem 1.35rem; font-size: 0.875rem; }
.btn-lg { padding: 1.2rem 2.5rem; font-size: 1.15rem; }

body {
  padding-top: 84px;
}

@media (max-width: 640px) {
  body {
    padding-top: 72px;
  }
}

/* Navbar Styling */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 20px rgba(0, 119, 182, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 44px;
  max-height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 4px 10px rgba(2, 132, 199, 0.15));
  transition: all 0.3s ease;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--dark);
  line-height: 1.15;
}

.brand-subtitle {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  border-radius: 99px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--dark);
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: background 0.2s ease;
}

.mobile-toggle:hover {
  background: rgba(0, 119, 182, 0.08);
}

@media (max-width: 1024px) {
  .hidden-mobile { display: none !important; }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid var(--primary);
    gap: 1.15rem;
    z-index: 9999;
  }
  .mobile-toggle { display: inline-flex; }
}

/* Stats Banner - Dynamic Theme Adaptive */
.stats-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 3.5rem 0;
  color: white;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}
.stats-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}
.stats-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Hero Section Full Bleed (Top, Bottom & Right Edge) */
.hero-section {
  position: relative;
  padding: 0;
  background: linear-gradient(180deg, #bae6fd 0%, #e0f2fe 60%, #ffffff 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: stretch;
  position: relative;
  z-index: 2;
  min-height: 580px;
}

.hero-text-col {
  position: relative;
  z-index: 10;
  padding: 4.5rem 0;
}

/* Base Hero Section Typography & Elements */
.hero-title {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 1.35rem;
  letter-spacing: -0.8px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.25rem;
  background: rgba(0, 119, 182, 0.12);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: clamp(0.7rem, 2.5vw, 0.875rem);
  white-space: nowrap;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 119, 182, 0.25);
  box-shadow: 0 4px 15px rgba(0, 119, 182, 0.1);
  max-width: 100%;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 15;
}

.hero-cta-group .btn {
  white-space: nowrap;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  padding-top: 1.85rem;
  border-top: 1px solid rgba(203, 213, 225, 0.8);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--dark-surface);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 119, 182, 0.22);
  border: 4px solid #ffffff;
}

.hero-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.floating-trust-card {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  padding: 1.15rem 1.45rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 15;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  animation: floatBadge 3.5s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Sections */
.section { padding: 5.5rem 0; }
.section-bg-alt { background-color: #ffffff; }

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.75rem;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title { font-size: 2.6rem; margin-bottom: 1.15rem; }
.section-description { color: var(--text-muted); font-size: 1.1rem; }

/* Filter Tabs Component */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.65rem 1.35rem;
  border-radius: 99px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--text-main);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tab-btn:hover, .tab-btn.active {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 119, 182, 0.3);
}

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }

/* Responsive Media Queries (Cascading Correctly) */
@media (max-width: 992px) {
  .hero-section { padding: 3rem 0; }
  .hero-grid { 
    grid-template-columns: 1fr; 
    text-align: center; 
    min-height: auto;
  }
  .hero-text-col { padding: 1rem 0; }
  .hero-cta-group { justify-content: center; }
  .trust-badges { justify-content: center; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-banner .grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.3rem; }
  .section-title { font-size: 2rem; }
  .filter-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: 2rem;
    scrollbar-width: none;
  }
  .filter-tabs::-webkit-scrollbar {
    display: none;
  }
  .filter-tabs .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.85rem;
    padding: 0.55rem 1.15rem;
  }
}

@media (max-width: 640px) {
  html, body {
    overflow-x: clip !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .container {
    padding: 0 1rem;
  }

  .navbar-inner {
    height: 72px;
    padding: 0;
  }

  .brand-logo {
    gap: 0.6rem;
  }

  .brand-logo-img {
    height: 36px;
    max-height: 36px;
  }

  .brand-title {
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    font-weight: 900;
    line-height: 1.15;
  }

  .brand-subtitle {
    display: block !important;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--primary);
    margin-top: 1px;
  }

  .hero-section {
    padding: 2rem 0 3rem;
  }

  .hero-title {
    font-size: 2.05rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.975rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
  }

  .hero-badge {
    white-space: normal;
    font-size: 0.76rem;
    padding: 0.5rem 0.85rem;
    line-height: 1.35;
    text-align: center;
    max-width: 100%;
    margin-bottom: 1.25rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    width: 100%;
    margin-bottom: 2rem;
  }

  .hero-cta-group .btn {
    width: 100% !important;
    padding: 0.95rem 1.25rem !important;
    font-size: 0.95rem !important;
    white-space: normal !important;
    justify-content: center;
    box-sizing: border-box;
    min-height: 48px;
  }

  .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 1.35rem !important;
  }

  .stats-banner .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.75rem 1rem !important;
  }

  .glass-card .grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
  }

  .program-body {
    padding: 1.25rem;
  }

  .program-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    text-align: center;
  }

  .program-footer .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .price-tag {
    text-align: center;
  }

  .floating-trust-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 1.25rem;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    padding: 1rem 1.15rem;
  }
}

/* Glass Card */
.glass-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 119, 182, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 119, 182, 0.18);
}

/* Program Card */
.program-card {
  background: #ffffff;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(2, 132, 199, 0.15);
  border-color: var(--primary-light);
}

.program-thumb {
  position: relative;
  height: 235px;
  overflow: hidden;
  background: #e0f2fe;
}

.program-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.program-card:hover .program-thumb img {
  transform: scale(1.09);
}

.program-badge {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  background: linear-gradient(135deg, var(--accent) 0%, #fbbf24 100%);
  color: #0b132b;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.4rem 0.95rem;
  border-radius: 99px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.program-body {
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-title { font-size: 1.4rem; margin-bottom: 0.5rem; }
.program-audience { font-size: 0.875rem; color: var(--primary); font-weight: 800; margin-bottom: 1rem; }
.program-desc { color: var(--text-muted); font-size: 0.975rem; margin-bottom: 1.5rem; flex: 1; line-height: 1.6; }

.program-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.35rem;
  border-top: 1px solid #f1f5f9;
}

.price-tag { font-size: 0.8rem; color: var(--text-muted); }
.price-tag span { font-size: 1.35rem; font-weight: 900; color: var(--primary-dark); }

/* Step Card */
.step-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  color: white;
  font-weight: 900;
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.35rem;
  box-shadow: 0 10px 25px rgba(0, 119, 182, 0.35);
}

/* Testimonial Card */
.testimonial-card {
  background: #ffffff;
  padding: 2.25rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.rating-stars { color: #f59e0b; font-size: 1.15rem; margin-bottom: 1.15rem; }

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-top: 1.6rem;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  background: #e2e8f0;
  border: 2px solid var(--primary-light);
  flex-shrink: 0;
}

.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* FAQ Accordion */
.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.15rem;
  margin-bottom: 1.15rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.12);
}

.faq-header {
  padding: 1.35rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
}

.faq-icon {
  font-size: 1.3rem;
  transition: transform 0.35s ease;
  color: var(--primary);
}

.faq-item.active .faq-icon { transform: rotate(180deg); }

.faq-body {
  padding: 0 1.6rem 1.35rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  display: none;
}

.faq-item.active .faq-body { display: block; }

/* Search Box */
.search-box {
  display: flex;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.6rem;
  border-radius: 99px;
  border: 2px solid #cbd5e1;
  max-width: 580px;
  margin: 0 auto 2.25rem;
  box-shadow: var(--shadow-sm);
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.5rem 1.35rem;
  font-size: 1.05rem;
  background: transparent;
}

/* Floating WhatsApp & Live Notification Toast */
.wa-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
}

@media (max-width: 640px) {
  .wa-float-btn {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 1.85rem;
  }
}

.wa-float-btn:hover { transform: scale(1.12); }

.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  animation: pulse-wave 2s infinite;
  z-index: -1;
}

@keyframes pulse-wave {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* Live Toast Notification Social Proof */
.live-toast {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 997;
  background: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: 1.15rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid #e2e8f0;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.live-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Sticky Mobile CTA Bar */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0.6rem 1.15rem;
  z-index: 998;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .sticky-mobile-bar { display: none; }
}

/* Video Lightbox Modal */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 19, 43, 0.88);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-container {
  width: 100%;
  max-width: 800px;
  background: #000;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  aspect-ratio: 16/9;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 19, 43, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  padding: env(safe-area-inset-top, 1rem) env(safe-area-inset-right, 1rem) env(safe-area-inset-bottom, 1rem) env(safe-area-inset-left, 1rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
  position: relative;
  max-height: calc(100dvh - 2.5rem);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(25px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f1f5f9;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: all 0.2s ease;
  z-index: 20;
}

.modal-close:hover {
  background: #e2e8f0;
  color: #ef4444;
}

@media (max-width: 640px) {
  .modal-overlay {
    padding: 0.75rem;
  }
  .modal-card {
    padding: 1.5rem 1.15rem !important;
    border-radius: 1.35rem !important;
    max-height: calc(100dvh - 1.5rem) !important;
  }
  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }
}

/* Form Controls */
.form-group { margin-bottom: 1.35rem; }
.form-label { display: block; font-weight: 800; font-size: 0.925rem; margin-bottom: 0.45rem; color: var(--dark); }

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.18);
}

/* Footer */
.footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 5.5rem 0 2.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

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

.footer-title { color: #ffffff; font-size: 1.2rem; margin-bottom: 1.35rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.85rem; }
.footer-links a { color: #94a3b8; text-decoration: none; transition: color 0.25s ease; }
.footer-links a:hover { color: #ffffff; }

.footer-bottom {
  border-top: 1px solid #1c2541;
  padding-top: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; gap: 1.25rem; text-align: center; }
}

/* Premium Glassmorphism & Hover Card Upgrades */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 35px -5px rgba(0, 119, 182, 0.12);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -10px rgba(0, 119, 182, 0.22);
}

.program-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -10px rgba(0, 119, 182, 0.22);
  border-color: var(--primary-light);
}

.program-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.program-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card:hover .program-thumb img {
  transform: scale(1.08);
}

/* ==========================================================================
   Hero Swimmer Image Full Right Body & Garis Wave Design System
   ========================================================================== */

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto;
  align-self: stretch;
}

@media (min-width: 993px) {
  .hero-image-wrapper {
    margin-right: calc(-1 * ((100vw - 100%) / 2));
    margin-left: -8rem;
    width: calc(100% + ((100vw - 100%) / 2) + 8rem);
  }
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-wave-border-svg {
  position: absolute;
  top: -14px;
  left: -14px;
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}

.hero-swimmer-card-full {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 540px;
  overflow: hidden;
  clip-path: url(#heroBothWavesClip);
  -webkit-clip-path: url(#heroBothWavesClip);
  filter: drop-shadow(0 25px 50px rgba(0, 119, 182, 0.35));
  transform-origin: center center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-swimmer-card-full:hover {
  transform: translateY(-8px) scale(1.04);
  filter: drop-shadow(0 35px 75px rgba(0, 180, 216, 0.55)) !important;
}

.hero-swimmer-card-full img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
  transform: scale(1.04);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-swimmer-card-full:hover img {
  transform: scale(1.11);
}

@media (max-width: 992px) {
  .hero-image-wrapper {
    min-height: 440px;
    margin: 1.5rem auto 0;
    width: 100%;
  }

  .hero-swimmer-card-full {
    min-height: 440px;
  }

  .hero-swimmer-card-full img {
    min-height: 440px;
    transform: scale(1.06);
  }

  .hero-swimmer-card-full:hover,
  .hero-swimmer-card-full:active {
    transform: scale(1.06) translateY(-4px);
    filter: drop-shadow(0 30px 60px rgba(0, 180, 216, 0.6)) !important;
  }

  .hero-swimmer-card-full:hover img,
  .hero-swimmer-card-full:active img {
    transform: scale(1.16);
  }
}

.hero-img-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 4, 94, 0.65) 0%, rgba(3, 4, 94, 0.1) 50%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.hero-img-bottom-wave-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55px;
  pointer-events: none;
  z-index: 3;
}

.hero-floating-privat-badge {
  position: absolute;
  bottom: 25px;
  left: 35px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 0.75rem 1.35rem;
  border-radius: 99px;
  color: white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.hero-floating-privat-badge:hover {
  transform: translateY(-3px);
  background: rgba(15, 23, 42, 0.92);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-floating-prsi-badge {
  position: absolute;
  top: -12px;
  right: 15px;
  z-index: 5;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  padding: 0.75rem 1.35rem;
  border-radius: 1.25rem;
  font-weight: 900;
  font-size: 0.875rem;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.45);
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: floatBadge 4s ease-in-out infinite;
}

.hero-wave-lines-bg {
  animation: waveFloat 8s ease-in-out infinite alternate;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes waveFloat {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(1.5deg) scale(1.02);
  }
  100% {
    transform: rotate(-1deg) scale(0.99);
  }
}

@media (max-width: 992px) {
  .hero-image-wrapper {
    min-height: 380px;
    margin-top: 2rem;
  }
  .hero-swimmer-card-full, .hero-swimmer-card-full img {
    min-height: 380px;
  }
  .hero-floating-privat-badge {
    bottom: 18px;
    left: 20px;
    padding: 0.55rem 1rem;
  }
}


