/* ============================================
   MONLIS Website - Service CTA Banner
   Studio locations call to action
   Figma node: 18:3979
   ============================================ */

/* ==========================================
   SECTION CONTAINER
   ========================================== */
.service-cta {
  width: 100%;
  height: 385px;
  position: relative;
  overflow: hidden;
}

.service-cta__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-cta__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.service-cta__content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.service-cta__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 48px;
}

/* ==========================================
   TITLE
   Figma: Montserrat SemiBold 42px
   ========================================== */
.service-cta__title {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 42px;
  line-height: 52.5px;
  letter-spacing: -0.5px;
  color: var(--color-white);
  text-align: center;
  margin: 0;
  max-width: 636px;
}

/* ==========================================
   LOCATION BUTTONS
   ========================================== */
.service-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.service-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55.5px;
  padding: 0 58px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 9999px;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-white);
  transition: all 0.3s ease;
}

.service-cta__btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1400px) {
  .service-cta__container {
    padding: 0 80px;
  }
}

@media (max-width: 1024px) {
  .service-cta__container {
    padding: 0 48px;
  }
  
  .service-cta__title {
    font-size: 36px;
    line-height: 46px;
  }
  
  .service-cta__btn {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .service-cta {
    height: auto;
    min-height: 350px;
  }
  
  .service-cta__container {
    padding: 48px 20px;
    gap: 32px;
  }
  
  .service-cta__title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .service-cta__buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .service-cta__btn {
    width: 100%;
    max-width: 260px;
    height: 48px;
    padding: 0 32px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .service-cta__title {
    font-size: 24px;
    line-height: 32px;
  }
  
  .service-cta__btn {
    height: 44px;
    font-size: 11px;
  }
}
