/* Index Page Specific Styles */

/* Intro Section */
.intro-highlight {
  transition: all 0.5s ease;
}

.intro-highlight:hover .highlight-icon {
  background: var(--color-accent);
}

/* Trust Section */
.trust-card {
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(139, 94, 60, 0.1);
  filter: blur(120px);
  border-radius: 50%;
  transform: translate(25%, -25%);
}

/* Join Section Cards */
.join-card {
  position: relative;
  overflow: hidden;
}

.join-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #1A1A1A, rgba(26,26,26,0.3), transparent);
  z-index: 1;
}

.join-card img {
  transition: all 1s ease;
  filter: grayscale(1);
  opacity: 0.4;
}

.join-card:hover img {
  transform: scale(1.1);
  filter: grayscale(0);
  opacity: 0.6;
}

/* FAQ Section */
.faq-item {
  border-radius: 32px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.7s ease;
}

.faq-item:hover {
  border-color: rgba(0,0,0,0.2);
}

.faq-item.active {
  background: white;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-input {
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  background: transparent;
  font-weight: bold;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-input:focus {
  border-bottom-color: var(--color-accent);
}

/* Footer Hero */
.footer-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 6rem;
}

.footer-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
