/* ========================================
   UNNATI CONTACT PAGE - CLEAN & SIMPLE
   "We Are Listening"
   ======================================== */

/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ========================================
   SIMPLE ANIMATIONS
   ======================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.unnati-contact-section {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE8CC 100%);
  position: relative;
}

.unnati-contact-section .container {
  max-width: 650px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   HEADER
   ======================================== */

.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
  animation: fadeIn 0.6s ease-out;
}

.contact-header .section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #FF6F00, #F57C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.contact-header .section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #546E7A;
  line-height: 1.6;
}

/* ========================================
   FORM - COMPACT DESIGN
   ======================================== */

.contact-form {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 30px rgba(255, 111, 0, 0.1);
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255, 111, 0, 0.1);
  animation: fadeIn 0.6s ease-out 0.1s backwards;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group:last-of-type {
  margin-bottom: 2rem;
}

.form-group label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #37474F;
  display: block;
  margin-bottom: 0.5rem;
}

.label-hindi {
  font-weight: 400;
  color: #FF6F00;
  font-style: italic;
  margin-left: 0.25rem;
  font-size: 0.875rem;
}

.label-optional {
  font-weight: 400;
  color: #90A4AE;
  font-size: 0.8125rem;
  font-style: italic;
}

.form-group input,
.form-group textarea {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #E0E0E0;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #37474F;
  background: #FAFAFA;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF6F00;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0BEC5;
  font-style: italic;
}

/* ========================================
   SUBMIT BUTTON
   ======================================== */

.btn-saffron {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  width: 100%;
  padding: 1rem 1.75rem;
  background: linear-gradient(135deg, #FF6F00, #F57C00);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
  margin-bottom: 1rem;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-saffron:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
}

.btn-saffron:active {
  transform: translateY(0);
}

.btn-saffron.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-saffron .icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.btn-saffron:hover .icon {
  transform: translateX(4px);
}

/* ========================================
   PRIVACY NOTE
   ======================================== */

.privacy-note {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #2E7D32;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(46, 125, 50, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(46, 125, 50, 0.2);
  margin: 0;
}

.privacy-note svg {
  flex-shrink: 0;
  color: #2E7D32;
}

/* ========================================
   FORM MESSAGE
   ======================================== */

.unnati-form-message {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
}

.unnati-form-message.success {
  display: block;
  background: rgba(46, 125, 50, 0.1);
  color: #1B5E20;
  border: 1px solid rgba(46, 125, 50, 0.3);
}

.unnati-form-message.error {
  display: block;
  background: rgba(211, 47, 47, 0.1);
  color: #B71C1C;
  border: 1px solid rgba(211, 47, 47, 0.3);
}

/* ========================================
   CONTACT INFO CARDS
   ======================================== */

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  animation: fadeIn 0.6s ease-out 0.2s backwards;
}

.contact-info-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 111, 0, 0.1);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 111, 0, 0.15);
}

.info-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 111, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #FF6F00;
}

.info-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #37474F;
  margin-bottom: 0.5rem;
}

.info-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: #FF6F00;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: #F57C00;
  text-decoration: underline;
}

.info-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #78909C;
  line-height: 1.5;
  margin: 0.25rem 0;
}

.info-text strong {
  font-weight: 600;
  color: #546E7A;
}

/* ========================================
   SPECIAL INQUIRIES
   ======================================== */

.special-inquiries {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 111, 0, 0.1);
  animation: fadeIn 0.6s ease-out 0.3s backwards;
}

.inquiries-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #37474F;
  margin-bottom: 1.25rem;
  text-align: center;
}

.inquiries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.inquiry-item {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #546E7A;
  text-align: center;
}

.inquiry-item strong {
  font-weight: 600;
  color: #37474F;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.inquiry-item a {
  color: #FF6F00;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.3s ease;
}

.inquiry-item a:hover {
  color: #F57C00;
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .unnati-contact-section {
    padding: 4rem 0 3rem;
  }

  .contact-header .section-title {
    font-size: 2rem;
  }

  .contact-header .section-subtitle {
    font-size: 1rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .inquiries-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .inquiry-item {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .unnati-contact-section {
    padding: 3rem 0 2.5rem;
  }

  .unnati-contact-section .container {
    padding: 0 1rem;
  }

  .contact-header {
    margin-bottom: 2rem;
  }

  .contact-header .section-title {
    font-size: 1.75rem;
  }

  .contact-header .section-subtitle {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 1.75rem 1.25rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem 0.875rem;
    font-size: 0.9rem;
  }

  .btn-saffron {
    font-size: 0.95rem;
    padding: 0.875rem 1.5rem;
  }

  .privacy-note {
    font-size: 0.8125rem;
    flex-direction: column;
    padding: 0.75rem;
  }

  .contact-info-card {
    padding: 1.5rem 1rem;
  }

  .info-icon {
    width: 48px;
    height: 48px;
  }

  .special-inquiries {
    padding: 1.5rem 1.25rem;
  }

  .inquiries-title {
    font-size: 1rem;
  }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.btn-saffron:focus-visible,
.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: 3px solid #FF6F00;
  outline-offset: 2px;
}
