:root {
  --bg: #081420;
  --bg-soft: #102235;
  --surface: rgba(10, 28, 44, 0.82);
  --surface-strong: #112c43;
  --primary: #12d6a0;
  --primary-dark: #0ca982;
  --secondary: #f7b733;
  --accent: #3ea8ff;
  --text: #f5fbff;
  --muted: #a9c1d8;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --transition: all 0.35s ease;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(18, 214, 160, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(62, 168, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #07111b 0%, #091b2a 38%, #0d2234 100%);
  overflow-x: hidden !important;
}

h1,
h2,
h3,
h4,
.brand-text {
  font-family: "Space Grotesk", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.section-padding {
  padding: 110px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
}

.section-tag::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary));
}

.section-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.section-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  backdrop-filter: blur(16px);
  background: rgba(4, 12, 20, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
  padding: 14px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(18, 214, 160, 0.22);
}

.brand-text {
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 700;
}

.brand-text span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-link {
  position: relative;
  color: rgba(245, 251, 255, 0.85);
  font-weight: 600;
  margin: 0 8px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-pill {
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-brand {
  background: linear-gradient(135deg, var(--primary), #1ee3b8);
  color: #072131;
  border: none;
  box-shadow: 0 16px 36px rgba(18, 214, 160, 0.24);
}

.btn-brand:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #22efc3, var(--primary));
  color: #04131d;
}

.btn-outline-brand {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline-brand:hover {
  border-color: rgba(18, 214, 160, 0.45);
  background: rgba(18, 214, 160, 0.12);
  color: var(--text);
  transform: translateY(-3px);
}

.hero-section {
  position: relative;
  padding: 100px 0 72px;
}

.hero-blur {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.34;
  pointer-events: none;
}

.hero-blur.left {
  top: -120px;
  left: -120px;
  background: rgba(18, 214, 160, 0.22);
}

.hero-blur.right {
  bottom: -80px;
  right: -100px;
  background: rgba(62, 168, 255, 0.2);
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.97;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--secondary);
}

.hero-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 620px;
}

.hero-card,
.glass-card {
  background: linear-gradient(180deg, rgba(18, 37, 56, 0.92), rgba(8, 24, 37, 0.86));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.stat-card {
  padding: 22px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 214, 160, 0.28);
}

.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  color: var(--text);
}

.stat-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-media {
  position: relative;
  padding: 26px;
  animation: floatY 5.5s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  right: -16px;
  top: 12%;
  max-width: 205px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(4, 16, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.25);
  animation: pulseGlow 3.8s ease-in-out infinite;
}

.hero-badge strong,
.mini-badge strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.hero-badge span,
.mini-badge span {
  color: var(--muted);
  font-size: 0.92rem;
}

.trusted-strip {
  padding-top: 28px;
}

.strip-card {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-weight: 700;
  color: rgba(245, 251, 255, 0.82);
  transition: var(--transition);
}

.strip-card:hover {
  transform: translateY(-6px);
  border-color: rgba(62, 168, 255, 0.24);
}

.feature-card,
.program-card,
.contact-card,
.value-card,
.timeline-card {
  height: 100%;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(16, 34, 53, 0.9), rgba(9, 24, 36, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover,
.program-card:hover,
.contact-card:hover,
.value-card:hover,
.timeline-card:hover {
  transform: translateY(-10px);
  border-color: rgba(18, 214, 160, 0.28);
}

.icon-chip {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 24px;
  font-size: 1.45rem;
  color: #071420;
  background: linear-gradient(135deg, var(--secondary), #ffd374);
  box-shadow: 0 18px 34px rgba(247, 183, 51, 0.16);
}

.feature-card p,
.program-card p,
.contact-card p,
.value-card p,
.timeline-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.about-split {
  position: relative;
}

.mini-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(3, 15, 24, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 240px;
  box-shadow: var(--shadow);
}

.program-card {
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 214, 160, 0.24), transparent 70%);
}

.program-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0 24px;
}

.meta-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.84rem;
}

.parallax-section {
  position: relative;
  background-image:
    linear-gradient(rgba(5, 17, 27, 0.68), rgba(5, 17, 27, 0.72)),
    url("../images/parallax-bg.svg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.parallax-panel {
  padding: 42px;
  border-radius: 32px;
  background: rgba(5, 17, 27, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
}

.check-list i {
  color: var(--primary);
  margin-top: 5px;
}

.page-hero {
  padding: 95px 0 70px;
  position: relative;
}

.page-hero .hero-copy {
  max-width: 760px;
}

.services-stack {
  display: grid;
  gap: 52px;
}

.service-zigzag {
  position: relative;
  padding: 26px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(14, 30, 46, 0.92), rgba(7, 20, 31, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-zigzag::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 214, 160, 0.2), transparent 70%);
  pointer-events: none;
}

.service-media {
  overflow: hidden;
}

.service-media img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 22px;
}

.service-copy {
  position: relative;
  z-index: 1;
}

.form-label {
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--text);
}

.form-control,
.form-select {
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.form-select {
  color-scheme: dark;
}

.form-select option {
  background: var(--bg-soft);
  color: var(--text);
}

.form-control:focus,
.form-select:focus {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(18, 214, 160, 0.38);
  box-shadow: 0 0 0 0.2rem rgba(18, 214, 160, 0.12);
}

.form-control::placeholder {
  color: rgba(169, 193, 216, 0.72);
}

textarea.form-control {
  min-height: 150px;
  resize: none;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-list li:last-child {
  border-bottom: 0;
}

.info-list i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(18, 214, 160, 0.16);
  color: var(--primary);
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 11, 18, 0.88);
}

.floating-contact {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-contact__link {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-contact__link:hover {
  transform: translateY(-4px) scale(1.03);
  color: #ffffff;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.32);
}

.floating-contact__link--phone {
  background: linear-gradient(135deg, #10d696, #06bf80);
}

.floating-contact__link--whatsapp {
  background: linear-gradient(135deg, #58eb71, #24c95c);
}

.footer-text {
  color: var(--muted);
  font-size: 0.94rem;
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-4px);
  background: rgba(18, 214, 160, 0.14);
  border-color: rgba(18, 214, 160, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.reveal-active {
  opacity: 1;
  transform: none;
}

.offcanvas.custom-offcanvas {
  background:
    radial-gradient(circle at top left, rgba(18, 214, 160, 0.18), transparent 40%),
    linear-gradient(180deg, #08131d 0%, #0b1f2f 100%);
  color: var(--text);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas.custom-offcanvas .nav-link {
  margin: 0;
  padding: 12px 0;
  font-size: 1.08rem;
}

.mouse-tilt {
  transform-style: preserve-3d;
}

.mouse-tilt-inner {
  transform: translateZ(26px);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
  }
  50% {
    box-shadow: 0 24px 50px rgba(18, 214, 160, 0.22);
  }
}

@media (max-width: 1199.98px) {
  .hero-badge {
    right: 0;
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 88px 0;
  }

  .hero-section {
    padding-top: 82px;
  }

  .hero-media {
    margin-top: 40px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .mini-badge {
    position: static;
    margin-top: 22px;
  }

  .social-links {
    justify-content: flex-start;
    margin-top: 16px;
  }
}

@media (max-width: 767.98px) {
  .btn-pill {
    width: 100%;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .hero-badge {
    position: static;
    margin-top: 18px;
    max-width: none;
  }

  .parallax-section {
    background-attachment: scroll;
  }

  .parallax-panel,
  .feature-card,
  .program-card,
  .service-zigzag,
  .contact-card,
  .value-card,
  .timeline-card {
    padding: 24px;
  }

  .service-media img {
    min-height: 240px;
  }

  .footer-text {
    margin-bottom: 12px;
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero-section,
  .page-hero {
    padding-top: 72px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-zigzag {
    padding: 18px;
    border-radius: 24px;
  }

  .service-media img {
    min-height: 200px;
    border-radius: 18px;
  }

  .floating-contact {
    right: 30px;
    bottom: 30px;
    gap: 10px;
  }

  .floating-contact__link {
    width: 54px;
    height: 54px;
    font-size: 1.35rem;
  }
}



header .topbar-main .topbar-main-right {
    text-align: right;
}

header .topbar-main {
    padding-top: 10px;
}

@media (max-width: 575px) {
    header .topbar-main .topbar-main-left, header .topbar-main .topbar-main-right {
    text-align: center;
}

header .topbar-main .row {
    gap: 5px;
}
}
