/* World Clocks Section */
section.mf-world-clocks {
  background-color: #0A1628 !important;
  padding: 100px 0 110px !important;
  text-align: center !important;
  overflow: hidden !important;
}
section.mf-world-clocks .mf-world-clocks__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
section.mf-world-clocks .section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D4A574 !important;
  display: block;
  margin-bottom: 14px;
}
section.mf-world-clocks .mf-world-clocks__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(32px, 4vw, 58px) !important;
  font-weight: 300 !important;
  color: #FFFEF9 !important;
  line-height: 1.2 !important;
  margin: 14px 0 20px !important;
}
section.mf-world-clocks .mf-world-clocks__title em {
  font-style: italic !important;
  color: #D4A574 !important;
}
section.mf-world-clocks .mf-world-clocks__sub {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  color: rgba(255,254,249,0.5) !important;
  line-height: 1.8 !important;
  max-width: 520px;
  margin: 0 auto 64px !important;
  letter-spacing: 0.02em;
}
section.mf-world-clocks .mf-clocks-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 40px 50px !important;
}
section.mf-world-clocks .mf-clock {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 14px !important;
}
section.mf-world-clocks .mf-clock__city {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: rgba(255,254,249,0.65) !important;
  margin: 0 !important;
  padding: 0 !important;
}
section.mf-world-clocks .mf-clock__face {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  background: #0F1E33 !important;
  border: 1.5px solid rgba(212,165,116,0.3) !important;
  position: relative !important;
  box-shadow: 0 0 0 6px rgba(212,165,116,0.06), inset 0 0 20px rgba(0,0,0,0.4) !important;
}
section.mf-world-clocks .mf-clock__ring {
  position: absolute !important;
  inset: 6px !important;
  border-radius: 50% !important;
  border: 0.5px solid rgba(212,165,116,0.15) !important;
  pointer-events: none !important;
}
section.mf-world-clocks .mf-clock__hand {
  position: absolute !important;
  bottom: 50% !important;
  left: 50% !important;
  transform-origin: bottom center !important;
  border-radius: 2px !important;
}
section.mf-world-clocks .mf-clock__hand--hour {
  width: 2px !important;
  height: 30px !important;
  background: #FFFEF9 !important;
  margin-left: -1px !important;
  opacity: 0.9 !important;
}
section.mf-world-clocks .mf-clock__hand--minute {
  width: 1.5px !important;
  height: 40px !important;
  background: #D4A574 !important;
  margin-left: -0.75px !important;
}
section.mf-world-clocks .mf-clock__hand--second {
  width: 1px !important;
  height: 44px !important;
  background: #C0392B !important;
  margin-left: -0.5px !important;
  margin-bottom: -4px !important;
}
section.mf-world-clocks .mf-clock__center {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 7px !important;
  height: 7px !important;
  background: #D4A574 !important;
  border-radius: 50% !important;
  transform: translate(-50%,-50%) !important;
  z-index: 3 !important;
}
section.mf-world-clocks .mf-clock__time {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  letter-spacing: 2px !important;
  color: #D4A574 !important;
  margin: 0 !important;
  padding: 0 !important;
}
@media (max-width: 768px) {
  section.mf-world-clocks { padding: 70px 0 80px !important; }
  section.mf-world-clocks .mf-clocks-grid { gap: 32px 36px !important; }
  section.mf-world-clocks .mf-clock__face { width: 96px !important; height: 96px !important; }
  section.mf-world-clocks .mf-clock__hand--hour { height: 24px !important; }
  section.mf-world-clocks .mf-clock__hand--minute { height: 32px !important; }
  section.mf-world-clocks .mf-clock__hand--second { height: 36px !important; }
}

/* =========================================
   PROCESS SECTION — STEP IMAGES
   ========================================= */
.mf-step__img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
  margin: 20px 0 24px;
  aspect-ratio: 4 / 3;
}

.mf-step__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mf-step:hover .mf-step__img {
  transform: scale(1.04);

/* =========================================
   PROCESS — ROLEX-STYLE FULL-WIDTH CARDS
   ========================================= */

/* Entry animation keyframes */
@keyframes mf-card-rise {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mf-process {
  background: #FFFEF9;
  padding: 0;
  overflow: hidden;
  width: 100%;
}

.mf-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  height: 600px;
  gap: 0;
}

/* Each card starts invisible — JS adds .mf-card-visible to trigger animation */
.mf-process__card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0s, transform 0s;
}

.mf-process__card.mf-card-visible {
  animation: mf-card-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Staggered delays */
.mf-process__card:nth-child(1).mf-card-visible { animation-delay: 0s; }
.mf-process__card:nth-child(2).mf-card-visible { animation-delay: 0.12s; }
.mf-process__card:nth-child(3).mf-card-visible { animation-delay: 0.24s; }
.mf-process__card:nth-child(4).mf-card-visible { animation-delay: 0.36s; }

.mf-process__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mf-process__card:hover img {
  transform: scale(1.05);
}

/* Thin vertical divider between cards */
.mf-process__card + .mf-process__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 254, 249, 0.18);
  z-index: 2;
}

/* Gradient: light at top-right, dark at bottom-left — like the screenshot */
.mf-process__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(10, 22, 40, 0.05) 0%,
    rgba(10, 22, 40, 0.15) 40%,
    rgba(10, 22, 40, 0.72) 80%,
    rgba(10, 22, 40, 0.88) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px 32px;
  transition: background 0.5s ease;
  z-index: 1;
}

.mf-process__card:hover .mf-process__card-overlay {
  background: linear-gradient(
    165deg,
    rgba(10, 22, 40, 0.1) 0%,
    rgba(10, 22, 40, 0.25) 35%,
    rgba(10, 22, 40, 0.82) 75%,
    rgba(10, 22, 40, 0.95) 100%
  );
}

.mf-process__card-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255, 254, 249, 0.7);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
  transition: color 0.3s ease;
}

.mf-process__card:hover .mf-process__card-num {
  color: #D4A574;
}

.mf-process__card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 1.6vw, 26px);
  font-weight: 400;
  color: #FFFEF9;
  line-height: 1.2;
  margin: 0 0 0 0;
  transition: margin 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mf-process__card:hover .mf-process__card-title {
  margin-bottom: 10px;
}

/* Description slides up on hover */
.mf-process__card-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 254, 249, 0.78);
  line-height: 1.75;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition:
    max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease 0.05s,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mf-process__card:hover .mf-process__card-desc {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

/* Thin gold bottom border on hover */
.mf-process__card-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4A574;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mf-process__card:hover .mf-process__card-overlay::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .mf-process__grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .mf-process__card {
    height: 340px;
  }
  .mf-process__card + .mf-process__card::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .mf-process__grid {
    grid-template-columns: 1fr;
  }
  .mf-process__card {
    height: 280px;
  }
  .mf-process__card-desc {
    max-height: 120px;
    opacity: 1;
    transform: none;
  }
}
