:root {
  --ink: #0b1f3a;
  --teal: #0d6b6f;
  --charcoal: #1f2933;
  --sand: #f5f2ed;
  --gold: #c9a227;
  --mist: #edf2f6;
  --deep: #0b1b33;
  --sea: #0f7a83;
  --sun: #d9b35a;
  --white: #ffffff;
  --heading-font: "Sora", "Trebuchet MS", sans-serif;
  --body-font: "Source Sans 3", "Segoe UI", sans-serif;
  --shadow: 0 20px 60px rgba(11, 31, 58, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--charcoal);
  background: #f7f9fb;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(13, 107, 111, 0.06), transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(11, 31, 58, 0.05), transparent 45%);
  pointer-events: none;
  z-index: -1;
  animation: drift 20s ease-in-out infinite alternate;
}

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

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(237, 242, 246, 0.9));
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}

.ticker {
  background: #f7c948;
  color: #1a1a1a;
  overflow: hidden;
  font-weight: 600;
  border-bottom: 1px solid rgba(11, 31, 58, 0.12);
}

.ticker-track {
  display: flex;
  gap: 36px;
  padding: 10px 0;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}

.ticker-track span {
  padding-left: 36px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand h1,
.brand h2 {
  font-family: var(--heading-font);
  font-size: 20px;
  letter-spacing: 0.4px;
  color: var(--ink);
}

.brand span {
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(31, 41, 51, 0.7);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(13, 107, 111, 0.14);
  color: var(--teal);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 16px 35px rgba(11, 31, 58, 0.18);
  position: relative;
  overflow: hidden;
}

.cta-button.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(11, 31, 58, 0.2);
  box-shadow: none;
}

.cta-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(13, 107, 111, 0.35), transparent);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.cta-button:hover::after {
  transform: translateX(120%);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(11, 31, 58, 0.18);
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 107, 111, 0.1), transparent 60%);
  opacity: 0.7;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 65px rgba(6, 20, 42, 0.2);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(11, 31, 58, 0.6);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: var(--heading-font);
  color: var(--ink);
}

.hero h1 {
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.15;
}

.hero p {
  font-size: 18px;
  color: rgba(31, 41, 51, 0.8);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.16);
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 31, 58, 0.04), rgba(13, 107, 111, 0.04), transparent 70%);
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.section:nth-of-type(even)::before {
  opacity: 0.35;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section .section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.section h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.section p {
  color: rgba(31, 41, 51, 0.78);
}

.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.info-card {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(6, 20, 42, 0.18);
}

.info-card .cta-button {
  margin-top: auto;
  align-self: flex-start;
}

.info-card .meta {
  font-size: 14px;
  color: rgba(11, 31, 58, 0.72);
}

.info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(13, 107, 111, 0.08), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.info-card:hover::after {
  opacity: 1;
}

.media-block {
  border-radius: 14px;
  background: linear-gradient(130deg, rgba(13, 107, 111, 0.22), rgba(11, 31, 58, 0.18)),
    radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.3), transparent 55%);
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.card-image {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.hero-card .card-image {
  aspect-ratio: 16 / 9;
}

.icon-chip {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(13, 107, 111, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature-cards .info-card {
  min-height: 220px;
}

.course-list {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(13, 107, 111, 0.1);
  font-size: 14px;
}

.course-list span {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
}

.course-list ul {
  list-style: none;
  display: grid;
  gap: 6px;
}

.course-list li::before {
  content: "•";
  color: var(--teal);
  margin-right: 8px;
}

.info-card h3 {
  font-size: 18px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(13, 107, 111, 0.14);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--teal);
}

.highlight {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 107, 111, 0.25), transparent 70%);
  opacity: 0.6;
  animation: shimmer 6s ease-in-out infinite;
  pointer-events: none;
}

.highlight h2,
.highlight p {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.dual-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial {
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 55px rgba(6, 20, 42, 0.16);
}

.form-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
  color: rgba(31, 41, 51, 0.8);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 41, 51, 0.2);
  font-family: var(--body-font);
  font-size: 15px;
  background: rgba(255, 255, 255, 0.9);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(13, 107, 111, 0.12);
  color: var(--teal);
  font-weight: 600;
}

.footer {
  padding: 50px 0 30px;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

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

.footer h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.footer a {
  color: rgba(31, 41, 51, 0.8);
  font-size: 14px;
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #1b8f5a;
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 20px 40px rgba(27, 143, 90, 0.28);
  font-weight: 600;
  z-index: 20;
  animation: pulse 4s ease-in-out infinite;
}

.whatsapp-fab svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
}

.call-fab {
  position: fixed;
  right: 22px;
  bottom: 78px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #0b5bd3;
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 20px 40px rgba(11, 91, 211, 0.28);
  font-weight: 600;
  z-index: 20;
  animation: pulse 4s ease-in-out infinite;
}

.call-fab svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.call-fab:hover {
  transform: translateY(-2px);
}

.page-hero {
  padding: 70px 0 40px;
}

.page-hero .hero-card {
  padding: 40px;
}

.section-divider {
  height: 1px;
  background: rgba(11, 31, 58, 0.08);
  margin: 30px 0;
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-links {
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 0 40px;
  }

  .hero-card,
  .highlight,
  .form-card {
    padding: 24px;
  }
}

@keyframes fadeRise {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.journey {
  background: #ffffff;
}

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

.journey-step {
  position: relative;
  padding: 22px 18px;
  border-radius: 18px;
  border: 2px dashed rgba(13, 107, 111, 0.25);
  background: rgba(13, 107, 111, 0.04);
  text-align: center;
  font-weight: 600;
}

.journey-step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #0b5bd3;
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 16px;
}

@keyframes shimmer {
  0% {
    transform: translateX(-10%);
  }
  50% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-10%);
  }
}

@keyframes pulse {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes drift {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(12px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1.is-visible {
  transition-delay: 0.12s;
}

.reveal-delay-2.is-visible {
  transition-delay: 0.24s;
}

.reveal-delay-3.is-visible {
  transition-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .whatsapp-fab,
  .highlight::after {
    animation: none;
  }

  body::before {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
