/* ===================================
   Contact Page Styles
   =================================== */

/* Hero */
.contact-hero {
  background: linear-gradient(
    135deg,
    var(--dark-green) 0%,
    var(--secondary-green) 100%
  );
  padding: 5rem 0 4rem;
  text-align: center;
  color: var(--white);
}

.contact-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Info Cards */
.contact-info-section {
  padding: 3rem 0;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--white);
}

.contact-card h5 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-medium);
  margin-bottom: 0;
  font-size: var(--font-size-sm);
}

/* Form Section */
.contact-form-section {
  padding: 3rem 0 5rem;
}

.form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.form-subtitle {
  color: var(--text-medium);
  margin-bottom: 1.75rem;
  font-size: var(--font-size-sm);
}

.form-wrapper .form-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: var(--font-size-sm);
}

.form-wrapper .form-control {
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  padding: 0.65rem 0.9rem;
  font-size: var(--font-size-sm);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-wrapper .form-control:focus {
  border-color: var(--dark-green);
  box-shadow: 0 0 0 3px rgba(100, 140, 81, 0.15);
}

.btn-contact-submit {
  background: linear-gradient(
    135deg,
    var(--dark-green),
    var(--secondary-green)
  );
  color: var(--white);
  border: none;
  padding: 0.75rem 2.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  width: 100%;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(100, 140, 81, 0.4);
  color: var(--white);
}

.btn-contact-submit i {
  margin-inline-end: 0.5rem;
}

/* Side Info */
.side-info-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.side-info-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.side-info-text {
  color: var(--text-medium);
  font-size: var(--font-size-sm);
  margin-bottom: 1.5rem;
}

/* Social Links */
.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: var(--white);
}

.social-link i {
  font-size: 1.3rem;
}

.social-link.whatsapp {
  background: #25d366;
}

.social-link.telegram {
  background: #0088cc;
}

.social-link.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-link.youtube {
  background: #ff0000;
}

/* FAQ Mini */
.faq-mini h4 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--secondary-green);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--text-dark);
  user-select: none;
}

.faq-question i {
  font-size: 0.75rem;
  color: var(--text-medium);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1rem 0.85rem;
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--text-medium);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991.98px) {
  .contact-hero {
    padding: 3.5rem 0 3rem;
  }

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

  .form-wrapper,
  .side-info-wrapper {
    padding: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .contact-hero-title {
    font-size: 1.6rem;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .form-wrapper,
  .side-info-wrapper {
    padding: 1.25rem;
  }
}
