/* ==========================================================================
   LUX WEAR - Community Groups & Contact Support Stylesheet
   ========================================================================== */

/* Community Hero Banner */
.groups-hero-box {
  background: radial-gradient(circle at 50% 30%, rgba(197, 155, 115, 0.15) 0%, transparent 70%),
              var(--grad-dark-card);
  border: 1px solid var(--border-copper-bright);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-card), var(--glow-copper);
}

.groups-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--copper-400);
  color: #000;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

/* Groups Cards Grid */
.groups-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .groups-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .groups-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.group-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.25rem 1.75rem;
}

.group-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.group-platform-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--tr-fast);
}

.platform-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25d366;
}

.platform-telegram {
  background: rgba(0, 136, 204, 0.12);
  border: 1px solid rgba(0, 136, 204, 0.35);
  color: #29b6f6;
}

.platform-instagram {
  background: rgba(225, 48, 108, 0.12);
  border: 1px solid rgba(225, 48, 108, 0.35);
  color: #e1306c;
}

.platform-facebook {
  background: rgba(24, 119, 242, 0.12);
  border: 1px solid rgba(24, 119, 242, 0.35);
  color: #1877f2;
}

.platform-tiktok {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.group-member-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(197, 155, 115, 0.15);
  border: 1px solid var(--border-copper);
  color: var(--copper-200);
}

.group-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.group-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.group-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.group-perks li {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.group-perks li i {
  color: var(--copper-400);
  font-size: 0.8rem;
}

/* Symmetrical and perfectly matching actions */
.group-actions-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.group-actions-wrap .btn-lux-primary {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.85rem 1.25rem;
  font-size: 0.92rem;
}

.group-actions-wrap .btn-copy-link {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

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

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

/* Contact Form Box */
.contact-form-box {
  padding: 2.5rem;
}

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

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--copper-200);
  margin-bottom: 0.5rem;
}

.form-control-lux {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-copper-subtle);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  color: var(--text-white);
  font-family: var(--font-ar);
  font-size: 0.95rem;
  outline: none;
  transition: var(--tr-fast);
}

.form-control-lux:focus {
  border-color: var(--copper-400);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: var(--glow-copper);
}

.form-control-lux::placeholder {
  color: var(--text-dim);
}

textarea.form-control-lux {
  min-height: 140px;
  resize: vertical;
}

/* Contact Info Cards */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-item-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-copper-subtle);
  border-radius: var(--radius-md);
  transition: var(--tr-fast);
}

.info-item-card:hover {
  border-color: var(--copper-300);
  transform: translateX(-4px);
  background: var(--bg-card-hover);
}

.info-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(197, 155, 115, 0.1);
  border: 1px solid var(--border-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--copper-300);
  flex-shrink: 0;
}

.info-item-content h4 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.info-item-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ Section */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin-inline: auto;
}

.faq-item {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-copper-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--tr-fast);
}

.faq-item.active {
  border-color: var(--copper-300);
  box-shadow: var(--glow-copper);
}

.faq-question {
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-white);
  transition: var(--tr-fast);
  user-select: none;
}

.faq-question:hover {
  color: var(--copper-200);
}

.faq-toggle-icon {
  color: var(--copper-400);
  transition: transform var(--tr-normal);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-inline: 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}
