/* Support/Contact Popup Styles - Wait n' Rest Design */
.support-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.support-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.support-modal {
  width: 100%;
  max-width: 520px;
  background-color: #F9F6ED;
  border-radius: 0.625vw;
  overflow: hidden;
  box-shadow: 0px 6px 6px -6px rgba(0, 0, 0, 0.16), 0px 0px 1px rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.support-popup-overlay.active .support-modal {
  transform: scale(1);
}

.support-modal-header {
  background: #6F6B4D;
  padding: 2.5vw 2.2vw;
  text-align: center;
  position: relative;
}

.support-modal-close {
  position: absolute;
  top: 1.2vw;
  right: 1.2vw;
  width: 2vw;
  height: 2vw;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.support-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.support-modal-close svg {
  width: 1vw;
  height: 1vw;
  stroke: #F9F6ED;
  stroke-width: 2.5;
}

.support-modal-header h2 {
  font-size: 1.5vw;
  font-weight: 700;
  color: #F9F6ED;
  margin: 0 0 0.5vw 0;
  font-family: 'Red Hat Display', sans-serif;
  letter-spacing: -0.02em;
}

.support-modal-header p {
  font-size: 0.9vw;
  color: rgba(249, 246, 237, 0.85);
  margin: 0;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 400;
}

.support-modal-body {
  padding: 2.5vw 2.2vw;
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
  background: #F9F6ED;
}

.support-option {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  padding: 1.4vw 1.6vw;
  border: 0.078125vw solid #000000;
  border-radius: 0.625vw;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #FFFFFF;
}

.support-option:hover {
  border-color: #6F6B4D;
  background: #FAFAF8;
  transform: translateY(-0.15vw);
  box-shadow: 0px 4px 8px rgba(111, 107, 77, 0.15);
}

.support-option-icon {
  width: 3.2vw;
  height: 3.2vw;
  border-radius: 0.625vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #F9F6ED;
}

.support-option-icon.whatsapp {
  background: #F9F6ED;
}

.support-option-icon.email {
  background: #F9F6ED;
}

.support-option-icon svg {
  width: 1.6vw;
  height: 1.6vw;
}

.support-option-icon.whatsapp svg {
  fill: #25D366;
}

.support-option-icon.email svg {
  fill: #6F6B4D;
}

.support-option-content {
  flex: 1;
}

.support-option-title {
  font-size: 1.1vw;
  font-weight: 600;
  color: #000000;
  margin: 0 0 0.25vw 0;
  font-family: 'Red Hat Display', sans-serif;
  letter-spacing: -0.01em;
}

.support-option-description {
  font-size: 0.85vw;
  color: #595D62;
  margin: 0;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 400;
}

.support-option-arrow {
  width: 1.2vw;
  height: 1.2vw;
  flex-shrink: 0;
}

.support-option-arrow svg {
  width: 100%;
  height: 100%;
  stroke: #AAA18C;
  transition: all 0.25s ease;
  stroke-width: 2;
}

.support-option:hover .support-option-arrow svg {
  stroke: #6F6B4D;
  transform: translateX(0.2vw);
}

/* Responsive */
@media (max-width: 1024px) {
  .support-modal {
    max-width: 85%;
    border-radius: 12px;
  }

  .support-modal-header {
    padding: 24px 20px;
  }

  .support-modal-close {
    width: 32px;
    height: 32px;
    top: 16px;
    right: 16px;
  }

  .support-modal-close svg {
    width: 14px;
    height: 14px;
  }

  .support-modal-header h2 {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .support-modal-header p {
    font-size: 14px;
  }

  .support-modal-body {
    padding: 24px 20px;
    gap: 14px;
  }

  .support-option {
    padding: 16px;
    gap: 16px;
    border-radius: 10px;
  }

  .support-option-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }

  .support-option-icon svg {
    width: 26px;
    height: 26px;
  }

  .support-option-title {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .support-option-description {
    font-size: 13px;
  }

  .support-option-arrow {
    width: 18px;
    height: 18px;
  }

  .support-option:hover {
    transform: translateY(-2px);
  }

  .support-option:hover .support-option-arrow svg {
    transform: translateX(3px);
  }
}

@media (max-width: 768px) {
  .support-modal {
    max-width: 92%;
  }

  .support-modal-header {
    padding: 20px 18px;
  }

  .support-modal-header h2 {
    font-size: 20px;
  }

  .support-modal-header p {
    font-size: 13px;
  }

  .support-modal-body {
    padding: 20px 18px;
    gap: 12px;
  }

  .support-option {
    padding: 14px;
    gap: 14px;
  }

  .support-option-icon {
    width: 46px;
    height: 46px;
  }

  .support-option-icon svg {
    width: 24px;
    height: 24px;
  }

  .support-option-title {
    font-size: 15px;
  }

  .support-option-description {
    font-size: 12px;
  }
}
