/* Contact Form Modal Styles */
.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-50 {
  z-index: 50;
}

.flex {
  display: flex;
}

.hidden {
  display: none;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.absolute {
  position: absolute;
}

.bg-black {
  background-color: #000;
}

.opacity-50 {
  opacity: 0.5;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.w-full {
  width: 100%;
}

.max-w-md {
  max-width: 28rem;
}

.p-6 {
  padding: 1.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.bg-white {
  background-color: #fff;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Form Styles */
.space-y-4 > * + * {
  margin-top: 1rem;
}

.block {
  display: block;
}

.text-sm {
  font-size: 0.875rem;
}

.font-medium {
  font-weight: 500;
}

.text-gray-700 {
  color: #4a5568;
}

.mt-1 {
  margin-top: 0.25rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.border {
  border-width: 1px;
}

.border-gray-300 {
  border-color: #e2e8f0;
}

.rounded-md {
  border-radius: 0.375rem;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-wave-500:focus {
  --tw-ring-color: #0069ff;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:border-wave-500:focus {
  border-color: #0069ff;
}

/* Success Message Styles */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1rem;
}

.bg-green-100 {
  background-color: #f0fff4;
}

.text-green-600 {
  color: #38a169;
}

.text-gray-900 {
  color: #1a202c;
}

.text-gray-500 {
  color: #718096;
}

/* Close Button Styles */
.absolute.top-4.right-4 {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.text-gray-400 {
  color: #a0aec0;
}

.hover\:text-gray-600:hover {
  color: #718096;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 640px) {
  .p-6 {
    padding: 1rem;
  }
  
  .text-xl {
    font-size: 1.125rem;
  }
  
  /* Make inputs larger on mobile for better touch targets */
  input, select, textarea, button {
    font-size: 16px !important; /* Prevents iOS from zooming in */
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}

/* Ensure the modal is scrollable on small screens */
@media (max-height: 700px) {
  #contactFormModal .relative.z-10 {
    max-height: 90vh;
    overflow-y: auto;
  }
} 