@media (max-width: 767px) {
  .contact-card-toggle-btn {
    display: block;
    margin: 0 auto 16px auto;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s;
    z-index: 1002;
    position: fixed;
    left: 16px;
    top: 16px;
  }
  .contact-card-toggle-btn.open {
    transform: rotate(90deg);
    background: #0056b3;
  }
  .contact-card-simple {
    display: none;
    position: fixed;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 1001;
    width: 90vw;
    max-width: 350px;
    /* animation: fadeInDown 0.4s; */
  }
  .contact-card-simple.open {
    display: block;
    /* animation: fadeInDown 0.4s; */
  }
}
@media (min-width: 768px) {
  .contact-card-toggle-btn {
    display: none !important;
  }
  .contact-card-simple {
    display: block !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 350px;
  }
}
.contact-card-simple div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 24px 20px;
  max-width: 350px;
  margin: auto;
}
.contact-card-simple h4 {
  color: #222;
  font-weight: 600;
  margin-bottom: 18px;
  text-align: center;
}
.contact-card-simple input {
  color: #222 !important;
  border: 1px solid #ddd !important;
}

.contact-card-simple input::placeholder {
  color: #aaa !important;
}
.contact-card-simple form button {
  background: var(--btn-bg);
  color: #fff;
  font-weight: 500;
  border-radius: 6px;
}
[data-lastpass-icon-root] {
  display: none !important;
}

.slider-title-block {
  padding: 1.5rem 0;
}
.slider-title {
  font-size: 2.2rem;
  font-weight: 700;
}
.slider-subtitles {
  width: fit-content;
}
.slider-subtitles li {
  margin-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .slider-title {
    font-size: 1.4rem;
    text-align: center;
  }
  .slider-subtitles {
    font-size: 0.95rem;
    text-align: center;
  }
  .slider-title-block {
    padding: 1rem 0 0.5rem 0;
  }
  .contact-toggle-fixed-mobile {
    position: fixed;
    left: 4vw;
    top: 80px;
    z-index: 9999;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    background: #fff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    margin-bottom: 0;
  }
  .contact-toggle-fixed-mobile #toggleIcon {
    font-size: 2rem;
    color: #007bff;
  }
}
/* Web mode only */
@media (min-width: 768px) {
  /* Title */
  .slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(30px);
    animation: sliderTitleUp 1s ease forwards;
  }

  @keyframes sliderTitleUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* List items */
  .slider-subtitles li {
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.35); /* subtle dark overlay */
    padding: 6px 14px;
    margin-bottom: 8px;
    border-radius: 6px;
    color: #fff;
    backdrop-filter: blur(2px); /* adds premium frosted effect */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);

    opacity: 0;
    transform: translateX(-20px);
    animation: sliderListFade 0.8s ease forwards;
  }

  /* Staggered animation delays */
  .slider-subtitles li:nth-child(1) {
    animation-delay: 0.3s;
  }
  .slider-subtitles li:nth-child(2) {
    animation-delay: 0.6s;
  }
  .slider-subtitles li:nth-child(3) {
    animation-delay: 0.9s;
  }
  .slider-subtitles li:nth-child(4) {
    animation-delay: 1.2s;
  }
  .slider-subtitles li:nth-child(5) {
    animation-delay: 1.5s;
  }

  @keyframes sliderListFade {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

.golden-title-animated {
  display: inline-block;
  background: linear-gradient(90deg, #f9d423 0%, #ff4e50 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: 1px;
  animation: shimmer 2s infinite linear;
  position: relative;
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}
.golden-title-animated {
  background-size: 400px 100%;
}
