:root {
  --primary: #2eb8b3;
  --primary-dark: #208b87;
  --text: #123b45;
  --muted: #58757a;
  --light-bg: #f3fcfb;
  --accent: #8fe0d4;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fcfffe;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-image:
    linear-gradient(90deg, rgba(3, 20, 24, 0.88) 0%, rgba(10, 70, 72, 0.7) 45%, rgba(40, 178, 168, 0.72) 100%),
    url('assets/navbar-img.png');
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.08) 100%);
  pointer-events: none;
}

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

.navbar.scrolled {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.navbar-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-top: 3px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding-top: 0.2rem;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 0.5rem 0.8rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #ffffff !important;
  opacity: 1;
}

.hero-section {
  padding-top: 7rem;
  background: linear-gradient(135deg, #f4fdfc 0%, #daf8f3 100%);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero-card {
  border-radius: 1.25rem;
  background: linear-gradient(145deg, #ffffff 0%, #e7f9f7 100%);
}

.hero-image-card {
  border-radius: 1.25rem;
  background: #ffffff;
  overflow: hidden;
}

.hero-image {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(46, 184, 179, 0.16);
  font-size: 1.25rem;
}

.section-image {
  height: 620px;
  width: 100%;
  object-fit: contain;
  object-position: center center;
  background: #f4fdfc;
}

.carousel-focus-image {
  object-fit: contain;
  object-position: center center;
  transform: none;
  filter: contrast(1.04) saturate(1.02);
}

.carousel {
  background: #fff;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  padding: 1.1rem;
}

.feature-pill {
  display: inline-block;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: var(--light-bg);
  color: var(--text);
  font-weight: 600;
  border: 1px solid rgba(46, 184, 179, 0.25);
}

.training-section {
  overflow: hidden;
}

.training-card {
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #eafcf9 100%);
  border: 1px solid rgba(46, 184, 179, 0.15);
}

.training-collage {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.collage-main,
.collage-side {
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 14px 32px rgba(18, 59, 69, 0.12);
}

.collage-main {
  min-height: 220px;
}

.collage-side {
  min-height: 180px;
}

.training-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.collage-large {
  height: 220px;
}

.collage-small {
  height: 180px;
}

.training-image:hover {
  transform: scale(1.04);
  filter: brightness(1.04);
}

.coverage-banner-card {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(18, 59, 69, 0.1);
  position: relative;
}

.coverage-banner-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, #0f4a4d 0%, #22b6ac 100%);
}

@media (max-width: 768px) {
  .coverage-banner-card {
    border-radius: 1rem;
  }

  .coverage-banner-image {
    min-height: 180px;
    max-height: none;
    height: auto;
    object-fit: contain;
  }
}

.contact-item {
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  background: var(--light-bg);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
}

.payment-float {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 1050;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 165, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-float::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 70px;
  right: 0;
  background: rgba(255, 165, 0, 0.95);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.payment-float::after {
  content: '';
  position: absolute;
  bottom: 65px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: rgba(255, 165, 0, 0.95);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.payment-float:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 165, 0, 0.4);
}

.payment-float:hover::before,
.payment-float:hover::after {
  opacity: 1;
}

.payment-float i {
  font-size: 1.55rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1050;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(18, 140, 126, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 70px;
  right: 0;
  background: rgba(18, 140, 126, 0.95);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  bottom: 65px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: rgba(18, 140, 126, 0.95);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(18, 140, 126, 0.4);
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  opacity: 1;
}

.whatsapp-float i {
  font-size: 1.55rem;
}
