/* ==========================================================================
   VAMINOS PRODUCTIONS — MOTION & INTERACTIVE ADDONS
   Non-destructive styling that preserves 100% of original Webflow alignments
   ========================================================================== */

/* 1. Lenis Smooth Scroll */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* 2. Service Section Hover-Only Logic (Home Page) */
.service-row-item {
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row-item .services-preview-card {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9) translate3d(0, 20px, 0);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.service-row-item:hover .services-preview-card,
.service-row-item.is-hovered .services-preview-card {
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale(1) translate3d(0, 0, 0) !important;
}

.service-row-item:hover .service-text,
.service-row-item.is-hovered .service-text {
  color: #DE322D !important;
}

.service-row-item:hover .service-icon-bg,
.service-row-item.is-hovered .service-icon-bg {
  background-color: #DE322D !important;
}

/* 3. GLOBAL PRESENCE & MARKETS — 1:1 STODIO INTERACTION HOVER MOTION */
.location-list-item {
  cursor: pointer;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.location-list-left {
  display: flex !important;
  align-items: center !important;
}

.location-list-image-wrapper {
  border-radius: 50% !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, 0.05) !important;
  flex-shrink: 0 !important;
  width: 0px !important;
  height: 0px !important;
  margin-right: 0px !important;
  opacity: 0 !important;
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1), height 0.45s cubic-bezier(0.16, 1, 0.3, 1), margin-right 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease !important;
}

.location-list-item:hover .location-list-image-wrapper {
  width: 60px !important;
  height: 60px !important;
  margin-right: 20px !important;
  opacity: 1 !important;
}

.location-list-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.location-list-item:hover .location-list-image {
  transform: scale(1.1) !important;
}

.location-list-item .heading-style-02 {
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.location-list-item:hover .heading-style-02 {
  color: #DE322D !important;
}

/* 4. EXACT 1:1 PILL CAPSULE FAQ SECTION (NATIVE ACCORDION WITH MINUS/PLUS) */
.faq-section {
  background-color: #FFFFFF !important;
  padding: 100px 0 !important;
  color: #0A0A0A !important;
  display: block !important;
}

.faq-block {
  display: grid !important;
  grid-template-columns: 1fr 1.25fr !important;
  grid-gap: 60px !important;
  align-items: flex-start !important;
  width: 100% !important;
}

@media (max-width: 991px) {
  .faq-block {
    grid-template-columns: 1fr !important;
    grid-gap: 40px !important;
  }
}

.faq-title-blcok {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.faq-title-blcok .heading-style-02 {
  color: #0A0A0A !important;
  font-size: 52px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.03em !important;
  margin-top: 20px !important;
  margin-bottom: 16px !important;
}

.faq-title-blcok .text-l {
  color: #666666 !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
  max-width: 440px !important;
}

/* FAQ Item Block (Right Column) */
.faq-item-block {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  width: 100% !important;
}

/* Native & Direct Pill Capsule Card */
details.faq-card,
.faq-wrap {
  background-color: #F3F3F3 !important;
  border-radius: 40px !important;
  padding: 22px 32px !important;
  cursor: pointer !important;
  user-select: none !important;
  border: none !important;
  box-shadow: none !important;
  transition: background-color 0.25s ease, border-radius 0.25s ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
}

details.faq-card:hover,
.faq-wrap:hover {
  background-color: #EAEAEA !important;
}

details.faq-card[open],
.faq-wrap.is-open {
  border-radius: 28px !important;
  background-color: #F3F3F3 !important;
}

summary.faq-summary,
.faq-question {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  list-style: none !important;
  outline: none !important;
  cursor: pointer !important;
  width: 100% !important;
}

summary.faq-summary::-webkit-details-marker {
  display: none !important;
}

summary.faq-summary::marker {
  display: none !important;
}

.faq-q-text {
  font-family: var(--font-family--heading, 'Geist', 'Inter', sans-serif) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #0A0A0A !important;
  line-height: 1.4 !important;
  text-align: left !important;
}

/* Plus to Minus Icon */
.faq-icon-pill,
.faq-plus-wrap {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  transition: transform 0.25s ease !important;
}

.faq-icon-pill::before,
.faq-plus-l {
  content: '' !important;
  position: absolute !important;
  width: 14px !important;
  height: 2px !important;
  background-color: #0A0A0A !important;
  border-radius: 2px !important;
}

.faq-icon-pill::after,
.faq-plus {
  content: '' !important;
  position: absolute !important;
  width: 2px !important;
  height: 14px !important;
  background-color: #0A0A0A !important;
  border-radius: 2px !important;
  transition: transform 0.25s ease, opacity 0.2s ease !important;
}

details.faq-card[open] .faq-icon-pill::after,
.faq-wrap.is-open .faq-plus {
  transform: rotate(90deg) scale(0) !important;
  opacity: 0 !important;
}

/* Answer Body */
.faq-body,
.faq-wrap.is-open .faq-answer {
  display: block !important;
  padding-top: 14px !important;
  padding-right: 20px !important;
  margin-top: 14px !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  animation: faqBodyFade 0.25s ease forwards !important;
}

.faq-wrap:not(.is-open) .faq-answer {
  display: none !important;
}

.faq-answer-text {
  font-family: var(--font-family--body, 'Inter', sans-serif) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  color: #555555 !important;
  margin: 0 !important;
  text-align: left !important;
}

@keyframes faqBodyFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 5. Universal Mobile Drawer */
.vaminos-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px 40px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.vaminos-drawer-overlay.is-active,
.vaminos-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.vaminos-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.vaminos-drawer-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 24px;
  line-height: 1;
  transition: all 0.25s ease;
}

.vaminos-drawer-close:hover {
  background: #DE322D;
  border-color: #DE322D;
}

.vaminos-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: auto 0;
  width: 100%;
}

.vaminos-drawer-link {
  font-family: var(--font-family--heading, 'Geist', 'Inter', sans-serif);
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.25s ease;
}

.vaminos-drawer-link:hover {
  color: #DE322D;
}

.vaminos-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.vaminos-drawer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.vaminos-drawer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.25s ease;
}

.vaminos-drawer-social-btn:hover {
  background: #DE322D;
  color: #FFFFFF;
  border-color: #DE322D;
}

.vaminos-drawer-cta {
  font-family: var(--font-family--heading, 'Geist', 'Inter', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  background: #DE322D;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  margin-top: 12px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(222, 50, 45, 0.4);
}

/* 6. MAIN MENU FOOTER NAVIGATION */
.footer-block {
  width: 100% !important;
}

.footer-link-block {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  width: 100% !important;
  gap: 60px !important;
}

.footer-left-block {
  max-width: 480px !important;
  width: 100% !important;
}

.footer-link-item-block {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
}

.footer-link-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  align-items: flex-end !important;
  text-align: right !important;
}

.footer-link-item .footer-link {
  font-family: var(--font-family--heading, 'Geist', 'Inter', sans-serif) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  display: inline-block !important;
  text-align: right !important;
}

.footer-link-item .footer-link:hover,
.footer-link-item .footer-link.w--current {
  color: #FFFFFF !important;
  transform: translateX(-4px) !important;
}

@media (max-width: 767px) {
  .footer-link-block {
    flex-direction: column !important;
    gap: 40px !important;
  }
  .footer-left-block {
    max-width: 100% !important;
  }
  .footer-link-item-block {
    justify-content: flex-start !important;
  }
  .footer-link-item {
    align-items: flex-start !important;
    text-align: left !important;
  }
  .footer-link-item .footer-link {
    text-align: left !important;
  }
  .footer-link-item .footer-link:hover {
    transform: translateX(4px) !important;
  }
}

/* 7. BLOGS & BLOG SINGLE VISIBILITY GUARANTEES */
.heading-style-01.blogs-title,
.hero-title-block.blogs-details h1,
.blos-info-meta,
.blogs-section,
.blogs-details-section,
.blogs-content-block,
.collection-list.blogs,
.collection-item,
.blogs-single-card,
.view-details,
.view-details-right,
.view-details-contact-wrapper,
.view-details-image-wrapper,
.blogs-details-left,
.blogs-details-right,
.others-blogs-section,
.blog-title-blog {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transform: none !important;
}

.view-details.w-richtext p,
.view-details.w-richtext h1,
.view-details.w-richtext h2,
.view-details.w-richtext h3,
.view-details.w-richtext h4,
.view-details.w-richtext ul,
.view-details.w-richtext ol,
.view-details.w-richtext li,
.view-details.w-richtext blockquote,
.view-details.w-richtext figure {
  opacity: 1 !important;
  visibility: visible !important;
  color: #0A0A0A !important;
}

/* 8. PROJECTS & WORK PAGE VISIBILITY GUARANTEES */
.projects-section,
.projects-main-block,
.projects-card-block,
.projects-card,
.projects-card-info,
.heaidng-style-01,
.career-meta.projects,
.marquee-section.projects,
.marquee-intro,
.project-details-section,
.project-details-block {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transform: none !important;
}

/* ==========================================================================
   9. 1:1 STODIO INFINITE WORK LOGO MARQUEE ANIMATION
   ========================================================================== */
.marquee-section,
.marquee-section.projects {
  overflow: hidden !important;
  width: 100% !important;
  position: relative !important;
  background-color: #FFFFFF !important;
  padding: 36px 0 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.marquee-content {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  position: relative !important;
  overflow: hidden !important;
}

.marquee-intro {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  flex-shrink: 0 !important;
  padding-right: 40px !important;
  background-color: #FFFFFF !important;
  z-index: 10 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.marquee-icon {
  width: 32px !important;
  height: 32px !important;
  animation: spin-marquee-icon 12s linear infinite !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@keyframes spin-marquee-icon {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.marquee-intro-text {
  font-family: var(--font-family--heading, 'Geist', 'Inter', sans-serif) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #0A0A0A !important;
  white-space: nowrap !important;
}

.marquee-logo-block {
  display: flex !important;
  flex-grow: 1 !important;
  overflow: hidden !important;
  position: relative !important;
  mask-image: linear-gradient(to right, transparent, black 4%, black 92%, transparent) !important;
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 92%, transparent) !important;
}

.logo-container {
  display: flex !important;
  align-items: center !important;
  gap: 50px !important;
  width: max-content !important;
  animation: marquee-scroll-infinite 25s linear infinite !important;
}

.logo-container:hover {
  animation-play-state: paused !important;
}

.logos-row {
  display: flex !important;
  align-items: center !important;
  gap: 50px !important;
  flex-shrink: 0 !important;
}

/* ==========================================================================
   UNIFORM OPTICAL CLIENT LOGO SIZING (TICKER & ABOUT CLIENT WALL)
   Auto-adjusts width & height to maintain visually balanced, uniform proportions
   ========================================================================== */
.marquee-logo,
.logos-row img {
  height: 28px !important;
  max-height: 32px !important;
  width: auto !important;
  max-width: 120px !important;
  min-width: 40px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: inline-block !important;
  vertical-align: middle !important;
  opacity: 0.88 !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
}

.marquee-logo:hover,
.logos-row img:hover {
  opacity: 1 !important;
  transform: scale(1.06) !important;
}

/* About Page Client Wall Uniform Sizing */
.logos-grid-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

.logo-grid_mask {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-height: 48px !important;
  overflow: hidden !important;
}

.logo-grid-track {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

.logo-grid_logo,
.logo-grid-track img {
  height: 42px !important;
  max-height: 44px !important;
  width: auto !important;
  max-width: 120px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  margin: 4px auto !important;
  padding: 0 4px !important;
  box-sizing: border-box !important;
  transition: transform 0.3s ease, opacity 0.3s ease !important;
}

.logos-grid-wrapper:hover .logo-grid_logo {
  transform: scale(1.05) !important;
}

@keyframes marquee-scroll-infinite {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-33.333333%, 0, 0);
  }
}

/* ==========================================================================
   PERMANENT DESTRUCTION OF WEBFLOW FLOATING BADGE
   ========================================================================== */
.w-webflow-badge,
a.w-webflow-badge,
a[href*="webflow.com?utm_campaign="],
.w-webflow-badge > img,
[class*="webflow-badge"],
[class*="w-webflow"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: fixed !important;
  top: -99999px !important;
  left: -99999px !important;
  width: 0px !important;
  height: 0px !important;
  font-size: 0px !important;
  line-height: 0px !important;
  padding: 0px !important;
  margin: 0px !important;
  border: none !important;
  box-shadow: none !important;
  z-index: -99999 !important;
  transform: scale(0) !important;
  clip: rect(0, 0, 0, 0) !important;
}
/* ==========================================================================
   INSTAGRAM POSTS SCROLL SHOWCASE (HOME PAGE)
   ========================================================================== */
.instagram-post-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #121212;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.instagram-post-card:hover {
  border-color: rgba(222, 50, 45, 0.6);
  box-shadow: 0 12px 32px rgba(222, 50, 45, 0.15), 0 0 20px rgba(225, 48, 108, 0.2);
  transform: translateY(-4px);
}

.instagram-post-card img.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-post-card:hover img.gallery-image {
  transform: scale(1.06);
}

.insta-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  z-index: 2;
  transition: all 0.3s ease;
}

.insta-badge-icon {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(10, 10, 10, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.instagram-post-card:hover .insta-card-overlay {
  opacity: 1;
  visibility: visible;
}

.insta-overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.insta-overlay-icon {
  width: 18px;
  height: 18px;
}

/* 14. Testimonial Card Quote & Icon Alignment */
.testimonial-card-body {
  position: relative !important;
}

.testimonial-card-body-text p,
.testimonial-card-body-text .heading-style-06,
.testimonial-card-body-text {
  text-indent: 38px;
}

@media screen and (max-width: 767px) {
  .testimonial-card-body-text p,
  .testimonial-card-body-text .heading-style-06,
  .testimonial-card-body-text {
    text-indent: 28px;
  }
}