.mobile-call-icon {
  display: none;
}

@media screen and (max-width: 767px) {
  .mobile-call-icon {
    display: flex;
    position: fixed;
    bottom: 5vw;
    right: 5vw;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2vw;
  }

  .scroll {
    display: none;
  }

  .process-cards-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 6vw !important;
    align-items: center !important;
  }

  .process-card {
    width: 80vw !important;
    height: 80vw !important;
    padding: 6vw !important;
  }

  .card-title {
    font-size: 5vw !important;
  }

  .card-num {
    font-size: 8vw !important;
  }
}

/* Wrapper Icon Effect */
.main-cont-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 1vw;
}

.main-cont-button .icon-wrapper-cta-first {
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1), opacity: 0.3s ease;
}

.main-cont-button .icon-wrapper-cta {
  position: absolute;
  right: 1.5vw;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1), opacity: 0.3s ease;
}

.main-cont-button:hover .icon-wrapper-cta-first {
  transform: translateX(-150%);
  opacity: 0;
}

.main-cont-button:hover .icon-wrapper-cta {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.thunder-container:hover .sun-icon,
.thunder-container.clicked .sun-icon {
  animation: fade-in-sun 1.2s ease-in-out forwards;
}

.thunder-container:hover .animated-thunder,
.thunder-container.clicked .animated-thunder {
  animation: rotate-and-fall 1.2s ease-in-out forwards;
}

@keyframes rotate-and-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: translateY(0) rotate(360deg);
    opacity: 1;
  }

  100% {
    transform: translateY(50px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes fade-in-sun {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
  }

  50% {
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.sun-icon {
  transform-origin: center;
}

.animated-thunder {
  transform-origin: center;
}

/* Mobile Styles for Services */
@media screen and (max-width: 991px) {
  .section {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }

  .about-services .w-container {
    grid-template-columns: 1fr !important;
    gap: 10vw !important;
  }

  .services-left {
    position: relative !important;
    top: 0 !important;
  }

  .services-right {
    align-items: center !important;
  }

  .service-card {
    width: 60vw !important;
    height: 60vw !important;
    padding: 5vw !important;
    border-radius: 50% !important;
  }

  .service-card h3 {
    font-size: 1.4rem !important;
  }

  .service-card p {
    font-size: 0.8rem !important;
  }
}

/* Service Image Workflow Fixes */
.mask-img-service {
  overflow: hidden !important;
  border-radius: 12px;
  background: #111;
}

.img-service {
  transition: transform 0.8s cubic-bezier(0.625, 0.05, 0, 1);
}

.service-wrapper:hover .img-service {
  transform: scale(1.1);
}

/* Mobile Nav Workflow */
@media screen and (min-width: 991px) {
  .nav-menu-mobile {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .nav-menu {
    display: none !important;
  }

  .click-scroll-text {
    font-size: 12vw !important;
  }

  .wrapper-cont-50 {
    width: 80% !important;
  }

  .pill-scroll,
  .circle-left-scroll,
  .hex-scroll {
    transform: scale(0.7);
  }
}

/* Barba Transition Fix */
.barba-container {
  width: 100%;
  min-height: 100vh;
}

/* Premium Footer */
.footer-premium {
  background-color: #ffffff;
  padding: 2vw 5vw 2vw 5vw;
  color: #111;
  position: relative;
  overflow: hidden;
  font-family: Goga, Arial, sans-serif;
  aspect-ratio: 21 / 9;
}

.footer-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

.footer-glow {
  position: absolute;
  bottom: -20vw;
  right: -10vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.15) 0%, rgba(0, 191, 255, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
}

.footer-container.pro-layout {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top-cta {
  width: 100%;
}

.footer-pro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 3vw;
}

.footer-pro-col {
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}

.pro-col-title {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1vw;
}

.footer-pro-links {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}

.pro-link-item {
  color: #111;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.pro-link-item:hover {
  color: #888;
  transform: translateX(5px);
}

.pro-text {
  color: #111;
  font-size: 1.2rem;
  line-height: 1.5;
}

.footer-bottom-bar.pro-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #888;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 2vw;
}

@media screen and (max-width: 767px) {
  .footer-premium {
    aspect-ratio: auto;
    padding: 10vw 5vw;
  }

  .footer-pro-grid {
    grid-template-columns: 1fr;
    gap: 8vw;
  }
  
  .footer-bottom-bar.pro-bottom {
    flex-direction: column;
    gap: 2vw;
    text-align: center;
  }

  .footer-huge-title span {
    font-size: 16vw;
  }

  /* Hide custom cursor on mobile */
  .cursor-jm {
    display: none !important;
  }
  
  body, a, button, [role="button"], img {
    cursor: auto !important;
  }
}

/* Custom Cursor Fix - Div-based with animation */
body, a, button, [role="button"], img {
  cursor: none !important; /* Hide default cursor */
}

.cursor-jm {
  display: flex !important; /* Ensure it's visible */
  pointer-events: none;
  z-index: 10000;
  width: 80px !important;
  height: 80px !important;
}

.cursor-jm-icon {
  opacity: 1 !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.icon-cursor {
  width: 80px !important;
  height: 80px !important;
  transition: transform 0.3s ease;
}

/* Animation on hover - Rotate, Fall and Turn Sun */
.cursor-jm.is-hovering .animated-thunder {
  animation: rotate-and-fall 1.2s ease-in-out forwards;
}

.cursor-jm.is-hovering .sun-icon {
  animation: fade-in-sun 1.2s ease-in-out forwards;
}

/* Pro Project Card Redesign (No Details) */
.project-img {
  transition: transform 0.8s cubic-bezier(0.625, 0.05, 0, 1) !important;
}

.project-item:hover .project-img {
  transform: scale(1.08);
}

.project-img-mask {
  transition: box-shadow 0.5s ease, transform 0.5s ease !important;
  border-radius: 0 !important;
}

.project-item:hover .project-img-mask {
  box-shadow: 0 15px 35px rgba(255, 188, 149, 0.15);
  transform: translateY(-5px);
}

/* Service Card Hover Animations */
.service-card {
  transition: transform 0.5s cubic-bezier(0.625, 0.05, 0, 1), box-shadow 0.5s ease, border-color 0.5s ease !important;
}

.service-card:hover {
  transform: scale(1.05);
  border-color: var(--_color---orange1) !important;
  box-shadow: 0 10px 30px rgba(255, 188, 149, 0.15);
}

.service-card svg {
  transition: transform 0.5s ease !important;
}

.service-card:hover svg {
  transform: rotate(15deg) scale(1.1);
}

.click-scroll-text .word,
.click-scroll-text .letter {
  display: inline-block;
}

/* Missing Footer Title Styles */
.footer-huge-title {
  display: flex;
  flex-direction: column;
  line-height: 0.8;
}

.footer-huge-title span {
  font-size: 8vw;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.2vw;
}

.footer-huge-title .text-stroke {
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.footer-huge-title:hover .text-stroke {
  color: #111;
  -webkit-text-stroke: 1px transparent;
}

/* Header Color Overrides */
.nav-name-jm.intro, .nav-name-jm.is-peach {
  color: #ffffff !important; /* Orange into White */
}

.dot-jm.intro {
  background-color: #ffffff !important; /* Orange into White */
}

.icon-cursor.animated-thunder {
  fill: #ffffff !important; /* Orange into White */
}

/* Nav Social Links Color Overrides */
.nav-social-link {
  color: #888 !important; /* Grey by default */
}

.nav-social-link:hover {
  color: #ffffff !important; /* White on hover */
  background-color: rgba(255, 255, 255, 0.1) !important;
}

