/* Contact Us Page Styles */

/* Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #5E2C91 0%, #B704F6 100%);
  padding: 2rem 2rem;
  text-align: center;
  color: white;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #FFFFFF;
  text-align: center;
}

.contact-hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.75;
  margin: 0;
  color: #F3E8FF;
}

/* Main Content */
.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-info-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(183, 4, 246, 0.15);
}

.contact-info-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #F3E8FF 0%, #FBEFFF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.contact-info-icon img {
  width: 32px;
  height: 32px;
    filter: brightness(0) saturate(100%) invert(24%) sepia(85%) saturate(5421%) hue-rotate(272deg) brightness(94%) contrast(102%);
}

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #141414;
  margin: 0 0 0.75rem 0;
  text-align: center;
}

.contact-info-text {
  font-size: 1rem;
  color: #525252;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.contact-info-subtext {
  font-size: 0.875rem;
  color: #737373;
  margin: 0;
}

/* Contact Form Section */
.contact-form-section {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #141414;
  margin: 0 0 0.5rem 0;
  text-align: center;
}

.contact-form-subtitle {
  font-size: 1rem;
  color: #737373;
  margin: 0 0 2rem 0;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-input {
  width: 100%;
}

/* Form Group for Textarea */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #141414;
  margin: 0;
}

.form-textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-family: 'PlusJakartaSans', sans-serif;
  font-size: 1rem;
  color: #141414;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: #B704F6;
  box-shadow: 0 0 0 3px rgba(183, 4, 246, 0.1);
}

.form-textarea.error {
  border-color: #DC2626;
}

.form-textarea::placeholder {
  color: #9DA4AE;
}

.error-text {
  font-size: 0.875rem;
  color: #DC2626;
  margin: 0;
}

/* Success Message */
.success-message {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Submit Button */
.contact-submit-button button {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.contact-submit-button.disabled button {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Country Code Prefix */
.country-code-prefix {
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  color: #525252;
  font-weight: 600;
  border-right: 1px solid #E0E0E0;
}

/* Responsive Styles */

/* Tablet - 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {
  .contact-hero {
    padding: 3rem 1.5rem;
  }

  .contact-hero-title {
    font-size: 2rem;
  }

  .contact-hero-subtitle {
    font-size: 1rem;
  }

  .contact-content {
    padding: 2.5rem 1.5rem;
  }

  .contact-form-section {
    padding: 2.5rem;
  }

  .contact-info-grid {
    gap: 1.5rem;
  }
}

/* Mobile - 767px and below */
@media (max-width: 767px) {
  .contact-hero {
    padding: 2.5rem 1rem;
  }

  .contact-hero-title {
    font-size: 1.75rem;
  }

  .contact-hero-subtitle {
    font-size: 0.9375rem;
  }

  .contact-content {
    padding: 2rem 1rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .contact-info-card {
    padding: 1.5rem;
  }

  .contact-form-section {
    padding: 2rem 1.5rem;
  }

  .contact-form-title {
    font-size: 1.5rem;
  }

  .contact-form-subtitle {
    font-size: 0.9375rem;
  }

  .contact-form {
    gap: 1.25rem;
  }

  .contact-form > div[style*="display"] {
    flex-direction: column !important;
    gap: 1.25rem !important;
  }
}

/* Mobile Small - 479px and below */
@media (max-width: 479px) {
  .contact-hero {
    padding: 2rem 1rem;
  }

  .contact-hero-title {
    font-size: 1.5rem;
  }

  .contact-hero-subtitle {
    font-size: 0.875rem;
  }

  .contact-content {
    padding: 1.5rem 0.875rem;
  }

  .contact-info-card {
    padding: 1.25rem;
  }

  .contact-info-icon {
    width: 56px;
    height: 56px;
  }

  .contact-info-icon img {
    width: 28px;
    height: 28px;
  }

  .contact-form-section {
    padding: 1.5rem 1rem;
  }

  .contact-form-title {
    font-size: 1.375rem;
  }

  .form-textarea {
    font-size: 0.9375rem;
  }
}
