/* Overrides / additions to support vanilla-JS interactivity that
   originally came from React state. Loaded after styles.css. */

.meeting-modal-overlay.hidden {
  display: none !important;
}

/* Touch-device dropdown support (desktop already works via :hover/:focus-within) */
.nav-links li.has-dropdown.active .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%) translateY(0);
}
.nav-links li.has-dropdown.active .dropdown-chevron {
  transform: rotate(180deg);
  color: #fac54b;
}
.nested-item.active .sub-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0);
}
.nested-item.active .nested-chevron {
  transform: translate(3px);
}

/* Video lightbox */
.video-card {
  cursor: pointer;
}

/* Swiper coverflow container needs an explicit height on some slides */
.testimonial-swiper .swiper-slide,
.text-testimonial-swiper .swiper-slide {
  height: auto;
}

/* Make sure content revealed by scroll-reveal JS is visible with no-JS fallback */
.no-js .fade-up,
.no-js .fade-in,
.no-js .scale-up,
.no-js .slide-in-left,
.no-js .slide-in-right {
  opacity: 1 !important;
  transform: none !important;
}

/* -----------------------------------------------------------------
 * Mega menu redesign (SERVICES + AUTOMATION)
 * Dark-panel intro + two-column icon/title/description grid on a
 * light card grid, with a staggered entrance animation each time
 * the menu opens.
 * ------------------------------------------------------------- */
.dropdown-menu.megamenu {
  min-width: 660px;
  max-width: 780px;
  width: -moz-max-content;
  width: max-content;
  padding: 14px;
  border-radius: 28px;
  background: #f4f9f8;
  border: 1px solid rgba(15, 76, 92, 0.08);
  box-shadow: 0 34px 80px rgba(2, 6, 23, 0.28);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  overflow: hidden;
}

.dropdown-menu.megamenu::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(250, 197, 75, 0.55), rgba(0, 65, 79, 0) 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.megamenu-inner {
  display: flex;
  gap: 4px;
  align-items: stretch;
  position: relative;
}

.megamenu-intro {
  flex: 0 0 220px;
  background: linear-gradient(160deg, #0f414f, #07272e);
  border-radius: 20px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 14px 30px rgba(3, 20, 24, 0.35);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  position: relative;
  overflow: hidden;
}

.megamenu-intro::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -60px;
  bottom: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 197, 75, 0.35), rgba(250, 197, 75, 0) 70%);
  pointer-events: none;
}

.nav-links li.has-dropdown:hover .megamenu-intro,
.nav-links li.has-dropdown:focus-within .megamenu-intro,
.nav-links li.has-dropdown.active .megamenu-intro {
  opacity: 1;
  transform: translateY(0);
}

.megamenu-intro-title {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.2px;
  position: relative;
}

.megamenu-intro-title::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: #fac54b;
  margin-bottom: 12px;
}

.megamenu-intro-text {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
}

.megamenu-intro-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.megamenu-intro-link .mm-arrow {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: #fac54b;
  color: #0f2b2e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease;
}

.megamenu-intro-link:hover .mm-arrow {
  transform: translateX(4px) scale(1.06);
  background: #fff;
  color: #0f414f;
}

.megamenu-grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
  align-content: start;
  padding: 6px 4px;
}

.mega-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  border: 1px solid transparent;
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.25s ease,
    border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-links li.has-dropdown:hover .mega-item,
.nav-links li.has-dropdown:focus-within .mega-item,
.nav-links li.has-dropdown.active .mega-item {
  opacity: 1;
  transform: translateY(0);
}

.megamenu-grid .mega-item:nth-child(1) { transition-delay: 0.04s; }
.megamenu-grid .mega-item:nth-child(2) { transition-delay: 0.09s; }
.megamenu-grid .mega-item:nth-child(3) { transition-delay: 0.14s; }
.megamenu-grid .mega-item:nth-child(4) { transition-delay: 0.19s; }
.megamenu-grid .mega-item:nth-child(5) { transition-delay: 0.24s; }
.megamenu-grid .mega-item:nth-child(6) { transition-delay: 0.29s; }

.mega-item:hover {
  background: #fff;
  border-color: rgba(15, 76, 92, 0.1);
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.1);
  transform: translateY(-2px);
}

.mega-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.12);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.mega-icon img {
  width: 62%;
  height: 62%;
  object-fit: contain;
}

.mega-item:hover .mega-icon {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.18);
}

.mega-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-top: 2px;
}

.mega-title {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #101828;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.mega-item:hover .mega-title {
  color: #0f414f;
}

.mega-desc {
  font-size: 11.5px;
  line-height: 1.55;
  color: #66757a;
}

@media (max-width: 1100px) {
  .dropdown-menu.megamenu {
    min-width: 480px;
    max-width: 560px;
  }
  .megamenu-inner {
    flex-direction: column;
  }
  .megamenu-intro {
    flex: none;
  }
  .megamenu-grid {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------------------------
 * Hero floating decorations — keep them behind the headline and
 * dialled back so they read as ambience, not a second layer of text.
 * ------------------------------------------------------------- */
.tiktok-floating-elements {
  pointer-events: none;
}

.tiktok-floating-elements .tiktok-comment,
.tiktok-floating-elements .floating-heart,
.tiktok-floating-elements .floating-emoji,
.tiktok-floating-elements i.floating-bag,
.tiktok-floating-elements i.floating-cart,
.tiktok-floating-elements i.floating-reel {
  z-index: 1;
}

.tiktok-comment {
  opacity: 0.82;
  font-size: 0.78rem;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-12px) rotate(3deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

/* -----------------------------------------------------------------
 * "Our Services" section redesign — stylish cards with icon chips,
 * a faint index numeral and a scroll-reveal stagger.
 * ------------------------------------------------------------- */
.services-section {
  position: relative;
  overflow: hidden;
}

.services-section::before,
.services-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.services-section::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(250, 197, 75, 0.14), rgba(250, 197, 75, 0) 70%);
  top: -160px;
  left: -140px;
}

.services-section::after {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 65, 79, 0.08), rgba(0, 65, 79, 0) 70%);
  bottom: -140px;
  right: -120px;
}

.services-section .max-w-7xl {
  position: relative;
  z-index: 1;
}

.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 18px 8px 14px;
  box-shadow: 0 10px 22px rgba(250, 197, 75, 0.35);
}

.services-eyebrow i {
  font-size: 0.7rem;
}

.service-card-v2 {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15, 76, 92, 0.08);
  border-radius: 22px;
  padding: 34px 28px 30px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease,
    border-color 0.4s ease;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.06);
}

.service-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 46px rgba(0, 65, 79, 0.18);
  border-color: rgba(0, 65, 79, 0.14);
}

.service-card-v2-index {
  position: absolute;
  top: 6px;
  right: 18px;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 65, 79, 0.06);
  transition: color 0.4s ease;
  z-index: 0;
}

.service-card-v2:hover .service-card-v2-index {
  color: rgba(250, 197, 75, 0.35);
}

.service-card-v2-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #0f414f, #0a2f38);
  color: #fac54b;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 65, 79, 0.25);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease,
    color 0.4s ease;
}

.service-card-v2:hover .service-card-v2-icon {
  transform: scale(1.08) rotate(-6deg);
  background: linear-gradient(135deg, #fac54b, #f1a52e);
  color: #0f414f;
}

.service-card-v2 h3 {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  font-weight: 800;
  color: #101828;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.service-card-v2 p {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #667085;
  margin-bottom: 20px;
}

.service-card-v2-arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f6f6;
  color: #0f414f;
  font-size: 0.72rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease,
    color 0.3s ease;
}

.service-card-v2:hover .service-card-v2-arrow {
  transform: translateX(6px);
  background: #0f414f;
  color: #fff;
}

.service-card-v2.featured {
  background: linear-gradient(160deg, #fac54b, #f1a52e);
  border-color: transparent;
}

.service-card-v2.featured h3,
.service-card-v2.featured p {
  color: #0f2b2e;
}

.service-card-v2.featured .service-card-v2-icon {
  background: #0f414f;
  color: #fac54b;
}

.service-card-v2.featured:hover .service-card-v2-icon {
  background: #fff;
  color: #0f414f;
}

.service-card-v2.featured .service-card-v2-index {
  color: rgba(15, 43, 46, 0.12);
}

.service-card-v2.featured .service-card-v2-arrow {
  background: rgba(15, 65, 79, 0.9);
  color: #fac54b;
}

.service-card-v2.featured:hover .service-card-v2-arrow {
  background: #fff;
  color: #0f414f;
}

/* -----------------------------------------------------------------
 * "Hands Off E-commerce Automation" section redesign — a calm
 * static section (no more 250vh sticky-scroll dead space), with a
 * styled timeline and scroll-reveal per item.
 * ------------------------------------------------------------- */
.whychoose-wrapper {
  height: auto !important;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.whychoose-wrapper .sticky {
  position: static !important;
  height: auto !important;
}

.whychoose-wrapper::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 197, 75, 0.12), rgba(250, 197, 75, 0) 70%);
  top: -220px;
  right: -160px;
  pointer-events: none;
}

.whychoose-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.whychoose-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #f2f5f5;
}

.whychoose-badge i {
  color: #fac54b;
  font-size: 0.8rem;
}

.feature-item {
  position: relative;
  padding: 20px 20px 20px 0;
  border-radius: 18px;
  transition: background 0.35s ease, transform 0.35s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.feature-item .feature-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fac54b, #f1a52e);
  color: #0f2b2e;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(250, 197, 75, 0.25);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-item:hover .feature-icon-circle {
  transform: scale(1.08) rotate(-4deg);
}

.feature-item .feature-step-no {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fac54b;
  opacity: 0.85;
}

/* ---------------------------------------------------------------
 * Home page "Reviews By Our Clients" slider (redesigned, 3-up)
 * ------------------------------------------------------------- */
.ws-reviews-carousel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 8px;
}

.ws-reviews-viewport {
  overflow: hidden;
  outline: none;
}

.ws-reviews-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 0.9, 0.28, 1);
}

.ws-review-slide {
  flex: 0 0 calc(100% - 0px);
  display: flex;
}

@media (min-width: 640px) {
  .ws-review-slide {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .ws-review-slide {
    flex: 0 0 calc(33.3333% - 16px);
  }
}

.ws-review-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 26px 24px;
  box-shadow: 0 14px 30px -6px rgba(0, 65, 79, 0.14);
  border: 1px solid rgba(0, 65, 79, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ws-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -6px rgba(0, 65, 79, 0.2);
}

.ws-review-quote-mark {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: Georgia, serif;
  font-size: 3.4rem;
  line-height: 1;
  color: #fac54b;
  opacity: 0.35;
  pointer-events: none;
}

.ws-review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ws-review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #fac54b;
  flex-shrink: 0;
}

.ws-review-id h4 {
  margin: 0;
  font-weight: 800;
  font-size: 0.98rem;
  color: #00414f;
}

.ws-review-id p {
  margin: 2px 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #b8860b;
}

.ws-review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.ws-review-stars i {
  color: #fac54b;
  font-size: 0.8rem;
}

.ws-review-text {
  color: #46545a;
  font-size: 0.93rem;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 16px;
}

.ws-review-foot {
  padding-top: 14px;
  border-top: 1px solid rgba(0, 65, 79, 0.08);
}

.ws-review-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #00414f;
}

.ws-review-verified i {
  color: #16a34a;
}

.ws-reviews-prev,
.ws-reviews-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #00414f, #005f72);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 65, 79, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 5;
}

.ws-reviews-prev {
  left: -8px;
}

.ws-reviews-next {
  right: -8px;
}

@media (min-width: 1024px) {
  .ws-reviews-prev {
    left: -54px;
  }
  .ws-reviews-next {
    right: -54px;
  }
}

.ws-reviews-prev:hover,
.ws-reviews-next:hover {
  transform: translateY(-50%) scale(1.08);
}

.ws-reviews-prev:active,
.ws-reviews-next:active {
  transform: translateY(-50%) scale(0.94);
}

.ws-reviews-prev:disabled,
.ws-reviews-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ws-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.ws-reviews-dot {
  cursor: pointer;
  padding: 0;
  border: 0;
  height: 10px;
  width: 10px;
  border-radius: 999px;
  background: rgba(0, 65, 79, 0.25);
  transition: width 0.3s ease, background 0.3s ease;
}

.ws-reviews-dot.is-active {
  width: 28px;
  background: #00414f;
}

#wsReviewsSlider {
  outline: none;
}

/* ---------------------------------------------------------------
 * Home page FAQ section v2 (no photo background)
 * ------------------------------------------------------------- */
.faqs-section {
  background: linear-gradient(160deg, #00313c 0%, #00414f 55%, #00323d 100%);
}

.ws-faq2-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ws-faq2-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.ws-faq2-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
}

.ws-faq2-orb-1 {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -60px;
  background: rgba(250, 197, 75, 0.16);
}

.ws-faq2-orb-2 {
  width: 380px;
  height: 380px;
  bottom: -120px;
  right: -80px;
  background: rgba(0, 149, 178, 0.22);
}

.ws-faq2-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.ws-faq2-item.is-open {
  border-color: rgba(250, 197, 75, 0.55);
  background: rgba(255, 255, 255, 0.09);
}

.ws-faq2-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.ws-faq2-q-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ws-faq2-num {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fac54b;
  background: rgba(250, 197, 75, 0.14);
  border: 1px solid rgba(250, 197, 75, 0.35);
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws-faq2-q-text {
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
}

.ws-faq2-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.ws-faq2-item.is-open .ws-faq2-icon {
  transform: rotate(180deg);
  background: #fac54b;
  color: #00414f;
}

.ws-faq2-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.ws-faq2-answer-inner {
  padding: 0 22px 22px 68px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

.ws-faq2-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fac54b;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid rgba(250, 197, 75, 0.5);
  border-radius: 999px;
  padding: 12px 24px;
  transition: background 0.25s ease, color 0.25s ease;
}

.ws-faq2-more:hover {
  background: #fac54b;
  color: #00414f;
}

@media (max-width: 640px) {
  .ws-faq2-answer-inner {
    padding-left: 22px;
  }
}

/* ---------------------------------------------------------------
 * Home page "Video Testimonials" cards
 * ------------------------------------------------------------- */
.ws-video-card {
  position: relative;
}

.ws-video-card .ws-video-center-play {
  transition: opacity 0.25s ease;
  opacity: 1;
}

.ws-video-card.is-playing .ws-video-center-play {
  opacity: 0;
}

.ws-video-center-play-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
  color: #ffffff;
  font-size: 1.15rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.ws-play-btn,
.ws-mute-btn,
.ws-expand-btn {
  cursor: pointer;
}

.ws-video-card video::-webkit-media-controls {
  display: none !important;
}

/* ---------------------------------------------------------------
 * Redesigned "Phone / Email / Location" contact panel
 * (home page contact section + reused pattern)
 * ------------------------------------------------------------- */
.ws-contact-panel-v2 {
  border-width: 1px !important;
  border-color: rgba(250, 197, 75, 0.55) !important;
  background: linear-gradient(160deg, rgba(0, 65, 79, 0.65), rgba(0, 40, 48, 0.75)) !important;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.ws-contact-panel-v2 .contact-details {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
}

.ws-contact-panel-v2 .contact-detail {
  align-items: center !important;
  gap: 14px !important;
  padding: 12px 14px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ws-contact-panel-v2 .contact-detail:hover {
  background: rgba(255, 255, 255, 0.11) !important;
  transform: translateX(2px);
}

.ws-contact-panel-v2 .contact-icon-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fac54b, #f0a500);
  color: #00414f;
  font-size: 15px;
  box-shadow: 0 6px 14px rgba(250, 197, 75, 0.35);
}

.ws-contact-panel-v2 .contact-value {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ---------------------------------------------------------------
 * Contact form submit + status feedback (used by both the home
 * page contact section and contact.html)
 * ------------------------------------------------------------- */
.ws-submit-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ws-submit-btn.is-loading {
  opacity: 0.85;
  cursor: wait;
  pointer-events: none;
}

.ws-submit-btn.is-loading .ws-submit-btn-label:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border-radius: 50%;
  border: 2px solid rgba(0, 65, 79, 0.35);
  border-top-color: #00414f;
  vertical-align: -2px;
  animation: ws-spin 0.7s linear infinite;
}

@keyframes ws-spin {
  to {
    transform: rotate(360deg);
  }
}

.ws-form-status {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
}

.ws-form-status.is-visible {
  display: block;
}

.ws-form-status.is-success {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.ws-form-status.is-error {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.ws-form-status.is-error a {
  color: inherit;
  text-decoration: underline;
}

/* On the dark conta-form-card (contact.html) the status text needs
   light-friendly colors for readability */
.conta-form-card .ws-form-status.is-success {
  background: rgba(34, 197, 94, 0.16);
  color: #86efac;
  border-color: rgba(134, 239, 172, 0.4);
}

.conta-form-card .ws-form-status.is-error {
  background: rgba(239, 68, 68, 0.16);
  color: #fca5a5;
  border-color: rgba(252, 165, 165, 0.4);
}

/* ---------------------------------------------------------------
 * Hero heading — fluid sizing so "We Build Marketplace Champions"
 * always fits inside the viewport instead of being cut off on the
 * right edge at large / ultra-wide desktop widths.
 * ------------------------------------------------------------- */
.hero-title-fluid {
  font-size: clamp(1.6rem, 1.05rem + 3.1vw, 3.35rem);
}

@media (min-width: 1600px) {
  .hero-title-fluid {
    font-size: 3.35rem;
  }
}

/* Below the "sm" breakpoint the heading is allowed to wrap onto a
   second line ("We Build Marketplace" / "Champions"). The base
   leading-[0.95] utility is too tight for wrapped multi-line text
   and makes the lines visually overlap, so give it proper
   breathing room on phones. */
@media (max-width: 639px) {
  .hero-title-fluid {
    line-height: 1.18 !important;
  }
  .hero-title-fluid .hero-word {
    display: block;
    margin-bottom: 2px;
  }
}

/* ---------------------------------------------------------------
 * FIX: the "sm:whitespace-nowrap" utility forces each heading line
 * ("We Build Marketplace Champions" / "Etsy Relentless Growth.")
 * onto a single line starting at 640px, but the fluid font-size
 * isn't small enough yet at 640–1023px widths (tablets, small
 * laptops, split-screen / zoomed browser windows) to fit that
 * whole line — the text overflows past the edge of the hero
 * banner and gets clipped, which is what breaks the heading's
 * alignment. Force it back to wrapping in that range so it always
 * stays centered and fully inside the hero banner, and only allow
 * the single-line layout once there's enough room (1024px+).
 * ------------------------------------------------------------- */
@media (max-width: 1023px) {
  .hero-title-fluid.hero-title .hero-word {
    white-space: normal !important;
    display: block;
    text-align: center;
    margin-bottom: 4px;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .hero-title-fluid {
    /* Slightly larger + tighter clamp than the phone range so the
       two-line layout still reads as a confident, bold headline
       on tablets instead of looking small/lost. */
    font-size: clamp(2.1rem, 1.1rem + 3.6vw, 3.1rem);
    line-height: 1.15 !important;
  }
}

/* Belt-and-braces: never let the heading's own box (or its
   gradient-text spans) push wider than the hero banner, at any
   breakpoint, on any browser. */
.hero-title-fluid {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ---------------------------------------------------------------
 * Header behavior on scroll.
 * The nav pill hides itself as soon as you scroll down (out of
 * view, slid up), and slides back in when you scroll back up or
 * return to the top of the page. Controlled by a `.nav-hidden`
 * class toggled from js/site.js on scroll.
 * `background-attachment:fixed` on the section backgrounds is
 * also a known cause of jank for fixed-position elements on
 * mobile, so it's disabled below desktop widths.
 * ------------------------------------------------------------- */
@media (max-width: 1024px) {
  section.bg-white,
  section.bg-gray-50,
  .section-with-pattern,
  .whyusab,
  .opabt,
  .services-cards,
  .ctsec,
  .services-section {
    background-attachment: scroll !important;
  }
}

.navbar-wrapper {
  position: relative;
  z-index: 10002;
}

.navbar-pill {
  position: fixed !important;
  top: 18px !important;
  z-index: 10002 !important;
  transition: transform 0.32s ease, opacity 0.32s ease;
  will-change: transform;
}

.navbar-pill.nav-hidden {
  transform: translate(-50%, -140%);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .navbar-pill {
    top: 12px !important;
  }
}

/* ---------------------------------------------------------------
 * Floating action buttons — move WhatsApp to the left corner,
 * keep the chat bubble on the right so the two never overlap.
 * ------------------------------------------------------------- */
.whatsapp-fab {
  right: auto !important;
  left: 20px !important;
  bottom: 20px !important;
}

.whatsapp-fab:after {
  right: auto;
  left: 0;
}

@media (min-width: 768px) {
  .whatsapp-fab {
    left: 32px !important;
    right: auto !important;
    bottom: 32px !important;
  }
  .tawk-fab {
    right: 32px !important;
    bottom: 32px !important;
  }
}

@media (max-width: 768px) {
  .whatsapp-fab {
    left: 18px !important;
    right: auto !important;
    bottom: 18px !important;
  }
  .tawk-fab {
    right: 18px !important;
    bottom: 18px !important;
  }
}

/* ---------------------------------------------------------------
 * Footer redesign — professional / stylish / attractive
 * ------------------------------------------------------------- */
.ws-footer {
  position: relative;
  background: radial-gradient(1100px 420px at 12% -10%, rgba(250, 197, 75, 0.10), transparent 60%),
    linear-gradient(180deg, #08363a 0%, #062c2f 55%, #052225 100%);
  overflow: hidden;
  padding: 72px 90px 0 !important;
}

.ws-footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fac54b 15%, #ffe08a 50%, #fac54b 85%, transparent);
}

.ws-footer-glow {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 197, 75, 0.16), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ws-footer-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto !important;
  max-width: 1100px;
}

@media (min-width: 901px) {
  .ws-footer-inner {
    grid-template-columns: 1.1fr 1fr 1fr 1.15fr;
    gap: 40px;
  }
}

.ws-footer-left {
  flex-direction: column;
  align-items: flex-start !important;
  gap: 4px;
  padding-top: 0;
}

.ws-footer-logo {
  display: inline-flex;
  margin-bottom: 14px;
}

.ws-footer-logo img {
  width: 76px !important;
  height: 76px !important;
  border-radius: 50%;
  padding: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(250, 197, 75, 0.35);
  box-shadow: 0 0 0 5px rgba(250, 197, 75, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ws-footer-logo:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 0 6px rgba(250, 197, 75, 0.12);
}

.ws-footer-brand-name {
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.3px;
  margin: 0 0 10px;
}

.ws-footer-tagline {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  max-width: 260px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.ws-footer-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ws-footer-platforms span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 999px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.ws-footer-platforms span:hover {
  background: rgba(250, 197, 75, 0.14);
  border-color: rgba(250, 197, 75, 0.4);
  color: #fac54b;
}

.ws-footer-col {
  position: relative;
  z-index: 1;
}

.ws-footer-col h4 {
  position: relative;
  padding-bottom: 14px;
  font-size: 14px;
  letter-spacing: 1.2px;
}

.ws-footer-col h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #fac54b, #ffdf94);
}

@media (max-width: 900px) {
  .ws-footer-col h4:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .ws-footer-col h4 {
    text-align: center;
  }
}

.ws-footer-col li {
  transition: transform 0.18s ease;
}

.ws-footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.ws-footer-col a:before {
  content: "\203A";
  color: #fac54b;
  font-weight: 700;
  transition: transform 0.18s ease;
}

.ws-footer-col a:hover {
  color: #fac54b;
}

.ws-footer-col a:hover:before {
  transform: translateX(3px);
}

.ws-footer-col ul li:not(:has(a)) {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

/* Contact column — icon badges */
.ws-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.ws-footer-contact-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 13.5px;
  line-height: 1.4;
}

.ws-footer-contact-item:before {
  content: none !important;
}

.ws-footer-contact-item-static {
  align-items: flex-start;
}

.ws-footer-contact-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 197, 75, 0.12);
  border: 1px solid rgba(250, 197, 75, 0.28);
  color: #fac54b;
  font-size: 13px;
  transition: background 0.18s ease, transform 0.18s ease;
}

a.ws-footer-contact-item:hover .ws-footer-contact-icon {
  background: #fac54b;
  color: #07393b;
  transform: translateY(-2px);
}

.ws-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fac54b, #f0a92f);
  color: #07393b;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(250, 197, 75, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ws-footer-cta:before {
  content: none !important;
}

.ws-footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(250, 197, 75, 0.32);
}

/* Payments strip */
.ws-footer-payments {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  padding-top: 0;
  border-top: none;
}

.ws-footer-payments-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.ws-footer-payments-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}

.ws-footer-payments-label i {
  color: #fac54b;
}

.ws-footer-badges {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ws-footer-badge {
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ws-footer-badge:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.ws-footer-rule {
  display: none;
}

.ws-footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 12.5px;
  text-align: left;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ws-footer-totop {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #fac54b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.ws-footer-totop:hover {
  background: #fac54b;
  color: #07393b;
  border-color: #fac54b;
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .ws-footer {
    padding: 56px 24px 0 !important;
  }
  .ws-footer-payments-inner {
    flex-direction: column;
    text-align: center;
  }
  .ws-footer-cta {
    margin: 0 auto;
  }
  .ws-footer-platforms {
    justify-content: center;
  }
  .ws-footer-contact-item {
    justify-content: center;
  }
  .ws-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .ws-footer {
    padding: 44px 18px 0 !important;
  }
}

/* ---------------------------------------------------------------
 * Home page - Contact section v2 (no stock photo background)
 * ------------------------------------------------------------- */
.ws-contact2-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 65, 79, 0.22);
  background: #fff;
}

@media (min-width: 768px) {
  .ws-contact2-card {
    grid-template-columns: 1.05fr 1fr;
  }
}

.ws-contact2-left {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 10% 0%, #0a5a6c 0%, #00414f 45%, #012029 100%);
  padding: 44px 34px;
  display: flex;
  align-items: center;
}

.ws-contact2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.ws-contact2-grid {
  position: absolute;
  inset: -2px;
  background-image: linear-gradient(rgba(250, 197, 75, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 197, 75, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(75% 65% at 30% 30%, #000 0%, transparent 78%);
  mask-image: radial-gradient(75% 65% at 30% 30%, #000 0%, transparent 78%);
}

.ws-contact2-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.6;
}

.ws-contact2-orb-1 {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(250, 197, 75, 0.5), transparent 70%);
}

.ws-contact2-orb-2 {
  width: 220px;
  height: 220px;
  bottom: -90px;
  left: -60px;
  background: radial-gradient(circle, rgba(105, 201, 208, 0.45), transparent 70%);
}

.ws-contact2-left-inner {
  position: relative;
  z-index: 1;
}

.ws-contact2-eyebrow {
  display: block;
  color: #fac54b;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.ws-contact2-title {
  color: #fff;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.25;
  margin: 0 0 14px;
}

.ws-contact2-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 26px;
  max-width: 34rem;
}

.ws-contact2-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ws-contact2-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.ws-contact2-detail:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(250, 197, 75, 0.4);
  transform: translateX(4px);
}

.ws-contact2-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fac54b, #f0a500);
  color: #00414f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.ws-contact2-label {
  font-weight: 700;
  font-size: 0.8rem;
  color: #fac54b;
  margin-bottom: 2px;
}

.ws-contact2-value {
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.ws-contact2-right {
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ws-contact2-form-title {
  font-weight: 800;
  font-size: 1.35rem;
  color: #00414f;
  margin: 0 0 4px;
}

.ws-contact2-form-sub {
  color: #64748b;
  font-size: 0.88rem;
  margin: 0 0 22px;
}

.ws-contact2-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ws-contact2-field {
  position: relative;
  display: flex;
  align-items: center;
}

.ws-contact2-field i {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  font-size: 0.85rem;
  pointer-events: none;
  transition: color 0.2s ease;
}

.ws-contact2-field input,
.ws-contact2-field textarea {
  width: 100%;
  padding: 13px 16px 13px 42px;
  font-size: 0.92rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  color: #0f2b2e;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ws-contact2-field textarea {
  padding-top: 13px;
  resize: vertical;
  min-height: 108px;
}

.ws-contact2-field-textarea i {
  top: 16px;
}

.ws-contact2-field input:focus,
.ws-contact2-field textarea:focus {
  outline: none;
  border-color: #fac54b;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(250, 197, 75, 0.18);
}

.ws-contact2-field input:focus + i,
.ws-contact2-field:focus-within i {
  color: #fac54b;
}

.ws-contact2-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #fac54b, #f0a500);
  color: #00414f;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ws-contact2-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(250, 197, 75, 0.35);
}

.ws-contact2-submit .ws-contact2-submit-icon {
  font-size: 0.85rem;
  transition: opacity 0.2s ease;
}

.ws-contact2-submit.is-loading .ws-contact2-submit-icon {
  opacity: 0;
}

.ws-contact2-submit.is-loading {
  cursor: not-allowed;
  opacity: 0.85;
}

@media (max-width: 767px) {
  .ws-contact2-left,
  .ws-contact2-right {
    padding: 32px 24px;
  }
}
