/* Contact page specific styles */

/* Contact hero section */
.contact-hero {
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-hero-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  text-align: center;
}

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact form */
.contact-form-container {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 2rem;
  color: hsl(var(--card-foreground));
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: hsl(var(--foreground));
  background-color: hsl(var(--input));
  background-clip: padding-box;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

textarea.form-control {
  resize: vertical;
  line-height: 1.6;
  padding: 1rem;
}

.form-control:focus {
  border-color: hsl(var(--primary));
  outline: 0;
  box-shadow: 0 0 0 2px hsla(var(--primary), 0.2);
}

.form-control::placeholder {
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
}

textarea.message-textarea {
  height: auto;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: none;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  text-decoration: none;
  margin-top: 1rem;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: hsl(var(--primary-hover, var(--primary)));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 2rem;
  color: hsl(var(--card-foreground));
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-info-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.contact-info-content {
  flex: 1;
}

.contact-info-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 500;
}

.contact-info-value a {
  color: hsl(var(--primary));
  text-decoration: none;
}

.contact-info-value a:hover {
  text-decoration: underline;
}

/* Availability section */
.availability-section {
  margin-top: 2rem;
}

.availability-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.availability-text {
  font-size: 0.95rem;
  color: hsl(var(--card-foreground));
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Social links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: hsl(var(--muted));
  color: hsl(var(--foreground));
  transition: all 0.2s ease;
}

.social-link:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  transform: translateY(-3px);
}

/* Map */
.contact-map {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
  border: 1px solid hsl(var(--border));
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Thank you page */
.thank-you-container {
  max-width: 700px;
  margin: 4rem auto;
  text-align: center;
  padding: 3rem;
  background-color: rgba(30, 30, 40, 0.6);
  border-radius: 0.5rem;
}

.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(138, 75, 255, 0.15);
  color: hsl(var(--primary));
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.thank-you-message {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-outline {
  background-color: transparent;
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary));
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: rgba(138, 75, 255, 0.15);
  transform: translateY(-2px);
}

/* FAQ section */
.faq-section {
  margin-top: 5rem;
}

.faq-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.accordion {
  margin-bottom: 2rem;
}

.accordion-item {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  background-color: hsl(var(--card));
  padding: 0;
  margin: 0;
}

.accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  background-color: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}

.accordion-button:focus {
  outline: none;
}

.accordion-button::after {
  content: '+';
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.accordion-button[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.accordion-body {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid hsl(var(--border));
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}
