/* Contact Page Specific Styles */
.contact-hero {
  background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 100%);
  padding: 4rem 0;
  text-align: center;
}

.contact-hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-hero .hero-content p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Information */
.contact-info-section {
  padding: 4rem 0;
  background: var(--background);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

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

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-card small {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Contact Form */
.contact-form-section {
  padding: 4rem 0;
  background: var(--secondary);
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  border-radius: calc(var(--radius) * 2);
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.form-header p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: var(--foreground);
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--background);
  transition: all 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

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

/* Checkbox Style */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.checkbox-label input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Loading Button */
.btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.loading-spinner {
  width: 1rem;
  height: 1rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background: var(--background);
}

.map-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 3rem;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
}

.map-placeholder {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  border: 2px dashed var(--border);
}

.map-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.map-content p {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.map-content .btn {
  margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: var(--secondary);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero .hero-content h1 {
    font-size: 2rem;
  }

  .contact-hero .hero-content p {
    font-size: 1rem;
  }

  .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

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

  .form-header h2 {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .map-section h2,
  .faq-section h2 {
    font-size: 2rem;
  }

  .map-placeholder {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 2rem 0;
  }

  .contact-info-section,
  .contact-form-section,
  .map-section,
  .faq-section {
    padding: 2rem 0;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-icon {
    font-size: 2.5rem;
  }

  .contact-form-container {
    padding: 1.5rem 1rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .faq-item h3 {
    font-size: 1.125rem;
  }
}

/* Animation for contact elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-card {
  animation: fadeInUp 0.6s ease-out;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }
.contact-card:nth-child(4) { animation-delay: 0.4s; }

.faq-item {
  animation: fadeInUp 0.6s ease-out;
}

.faq-item:nth-child(1) { animation-delay: 0.5s; }
.faq-item:nth-child(2) { animation-delay: 0.6s; }
.faq-item:nth-child(3) { animation-delay: 0.7s; }
.faq-item:nth-child(4) { animation-delay: 0.8s; }
