/* ============================================================
  ROOT & RESET
============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary palette – inspired by the CIBODAS MAJU BERSAMA logo */
  --cmb-dark: #002966; /* dark navy – footer, hero, text */
  --cmb-primary: #004aa4; /* medium blue – primary brand, buttons, icons */
  --cmb-cyan: #00d5ff; /* bright cyan – logo, highlights, accents */
  --cmb-green: #007d16; /* dark green – secondary elements */
  --cmb-green-light: #34c800; /* bright green – hover states, highlights */
  --cmb-gold: #8ee000; /* yellow-green – light accents, decorative */
  --cmb-cream: #f0f7f4; /* light blue-tinted background */
  --cmb-white: #ffffff;
  --cmb-text: #1a2c24;
  --cmb-text-light: #5a6f63;
  --cmb-text-muted: #94a3b8;
  --cmb-shadow: 0 12px 40px rgba(0, 74, 164, 0.15);
  --cmb-shadow-hover: 0 20px 56px rgba(0, 74, 164, 0.22);
  --cmb-radius: 16px;
  --cmb-radius-sm: 10px;
  --cmb-transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--cmb-cream);
  color: var(--cmb-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cmb-white);
}

::-webkit-scrollbar-thumb {
  background: var(--cmb-primary);
  border-radius: 3px;
}

/* ============================================================
  BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--cmb-transition);
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: var(--cmb-primary);
  color: var(--cmb-white);
  box-shadow: 0 4px 16px rgba(0, 74, 164, 0.35);
}
.btn-primary:hover {
  background: #003a82;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 74, 164, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--cmb-white);
  border: 2px solid var(--cmb-white);
}
.btn-secondary:hover {
  background: var(--cmb-white);
  color: var(--cmb-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.25);
}

.btn-white {
  background: var(--cmb-white);
  color: var(--cmb-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.btn-white:hover {
  background: var(--cmb-cream);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
/* ============================================================
  PROGRESS BAR
============================================================ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cmb-primary), var(--cmb-cyan));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}
/* ============================================================
  HEADER / NAV
============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(0, 41, 102, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--cmb-transition);
}

.header.scrolled {
  background: rgba(0, 41, 102, 0.96);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.18);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cmb-white);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

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

.nav__logo-img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  object-fit: contain;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.nav__logo-text {
  line-height: 1.3;
}

.nav__logo-name {
  display: block;
  color: var(--cmb-cyan);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.nav__logo-sub {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cmb-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--cmb-transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cmb-cyan);
  transition: var(--cmb-transition);
}
.nav-links a:hover {
  color: var(--cmb-white);
}
.nav-links a:hover::after {
  width: 100%;
}

/* "Daftar" CTA button inside nav – hidden on desktop, shown in mobile menu */
.nav-cta {
  display: none;
}

/* Hamburgers library handles the button styles */
.hamburger {
  display: none;
  padding: 0;
  flex-shrink: 0;
}

.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
  background-color: var(--cmb-white) !important;
}

/* ============================================================
  HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--cmb-dark);
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(0, 213, 255, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 74, 164, 0.2) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, var(--cmb-dark) 0%, #001a40 100%);
  z-index: 0;
}

/* decorative circles */
.hero .deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 213, 255, 0.05);
  pointer-events: none;
  z-index: 0;
}
.hero .deco-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
}
.hero .deco-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -60px;
  background: rgba(0, 213, 255, 0.04);
}
.hero .deco-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 8%;
  background: rgba(0, 213, 255, 0.03);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  color: var(--cmb-white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 213, 255, 0.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #66e0ff;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 213, 255, 0.12);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-content h1 .highlight {
  color: var(--cmb-cyan);
  position: relative;
}
.hero-content h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(0, 213, 255, 0.25);
  border-radius: 4px;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--cmb-radius);
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
  color: var(--cmb-white);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.hero-card .quote-icon {
  font-size: 2.4rem;
  color: var(--cmb-cyan);
  opacity: 0.5;
  margin-bottom: 12px;
}

.hero-card blockquote {
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.hero-card .attribution {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-card .attribution .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cmb-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--cmb-dark);
  font-size: 1.1rem;
}

.hero-card .attribution .name {
  font-weight: 600;
  color: var(--cmb-white);
}
.hero-card .attribution .role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
  HERO - Right Side Layered Cards
============================================================ */
.hero-visual {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Primary Image Card (upper-right) ---- */
.hero-card-primary {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 45%;
  scale: 1.25;
  border-radius: var(--cmb-radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

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

/* ============================================================
  HERO - Testimonial Card (Glassmorphism)
============================================================ */
.hero-card-testimonial {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  transform: translate(-50%, -50%);
  max-width: 320px;

  /* Glassmorphism core */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);

  border-radius: var(--cmb-radius);
  padding: 24px 28px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-card-testimonial:hover {
  transform: translate(-50%, -50%) translateY(-4px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Quote icon */
.hero-card-testimonial .quote-icon {
  font-size: 1.6rem;
  color: var(--cmb-cream);
  margin-bottom: 8px;
  line-height: 1;
}

/* Blockquote text - white with slight transparency for readability */
.hero-card-testimonial blockquote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--cmb-cream);
  font-weight: 500;
  margin-bottom: 12px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* Attribution */
.hero-card-testimonial .attribution {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-card-testimonial .attribution .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--cmb-text-light);
  font-size: 0.85rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-card-testimonial .attribution .name {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.hero-card-testimonial .attribution .role {
  font-size: 0.75rem;
  color: var(--cmb-cream);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* ---- Secondary Image Card (bottom-left, overlaps) ---- */
.hero-card-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 45%;
  border-radius: var(--cmb-radius-sm);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

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

/* ---- Decorative accent dot ---- */
.hero-canvas::after {
  content: "";
  position: absolute;
  bottom: 12%;
  right: 8%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cmb-cyan);
  opacity: 0.15;
  z-index: 0;
  filter: blur(20px);
}

/* ============================================================
  SECTION COMMON
============================================================ */
.section {
  padding: 80px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cmb-primary);
  margin-bottom: 12px;
}
.section-label i {
  font-size: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cmb-dark);
  margin-bottom: 16px;
}
.section-title .highlight {
  color: var(--cmb-cyan);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--cmb-text-light);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-header .section-subtitle {
  margin: 0 auto;
}

/* ============================================================
  ABOUT
============================================================ */
.about {
  background: var(--cmb-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.about-img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

.about-image .placeholder-icon {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.15);
}

.about-image .about-deco {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 213, 255, 0.08);
  bottom: -30px;
  right: -30px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cmb-text-light);
  margin-bottom: 24px;
}

.about-stats-mini {
  display: flex;
  gap: 40px;
  margin-top: 8px;
}
.about-stats-mini .stat-item .number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cmb-primary);
}
.about-stats-mini .stat-item .label {
  font-size: 0.9rem;
  color: var(--cmb-text-light);
}

/* ============================================================
  VISION & MISSION
============================================================ */
.vision-mission {
  background: var(--cmb-cream);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vm-card {
  background: var(--cmb-white);
  border-radius: var(--cmb-radius);
  padding: 40px 36px;
  box-shadow: var(--cmb-shadow);
  transition: var(--cmb-transition);
  border: 1px solid rgba(0, 41, 102, 0.04);
}
.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--cmb-shadow-hover);
}

.vm-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cmb-primary);
  color: var(--cmb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.vm-card .icon.cyan {
  background: var(--cmb-cyan);
  color: var(--cmb-dark);
}
.vm-card .icon.gold {
  background: var(--cmb-gold);
  color: var(--cmb-dark);
}

.vm-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cmb-dark);
  margin-bottom: 12px;
}
.vm-card p {
  color: var(--cmb-text-light);
  line-height: 1.7;
}

.vm-card ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vm-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--cmb-text-light);
  font-size: 0.98rem;
  line-height: 1.5;
}
.vm-card ul li i {
  color: var(--cmb-cyan);
  font-size: 0.85rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================================
  VALUES
============================================================ */
.values {
  background: var(--cmb-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.value-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--cmb-radius);
  background: var(--cmb-cream);
  transition: var(--cmb-transition);
  border: 1px solid transparent;
}
.value-item:hover {
  transform: translateY(-6px);
  border-color: var(--cmb-cyan);
  box-shadow: var(--cmb-shadow);
}

.value-item .emoji {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 16px;
}
.value-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cmb-dark);
  margin-bottom: 8px;
}
.value-item p {
  font-size: 0.92rem;
  color: var(--cmb-text-light);
  line-height: 1.6;
}

/* ============================================================
  WHY JOIN
============================================================ */
.why-join {
  background: var(--cmb-cream);
}

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

.why-card {
  background: var(--cmb-white);
  border-radius: var(--cmb-radius);
  padding: 32px 28px;
  box-shadow: var(--cmb-shadow);
  transition: var(--cmb-transition);
  border: 1px solid rgba(0, 41, 102, 0.04);
  text-align: center;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--cmb-shadow-hover);
}

.why-card .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 213, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
  color: var(--cmb-cyan);
}

.why-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cmb-dark);
  margin-bottom: 8px;
}
.why-card p {
  color: var(--cmb-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
  SERVICES
============================================================ */
.services {
  background: var(--cmb-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--cmb-cream);
  border-radius: var(--cmb-radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--cmb-transition);
  border: 1px solid transparent;
}
.service-card:hover {
  border-color: var(--cmb-cyan);
  transform: translateY(-6px);
  box-shadow: var(--cmb-shadow);
}

.service-card .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--cmb-primary);
  color: var(--cmb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cmb-dark);
  margin-bottom: 6px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--cmb-text-light);
  line-height: 1.6;
}

.service-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--cmb-text-light);
  font-style: italic;
}

/* ============================================================
  MEMBERSHIP BENEFITS
============================================================ */
.membership {
  background: var(--cmb-dark);
  color: var(--cmb-white);
}

.membership .section-title {
  color: var(--cmb-white);
}
.membership .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--cmb-radius-sm);
  padding: 18px 22px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--cmb-transition);
}
.benefit-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.benefit-item i {
  color: var(--cmb-cyan);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.benefit-item span {
  font-size: 0.98rem;
  font-weight: 500;
}

/* ============================================================
  ACTIVITIES
============================================================ */
.activities {
  background: var(--cmb-cream);
}

.activities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.activity-tag {
  flex: 0 0 calc(25% - 12px);
  max-width: calc(25% - 12px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--cmb-white);
  border-radius: var(--cmb-radius-sm);
  padding: 18px 20px;
  text-align: center;
  font-weight: 600;
  color: var(--cmb-text);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: var(--cmb-transition);
  border: 1px solid transparent;
  min-height: 100px;
}

.activity-tag:hover {
  border-color: var(--cmb-cyan);
  transform: translateY(-4px);
  box-shadow: var(--cmb-shadow);
}

.activity-tag i {
  display: block;
  font-size: 1.6rem;
  color: var(--cmb-cyan);
  margin-bottom: 8px;
}

.activity-tag p {
  margin: 0;
  font-size: 0.9rem;
}

/* ============================================================
  STATISTICS
============================================================ */
.statistics {
  background: var(--cmb-white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--cmb-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat-number .suffix {
  color: var(--cmb-cyan);
}
.stat-label {
  font-size: 0.95rem;
  color: var(--cmb-text-light);
  font-weight: 500;
  margin-top: 4px;
}

/* ============================================================
  TESTIMONIALS
============================================================ */
.testimonials {
  background: var(--cmb-white);
}

.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cmb-white);
  border-radius: var(--cmb-radius);
  padding: 44px 48px;
  box-shadow: var(--cmb-shadow);
  text-align: center;
  border: 1px solid rgba(0, 41, 102, 0.04);
}

.testimonial-card .quote-icon {
  font-size: 2.8rem;
  color: var(--cmb-cyan);
  opacity: 0.3;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--cmb-text);
  font-weight: 500;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--cmb-dark);
}
.testimonial-card .author-role {
  font-size: 0.85rem;
  color: var(--cmb-text-light);
}

/* ============================================================
  FAQ
============================================================ */
.faq {
  background: var(--cmb-cream);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--cmb-white);
  border-radius: var(--cmb-radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 41, 102, 0.05);
  transition: var(--cmb-transition);
}
.faq-item.active {
  border-color: var(--cmb-cyan);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cmb-dark);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  gap: 20px;
  transition: var(--cmb-transition);
}
.faq-question:hover {
  color: var(--cmb-primary);
}
.faq-question i {
  color: var(--cmb-cyan);
  font-size: 1rem;
  transition: var(--cmb-transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--cmb-text-light);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ============================================================
  CTA BANNER
============================================================ */
.cta-banner {
  background: var(--cmb-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(0, 213, 255, 0.08) 0%,
    transparent 60%
  );
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--cmb-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-banner .btn {
  font-size: 1.05rem;
  padding: 16px 44px;
}

/* ============================================================
  CONTACT (no form – single column, centered)
============================================================ */
.contact {
  background: var(--cmb-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.contact-info--centered {
  align-items: stretch;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--cmb-cream);
  border-radius: var(--cmb-radius-sm);
  transition: var(--cmb-transition);
}
.contact-item:hover {
  transform: translateX(4px);
  background: #e4f0eb;
}

.contact-item .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cmb-primary);
  color: var(--cmb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item .info .label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cmb-text-light);
}
.contact-item .info .value {
  font-weight: 500;
  color: var(--cmb-dark);
}

/* ============================================================
  BACK TO TOP BUTTON
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cmb-cyan);
  color: var(--cmb-dark);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 213, 255, 0.35);
  transition: var(--cmb-transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 213, 255, 0.5);
  background: #00c4e8;
}
.back-to-top:active {
  transform: scale(0.95);
}

/* ============================================================
  LEGAL LINKS SECTION
============================================================ */
.legal-links {
  background: var(--cmb-cream);
  padding: 40px 0;
}

.legal-links .container {
  text-align: center;
}

.legal-links__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cmb-dark);
  margin-bottom: 16px;
}

.legal-links__title i {
  color: var(--cmb-cyan);
  margin-right: 10px;
}

.legal-links__description {
  color: var(--cmb-text-light);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.legal-links__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.legal-links__btn {
  background: var(--cmb-dark);
  color: var(--cmb-white);
  box-shadow: none;
}

.legal-links__btn:hover {
  background: #003a7a;
  color: var(--cmb-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 41, 102, 0.35);
}

/* ============================================================
  FOOTER
============================================================ */
.footer {
  background: var(--cmb-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand .footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cmb-white);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.footer-brand .footer__logo-img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  object-fit: contain;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.footer-brand .footer__logo-text {
  line-height: 1.3;
}

.footer-brand .footer__logo-name {
  display: block;
  color: var(--cmb-cyan);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.footer-brand .footer__logo-sub {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cmb-text-muted);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-brand .tagline {
  font-weight: 600;
  color: #66e0ff;
  margin-top: 8px;
  font-style: italic;
}

/* Menu & Legal columns */
.footer-links h5 {
  color: var(--cmb-white);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links ul li a {
  font-size: 0.92rem;
  transition: var(--cmb-transition);
}

.footer-links ul li a:hover {
  color: var(--cmb-cyan);
}

/* Legal column - slightly muted heading */
.footer-legal h5 {
  color: var(--cmb-text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom strong {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
  RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-card {
    max-width: 100%;
  }
  .hero-visual {
    min-height: fit-content;
  }
  .hero-card-primary {
    width: 72%;
    height: 65%;
    position: relative;
    scale: 1;
  }
  .hero-card-testimonial {
    display: none;
  }
  .hero-card-secondary {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    padding: 20px 24px;
    background: rgba(0, 41, 102, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 var(--cmb-radius) var(--cmb-radius);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a::after {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero {
    padding: 100px 0 60px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 56px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .contact-item {
    padding: 12px 16px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .activities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .activity-tag {
    max-width: 100%;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-card {
    padding: 28px 20px;
  }
  .hero-card-primary {
    width: 100%;
    height: 100%;
    position: relative;
    scale: 1;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .activity-tag {
    padding: 14px 12px;
    min-height: 80px;
  }
  .activity-tag i {
    font-size: 1.3rem;
  }
  .activity-tag p {
    font-size: 0.8rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .about-stats-mini {
    gap: 12px;
  }
  .vm-card {
    padding: 28px 20px;
  }
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}
