/**
 * VOC — Navigation + Hero carousel (responsive, light premium)
 */

/* ─── Top bar ─── */
.voc-topbar {
  background: linear-gradient(90deg, #f0f9ff, #fff, #f0fdfa);
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.8rem;
  padding: 0.5rem 0;
}

.voc-topbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.voc-topbar__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}

.voc-topbar__contacts a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}

.voc-topbar__contacts a:hover {
  color: #0ea5e9;
}

.voc-topbar__contacts i {
  color: #0ea5e9;
  font-size: 0.75rem;
}

.voc-topbar__contacts .voc-topbar__wa i {
  color: #25d366;
}

.voc-topbar__contacts .voc-topbar__wa:hover {
  color: #128c7e;
}

.voc-topbar__contacts .voc-topbar__wa:hover i {
  color: #128c7e;
}

.voc-topbar__tag {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

@media (max-width: 991px) {
  .voc-topbar {
    display: none;
  }
}

/* ─── Navbar shell ─── */
.voc-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.voc-header.is-scrolled {
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.08);
}

.voc-header.is-scrolled .voc-navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.voc-navbar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.35s ease;
}

.voc-navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.voc-navbar__brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.voc-navbar__logo-wrap {
  display: flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #f0f9ff 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 4px 18px rgba(14, 165, 233, 0.12);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.voc-navbar__brand:hover .voc-navbar__logo-wrap {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 28px rgba(14, 165, 233, 0.22);
  transform: translateY(-1px);
}

.voc-navbar__logo {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 6px rgba(12, 74, 110, 0.08));
}

.voc-navbar__brand:hover .voc-navbar__logo {
  transform: scale(1.02);
}

html.voc-header-ready .voc-navbar__logo-wrap {
  animation: vocNavLogoIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes vocNavLogoIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.voc-header-ready .voc-navbar__logo-wrap {
    animation: none;
  }
}

@media (min-width: 992px) {
  .voc-navbar__logo {
    height: 62px;
    max-width: 220px;
  }

  .voc-navbar__logo-wrap {
    padding: 0.4rem 0.75rem;
  }
}

/* Desktop nav */
.voc-navbar__menu {
  display: none;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .voc-navbar__menu {
    display: flex;
  }
}

.voc-navbar__link {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #334155;
  text-decoration: none;
  border-radius: 8px;
  position: relative;
  transition: color 0.25s, background 0.25s;
}

.voc-navbar__link:hover,
.voc-navbar__link.active-link {
  color: #0ea5e9;
  background: rgba(14, 165, 233, 0.08);
}

.voc-navbar__item {
  position: relative;
}

.voc-navbar__item--dropdown:hover .voc-navbar__dropdown,
.voc-navbar__item--dropdown:focus-within .voc-navbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.voc-navbar__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 0.75rem 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 1050;
}

.voc-navbar__dropdown--wide {
  min-width: 420px;
  padding: 1rem;
}

.voc-navbar__dropdown--services {
  min-width: 640px;
  left: 50%;
  transform: translate(-35%, 12px);
}

.voc-navbar__item--dropdown:hover .voc-navbar__dropdown--services,
.voc-navbar__item--dropdown:focus-within .voc-navbar__dropdown--services {
  transform: translate(-35%, 0);
}

.voc-navbar__dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 1rem;
}

.voc-navbar__dropdown-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem 0.75rem;
}

@media (max-width: 1199px) {
  .voc-navbar__dropdown--services {
    min-width: 520px;
    left: auto;
    right: 0;
    transform: translateY(12px);
  }

  .voc-navbar__item--dropdown:hover .voc-navbar__dropdown--services,
  .voc-navbar__item--dropdown:focus-within .voc-navbar__dropdown--services {
    transform: translateY(0);
  }

  .voc-navbar__dropdown-grid--3 {
    grid-template-columns: 1fr 1fr;
  }
}

.voc-navbar__dropdown-title {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0ea5e9;
  padding: 0.35rem 1rem 0.5rem;
  margin: 0;
}

.voc-navbar__dropdown a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.voc-navbar__dropdown a:hover {
  background: #f0f9ff;
  color: #0284c7;
}

.voc-navbar__caret {
  font-size: 0.55rem;
  margin-left: 0.25rem;
  opacity: 0.6;
}

/* CTA buttons */
.voc-navbar__actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 992px) {
  .voc-navbar__actions {
    display: flex;
  }
}

.voc-btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  border: none;
  cursor: pointer;
}

.voc-btn-nav--primary {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35);
}

.voc-btn-nav--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.45);
  color: #fff !important;
}

.voc-btn-nav--wa {
  background: #ecfdf5;
  color: #059669 !important;
  border: 1px solid #a7f3d0;
}

.voc-btn-nav--wa:hover {
  background: #059669;
  color: #fff !important;
}

/* Mobile toggle */
.voc-navbar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.voc-navbar__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #334155;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.voc-navbar__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.voc-navbar__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.voc-navbar__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 992px) {
  .voc-navbar__toggle {
    display: none;
  }
}

/* Mobile drawer */
.voc-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1035;
  pointer-events: none;
  visibility: hidden;
}

.voc-mobile-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}

.voc-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.voc-mobile-nav.is-open .voc-mobile-nav__backdrop {
  opacity: 1;
}

.voc-mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  padding: 1.25rem;
}

.voc-mobile-nav.is-open .voc-mobile-nav__panel {
  transform: translateX(0);
}

.voc-mobile-nav__link {
  display: block;
  padding: 0.85rem 0;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
}

.voc-mobile-nav__label {
  display: block;
  padding: 0.75rem 1.25rem 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
}

.voc-mobile-nav__sub {
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.voc-mobile-nav__sub a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #64748b;
  text-decoration: none;
}

.voc-mobile-nav__cta {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.voc-mobile-nav__cta .voc-btn-nav {
  justify-content: center;
  width: 100%;
  padding: 0.85rem;
}

/* ─── Hero carousel ─── */
.voc-hero {
  position: relative;
  min-height: min(92vh, 900px);
  min-height: min(92dvh, 900px);
  overflow: hidden;
  background: #e0f2fe;
}

.voc-hero__slides {
  position: absolute;
  inset: 0;
}

.voc-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  will-change: opacity;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.voc-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.voc-hero__slide-bg {
  position: absolute;
  inset: 0;
  transform: none;
}

.voc-hero__slide.is-active .voc-hero__slide-bg {
  transform: none;
}

.voc-hero__slide-bg picture,
.voc-hero__slide-bg img {
  width: 100%;
  height: 100%;
  display: block;
}

.voc-hero__slide-bg img {
  object-fit: cover;
  object-position: center 40%;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.voc-hero__slide-tint {
  position: absolute;
  inset: 0;
  /* Light edge only — keep photo bright and visible */
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.18) 38%,
    rgba(255, 255, 255, 0) 62%
  );
  pointer-events: none;
}

.voc-hero__slide-tint--warm {
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 251, 235, 0.15) 40%,
    rgba(255, 255, 255, 0) 65%
  );
}

.voc-hero__slide-tint--cool {
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.52) 0%,
    rgba(236, 254, 255, 0.12) 40%,
    rgba(255, 255, 255, 0) 65%
  );
}

.voc-hero__content {
  position: relative;
  z-index: 10;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 1.25rem 5rem;
  max-width: 900px;
  margin: 0 auto;
}

.voc-hero__text-wrap {
  position: relative;
  min-height: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .voc-hero__text-wrap {
    min-height: 260px;
  }
}

.voc-hero__text {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
    transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
    visibility 1s;
}

.voc-hero__text.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.voc-hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0284c7;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(14, 165, 233, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.voc-hero__title {
  font-size: clamp(2rem, 5.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #0c4a6e;
  margin: 0 0 1rem;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 1px 0 rgba(255, 255, 255, 0.98),
    0 2px 6px rgba(255, 255, 255, 0.92),
    0 0 22px rgba(255, 255, 255, 0.85),
    1px 1px 0 rgba(255, 255, 255, 0.75),
    -1px -1px 0 rgba(255, 255, 255, 0.65);
}

.voc-hero__title em {
  font-style: normal;
  color: #082f49;
  -webkit-text-fill-color: #082f49;
  background: none;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 1),
    0 0 1px rgba(255, 255, 255, 1),
    0 2px 0 rgba(255, 255, 255, 0.95),
    0 0 18px rgba(255, 255, 255, 1),
    0 0 36px rgba(255, 255, 255, 0.9),
    2px 2px 4px rgba(255, 255, 255, 0.85),
    -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.voc-hero__desc {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: #0f172a;
  max-width: 520px;
  margin: 0 auto 0;
  line-height: 1.65;
  font-weight: 500;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 1px 4px rgba(255, 255, 255, 0.9),
    0 0 16px rgba(255, 255, 255, 0.75);
}

.voc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
  opacity: 1;
  animation: vocHeroFadeIn 1s ease 0.5s both;
}

@keyframes vocHeroFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.voc-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voc-hero__btn--primary {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: #fff;
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.4);
}

.voc-hero__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(14, 165, 233, 0.5);
  color: #fff;
}

.voc-hero__btn--ghost {
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  border: 2px solid #e2e8f0;
}

.voc-hero__btn--ghost:hover {
  border-color: #0ea5e9;
  color: #0284c7;
  transform: translateY(-2px);
}

/* Controls */
.voc-hero__controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.voc-hero__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.85);
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.voc-hero__arrow:hover {
  background: #0ea5e9;
  color: #fff;
  border-color: #0ea5e9;
  transform: scale(1.08);
}

.voc-hero__dots {
  display: flex;
  gap: 0.5rem;
}

.voc-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  border: none;
  padding: 0;
  background: rgba(148, 163, 184, 0.5);
  cursor: pointer;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s;
}

.voc-hero__dot.is-active {
  width: 32px;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
}

.voc-hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
  width: 0%;
  z-index: 15;
  transition: width 0.1s linear;
}

.voc-hero__scroll {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  animation: vocBounce 2s ease infinite;
}

@keyframes vocBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@media (max-width: 767px) {
  .voc-hero__arrow {
    display: none;
  }
  .voc-hero__content {
    padding: 5.5rem 1rem 6.5rem;
  }
  .voc-hero__scroll {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .voc-hero__slide,
  .voc-hero__slide-bg,
  .voc-hero__text {
    transition-duration: 0.01ms !important;
  }
  .voc-hero__scroll {
    animation: none;
  }
}
