*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #f9fafb 45%, #eff6ff);
  color: #0f172a;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  position: relative;
  z-index: 2;
}

/* NAVBAR */
.uhc-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.88),
    rgba(255, 255, 255, 0.7)
  );
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background-size: 200% 200%;
  animation: headerGradient 14s ease infinite;
}

/* TOP BANNER */
.top-banner {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
  min-height: 500px;
  object-fit: cover;
}

.uhc-nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: inline-block;
}

.logo-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
  background: conic-gradient(
    from 160deg,
    #0ea5e9,
    #22c55e,
    #f59e0b,
    #0ea5e9
  );
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.55);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-weight: 600;
  font-size: 1.1rem;
}

.logo-sub {
  font-size: 0.75rem;
  color: #9ca3af;
}

.nav-slogan-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  color: #4b5563;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  animation: sloganPulse 4s ease-in-out infinite;
}

.nav-slogan-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle, #0ea5e9, #22c55e);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.7);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.9rem;
  color: #0f172a;
  opacity: 0.75;
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #0ea5e9, #22c55e);
  transition: width 0.2s ease-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  opacity: 1;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -6px;
}

.nav-toggle-label span::after {
  top: 6px;
}

.nav-toggle:checked + .nav-toggle-label span {
  transform: rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span::before {
  top: 0;
}

.nav-toggle:checked + .nav-toggle-label span::after {
  top: 0;
  transform: rotate(-90deg);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.2rem 1.5rem 3rem;
  will-change: transform;
}

.hero-bg-gradient {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.25), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(59, 130, 246, 0.22), transparent 55%),
    radial-gradient(circle at 70% 100%, rgba(45, 212, 191, 0.2), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
  transition: transform 0.25s ease-out;
}

.hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.85);
  color: #0284c7;
  border: 1px solid rgba(125, 211, 252, 0.9);
  backdrop-filter: blur(16px);
}

.hero-title {
  margin: 1.1rem 0 0.8rem;
  font-size: clamp(2.1rem, 3.1vw + 1.2rem, 3rem);
  line-height: 1.05;
}

.hero-title span {
  display: block;
  background: linear-gradient(to right, #0f172a, #0ea5e9, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  margin: 0.5rem 0 1.5rem;
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--bx, 50%) var(--by, 50%), rgba(255, 255, 255, 0.3), transparent 55%);
  opacity: 0;
  transition: opacity 0.18s ease-out;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(to right, #38bdf8, #6366f1);
  color: #0b1120;
  box-shadow: 0 18px 45px rgba(56, 189, 248, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(56, 189, 248, 0.35);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.7);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 1);
  border-color: #38bdf8;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.78rem;
  color: #6b7280;
}

.hero-meta span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(255, 255, 255, 0.9);
}

.hero-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit {
  position: absolute;
  inset: 1.3rem;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.45);
  transform: rotate(-14deg);
  animation: orbitSpin 26s linear infinite;
}

.hero-orbit-2 {
  inset: 0.2rem;
  transform: rotate(16deg);
  opacity: 0.6;
  animation-duration: 34s;
}

.hero-card {
  position: absolute;
  max-width: 17rem;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), transparent 50%),
    rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.18);
}

.hero-card.primary {
  top: 10%;
  left: 0;
  animation: floatUpDown 7s ease-in-out infinite;
}

.hero-card.secondary {
  bottom: 5%;
  right: 0;
  animation: floatUpDown 9s ease-in-out infinite;
}

.hero-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.hero-card p {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.floating-badges {
  position: absolute;
  inset: 34% 15%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-end;
}

.badge-pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.98);
  color: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.badge-pill.badge-alt {
  background: rgba(219, 234, 254, 0.95);
  border-color: rgba(59, 130, 246, 0.7);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 3;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.3);
  will-change: transform;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 3s ease-out;
}

.hero-image-wrapper:hover img {
  transform: scale(1.06);
}

/* SECTIONS */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 1.3rem;
}

.section-header h2 {
  margin: 0;
  font-size: 1.6rem;
}

.section-header p {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
  color: #6b7280;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card {
  position: relative;
  padding: 1.1rem 1rem;
  border-radius: 1rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 55%),
    #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transform-origin: center;
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  transition:
    transform 0.2s ease-out,
    box-shadow 0.2s ease-out,
    border-color 0.2s ease-out,
    background 0.2s ease-out,
    opacity 0.25s ease-out;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(56, 189, 248, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02) rotate3d(1, -1, 0, 4deg);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
  border-color: rgba(56, 189, 248, 0.8);
}

.service-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.3), transparent 60%),
    #0f172a;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.service-card:hover .card-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.4);
}

.service-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.service-card p {
  margin: 0;
  font-size: 0.86rem;
  color: #6b7280;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.3rem;
  align-items: center;
}

.split-section h2 {
  margin: 0 0 0.6rem;
  font-size: 1.55rem;
}

.split-section h2 span {
  background: linear-gradient(to right, #e5e7eb, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.split-section p {
  margin: 0;
  font-size: 0.96rem;
  color: #4b5563;
}

.glow-card {
  position: relative;
  padding: 1.1rem 1rem;
  border-radius: 1.1rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%),
    #ffffff;
  border: 1px solid rgba(191, 219, 254, 0.9);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.16);
}

.glow-tag {
  display: inline-flex;
  padding: 0.28rem 0.7rem;
  font-size: 0.7rem;
  border-radius: 999px;
  background: rgba(240, 249, 255, 0.98);
  border: 1px solid rgba(56, 189, 248, 0.7);
  color: #0369a1;
  margin-bottom: 0.55rem;
}

.glow-card h3 {
  margin: 0 0 0.5rem;
}

.glow-card ul {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: #475569;
}

.glow-card li {
  margin-bottom: 0.3rem;
}

.pilgrimage-image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.25);
  margin-bottom: 0.9rem;
}

.pilgrimage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.highlight-section {
  padding-top: 1rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.highlight-card {
  padding: 1.1rem 1rem;
  border-radius: 1.1rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition:
    transform 0.25s ease-out,
    box-shadow 0.25s ease-out,
    border-color 0.25s ease-out,
    opacity 0.28s ease-out;
}

.highlight-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0.12;
  background: radial-gradient(circle at 0% 0%, #f97316, transparent 55%);
  pointer-events: none;
}

.highlight-card.honeymoon::before {
  background: radial-gradient(circle at 0% 0%, #ec4899, transparent 55%);
}

.highlight-card.local::before {
  background: radial-gradient(circle at 0% 0%, #22c55e, transparent 55%);
}

.highlight-card h2 {
  position: relative;
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.highlight-card h2 span {
  display: block;
  background: linear-gradient(to right, #e5e7eb, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
}

.highlight-card p {
  position: relative;
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.service-card.in-view,
.highlight-card.in-view,
.glow-card.in-view,
.about-block.in-view,
.contact-card.in-view {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.service-card.in-view:nth-child(1),
.highlight-card.in-view:nth-child(1) {
  transition-delay: 0.02s;
}
.service-card.in-view:nth-child(2),
.highlight-card.in-view:nth-child(2) {
  transition-delay: 0.06s;
}
.service-card.in-view:nth-child(3),
.highlight-card.in-view:nth-child(3) {
  transition-delay: 0.1s;
}
.service-card.in-view:nth-child(4),
.highlight-card.in-view:nth-child(4) {
  transition-delay: 0.14s;
}
.service-card.in-view:nth-child(5),
.highlight-card.in-view:nth-child(5) {
  transition-delay: 0.18s;
}
.service-card.in-view:nth-child(6),
.highlight-card.in-view:nth-child(6) {
  transition-delay: 0.22s;
}

.highlight-image {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 0.7rem;
}

.highlight-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.18), transparent 55%);
  pointer-events: none;
}

.highlight-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 3s ease-out;
}

.highlight-card:hover .highlight-image img {
  transform: scale(1.07);
}

/* PAGE HERO */
.page-hero {
  padding: 2.3rem 1.5rem 0.8rem;
}

.page-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0 0 0.4rem;
  font-size: 1.9rem;
}

.page-hero p {
  margin: 0;
  color: #6b7280;
  font-size: 0.97rem;
}

/* ABOUT */
.about-section {
  padding-top: 1.4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem;
}

.about-block {
  padding: 1.1rem 1rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.1);
  transform: translateY(15px) scale(0.98);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.about-block.floating-card.in-view {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.about-block:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.15);
}

/* About Section Background Animations */
.about-section-animated {
  position: relative;
  overflow: hidden;
  padding: 3rem 1.5rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.05), rgba(34, 197, 94, 0.05));
}

.about-bg-animation {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.about-bg-animation::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15), transparent 70%);
  border-radius: 50%;
  animation: bgPulse 8s ease-in-out infinite;
}

.about-bg-animation::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -250px;
  right: -250px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12), transparent 70%);
  border-radius: 50%;
  animation: bgPulse 10s ease-in-out infinite reverse;
}

@keyframes bgPulse {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2) translate(30px, -30px);
    opacity: 0.8;
  }
}

.about-grid,
.about-values-grid {
  position: relative;
  z-index: 1;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card-float {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 249, 255, 0.9));
  border-radius: 1.2rem;
  border: 2px solid rgba(56, 189, 248, 0.2);
  text-align: center;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.value-card-float::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(56, 189, 248, 0.1), transparent);
  animation: rotateGradient 6s linear infinite;
  pointer-events: none;
}

@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.value-card-float.in-view {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.value-card-float:nth-child(1) { transition-delay: 0.1s; }
.value-card-float:nth-child(2) { transition-delay: 0.2s; }
.value-card-float:nth-child(3) { transition-delay: 0.3s; }

.value-card-float:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.15);
  border-color: rgba(56, 189, 248, 0.5);
}


.value-card-float h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: #0f172a;
}

.value-card-float p {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

.about-block h2 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}

.about-block p {
  margin: 0 0 0.5rem;
  font-size: 0.94rem;
  color: #4b5563;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  font-size: 0.94rem;
  color: #4b5563;
}

.about-list li {
  margin-bottom: 0.35rem;
}

/* CONTACT */
.contact-section {
  padding-top: 1.4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.7rem;
}

.contact-card {
  padding: 1.1rem 1rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.1);
  transform: translateY(15px) scale(0.98);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-card.floating-card.in-view {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.contact-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.15);
}

.contact-icon-float {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  text-align: center;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.contact-form-card .contact-icon-float {
  animation-delay: 0.5s;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(240, 249, 255, 0.5);
  border-radius: 0.6rem;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(240, 249, 255, 0.8);
  transform: translateX(5px);
}

.contact-label-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  animation: float 2.5s ease-in-out infinite;
}

.contact-info-item:nth-child(2) .contact-label-icon {
  animation-delay: 0.3s;
}

.contact-info-item:nth-child(3) .contact-label-icon {
  animation-delay: 0.6s;
}

.contact-info-item:nth-child(4) .contact-label-icon {
  animation-delay: 0.9s;
}

.contact-card h2 {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
}

.contact-card p {
  margin: 0 0 0.5rem;
  font-size: 0.93rem;
  color: #4b5563;
}

.contact-note {
  margin-top: 0.6rem;
  font-size: 0.86rem;
  color: #6b7280;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-row label {
  font-size: 0.82rem;
  color: #9ca3af;
}

.form-row input,
.form-row select,
.form-row textarea {
  border-radius: 0.6rem;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  padding: 0.5rem 0.6rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.4);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* FOOTER */
.uhc-footer {
  border-top: 1px solid rgba(226, 232, 240, 1);
  padding: 2rem 1.5rem 1.2rem;
  background: radial-gradient(circle at top, #e0f2fe, #f1f5f9);
}

.footer-grid {
  max-width: 1120px;
  margin: 0 auto 1.2rem;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr;
  gap: 1.7rem;
  font-size: 0.87rem;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 0.5rem;
}

.footer-grid p {
  margin: 0 0 0.4rem;
  color: #6b7280;
}

.footer-links a {
  display: block;
  margin-bottom: 0.25rem;
  color: #0f172a;
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: #0ea5e9;
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid rgba(203, 213, 225, 1);
  padding-top: 0.6rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

.footer-bottom p {
  margin: 0;
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  overflow: visible;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 24px 60px rgba(22, 163, 74, 0.45);
  background: #16a34a;
}

.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 2px solid rgba(34, 197, 94, 0.5);
  animation: pulseRing 1.7s ease-out infinite;
}

.wa-icon {
  position: relative;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background:
    url("https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg")
      center/80% no-repeat,
    #22c55e;
  box-shadow: inset 0 0 0 2px #ecfdf5;
}

.wa-icon::before,
.wa-icon::after {
  display: none;
}

/* ANIMATIONS */
@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes headerGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes sloganPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.15);
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* STATS SECTION */
.stats-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(34, 197, 94, 0.08));
  border-radius: 2rem;
  margin: 3rem auto;
  max-width: 1120px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(56, 189, 248, 0.1) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: shimmer 3s linear infinite;
  pointer-events: none;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-card-animated {
  position: relative;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  border: 2px solid transparent;
  background-clip: padding-box;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

.stat-card-animated::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 1.5rem;
  padding: 2px;
  background: linear-gradient(45deg, #38bdf8, #22c55e, #f59e0b, #38bdf8);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: gradientShift 3s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card-animated:hover::before {
  opacity: 1;
}

.stat-card-animated:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
}

.stat-card-animated.in-view {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.stat-icon-large {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.stat-card-animated:nth-child(2) .stat-icon-large {
  animation-delay: 0.5s;
}

.stat-card-animated:nth-child(3) .stat-icon-large {
  animation-delay: 1s;
}

.stat-card-animated:nth-child(4) .stat-icon-large {
  animation-delay: 1.5s;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #0f172a, #0ea5e9, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

/* FEATURES SECTION */
.features-section {
  padding-top: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card-flip {
  perspective: 1000px;
  height: 220px;
  transform: translateY(15px) scale(0.98);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.feature-card-flip.in-view {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.feature-card-flip:nth-child(1) { transition-delay: 0.05s; }
.feature-card-flip:nth-child(2) { transition-delay: 0.1s; }
.feature-card-flip:nth-child(3) { transition-delay: 0.15s; }
.feature-card-flip:nth-child(4) { transition-delay: 0.2s; }
.feature-card-flip:nth-child(5) { transition-delay: 0.25s; }
.feature-card-flip:nth-child(6) { transition-delay: 0.3s; }

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.feature-card-flip:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1.2rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.flip-front {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(34, 197, 94, 0.1));
  border: 2px solid rgba(56, 189, 248, 0.3);
}

.flip-back {
  background: linear-gradient(135deg, #ffffff, rgba(240, 249, 255, 0.8));
  border: 2px solid rgba(56, 189, 248, 0.5);
  transform: rotateY(180deg);
}

.feature-icon-wrapper {
  font-size: 3rem;
  margin-bottom: 1rem;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent);
  border-radius: 50%;
  animation: float 2.5s ease-in-out infinite;
}

.flip-front h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #0f172a;
}

.flip-back p {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* FLOATING PARTICLES */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.6), transparent);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  box-shadow: 0 0 6px rgba(56, 189, 248, 0.4);
}

.particle:nth-child(1) {
  left: 10%;
  animation-duration: 20s;
  animation-delay: 0s;
  width: 3px;
  height: 3px;
}

.particle:nth-child(2) {
  left: 20%;
  animation-duration: 25s;
  animation-delay: 2s;
  width: 5px;
  height: 5px;
}

.particle:nth-child(3) {
  left: 30%;
  animation-duration: 18s;
  animation-delay: 4s;
  width: 4px;
  height: 4px;
}

.particle:nth-child(4) {
  left: 40%;
  animation-duration: 22s;
  animation-delay: 1s;
  width: 3px;
  height: 3px;
}

.particle:nth-child(5) {
  left: 50%;
  animation-duration: 28s;
  animation-delay: 3s;
  width: 6px;
  height: 6px;
}

.particle:nth-child(6) {
  left: 60%;
  animation-duration: 24s;
  animation-delay: 5s;
  width: 4px;
  height: 4px;
}

.particle:nth-child(7) {
  left: 70%;
  animation-duration: 19s;
  animation-delay: 1.5s;
  width: 3px;
  height: 3px;
}

.particle:nth-child(8) {
  left: 80%;
  animation-duration: 26s;
  animation-delay: 3.5s;
  width: 5px;
  height: 5px;
}

.particle:nth-child(9) {
  left: 90%;
  animation-duration: 21s;
  animation-delay: 2.5s;
  width: 4px;
  height: 4px;
}

.particle:nth-child(10) {
  left: 15%;
  animation-duration: 23s;
  animation-delay: 4.5s;
  width: 3px;
  height: 3px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.4rem;
  }

  .hero-visual {
    order: -1;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid,
  .split-section,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 1.2rem;
  }
}

@media (max-width: 720px) {
  .uhc-nav {
    padding-inline: 1.1rem;
    justify-content: center;
    position: relative;
  }

  .nav-links {
    position: absolute;
    inset: 100% 0 auto;
    padding: 0.6rem 1.1rem 0.9rem;
    background: #ffffff;
    border-bottom: 1px solid rgba(226, 232, 240, 1);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    transform-origin: top;
    transform: scaleY(0.85);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 30;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.45rem 0;
    color: #0f172a;
    opacity: 0.9;
  }

  .nav-toggle-label {
    display: inline-flex;
    position: absolute;
    right: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-logo {
    margin: 0 auto;
  }

  .nav-slogan-pill {
    display: none;
  }

  .nav-toggle:checked ~ .nav-links {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-text {
    font-size: 0.92rem;
  }

  .card-grid,
  .highlight-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
  }

  .banner-image {
    min-height: 220px;
  }
}

@media (max-width: 600px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}


