/* ========================================
   Networking Page
   ======================================== */

.networking-hero {
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.9)),
              url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1400&h=500&fit=crop') center/cover no-repeat;
}

[data-page="community"] .page-hero {
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.85)),
              url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1400&h=500&fit=crop') center/cover no-repeat;
}

.networking-hero__subtitle {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e86c2e;
  margin-top: 12px;
  font-weight: 600;
}

/* Intro */
.networking-intro {
  text-align: center;
  padding: 80px 40px 60px;
  max-width: 750px;
  margin: 0 auto;
}

.networking-intro__title {
  font-family: 'Poiret One', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 20px;
}

.networking-intro__divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #e86c2e, #f4a261);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.networking-intro__text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
}

/* Benefits Section */
.networking-benefits {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 70px 60px;
}

.networking-benefits__title {
  font-family: 'Poiret One', cursive;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
}

.networking-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.networking-benefits__item {
  text-align: center;
}

.networking-benefits__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(232, 108, 46, 0.15);
  border: 1px solid rgba(232, 108, 46, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #e86c2e;
  margin: 0 auto 18px;
  transition: transform 0.3s, background 0.3s;
}

.networking-benefits__item:hover .networking-benefits__icon {
  transform: scale(1.1);
  background: rgba(232, 108, 46, 0.25);
}

.networking-benefits__item h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.networking-benefits__item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* Social Cards */
.social-cards {
  padding: 0 60px 80px;
}

.social-cards__title {
  font-family: 'Poiret One', cursive;
  font-size: 2rem;
  font-weight: 400;
  color: #222;
  text-align: center;
  margin-bottom: 40px;
}

.social-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.social-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 3px solid transparent;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.social-card--instagram { border-top-color: #E1306C; }
.social-card--chat { border-top-color: #C13584; }
.social-card--whatsapp { border-top-color: #25D366; }
.social-card--youtube { border-top-color: #FF0000; }

.social-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.social-card--instagram .social-card__icon {
  background: rgba(225, 48, 108, 0.1);
  color: #E1306C;
}

.social-card--chat .social-card__icon {
  background: rgba(193, 53, 132, 0.1);
  color: #C13584;
}

.social-card--whatsapp .social-card__icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.social-card--youtube .social-card__icon {
  background: rgba(255, 0, 0, 0.1);
  color: #FF0000;
}

.social-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.social-card__desc {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.65;
}

/* Join Section (single WhatsApp) */
.networking-join {
  padding: 80px 60px;
  background: #faf8f5;
  text-align: center;
}

.networking-join__content {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.networking-join__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #25D366, #128C7E);
}

.networking-join__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 24px;
}

.networking-join__title {
  font-family: 'Poiret One', cursive;
  font-size: 2rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 16px;
}

.networking-join__desc {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
}

.networking-join__features {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.networking-join__features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.5px;
}

.networking-join__features i {
  color: #e86c2e;
  font-size: 0.9rem;
}

.networking-join__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.networking-join__btn:hover {
  background: #1da851;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.networking-join__btn i {
  font-size: 1.3rem;
}

/* Groups Section (legacy) */
.networking-groups {
  padding: 80px 60px;
  background: #faf8f5;
}

.networking-groups__title {
  font-family: 'Poiret One', cursive;
  font-size: 2rem;
  font-weight: 400;
  color: #222;
  text-align: center;
  margin-bottom: 48px;
}

.networking-groups__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.networking-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 32px 36px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.networking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e86c2e, #25D366);
  opacity: 0;
  transition: opacity 0.3s;
}

.networking-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.networking-card:hover::before {
  opacity: 1;
}

.networking-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5f0eb, #fce8db);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #e86c2e;
  margin-bottom: 24px;
  transition: transform 0.3s;
}

.networking-card:hover .networking-card__icon {
  transform: scale(1.08);
}

.networking-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.networking-card__desc {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}

.networking-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.networking-card__btn:hover {
  background: #1da851;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.networking-card__btn i {
  font-size: 1.1rem;
}

/* CTA Section */
.networking-cta {
  padding: 80px 60px;
  background: linear-gradient(135deg, #e86c2e 0%, #f4a261 100%);
  text-align: center;
}

.networking-cta__content {
  max-width: 600px;
  margin: 0 auto;
}

.networking-cta__content h2 {
  font-family: 'Poiret One', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}

.networking-cta__content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 36px;
}

.networking-cta__btn {
  display: inline-block;
  background: #fff;
  color: #e86c2e;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.networking-cta__btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Rules Section */
.networking-rules {
  background: #f5f0eb;
  padding: 80px 60px;
  text-align: center;
}

.networking-rules__title {
  font-family: 'Poiret One', cursive;
  font-size: 2rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 48px;
}

.networking-rules__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.networking-rules__item {
  text-align: center;
}

.networking-rules__emoji {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}

.networking-rules__item h3 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #222;
}

.networking-rules__item p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .social-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .networking-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .networking-groups__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .networking-rules__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .networking-intro {
    padding: 60px 24px 40px;
  }

  .networking-intro__title {
    font-size: 1.8rem;
  }

  .networking-benefits {
    padding: 50px 24px;
  }

  .networking-benefits__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .social-cards {
    padding: 0 24px 60px;
  }

  .social-cards__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .networking-join {
    padding: 60px 24px;
  }

  .networking-join__content {
    padding: 40px 28px;
  }

  .networking-join__features {
    gap: 16px;
  }

  .networking-groups {
    padding: 60px 24px;
  }

  .networking-groups__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .networking-card {
    padding: 32px 24px;
  }

  .networking-cta {
    padding: 60px 24px;
  }

  .networking-cta__content h2 {
    font-size: 1.8rem;
  }

  .networking-rules {
    padding: 60px 24px;
  }

  .networking-rules__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .networking-benefits__grid {
    grid-template-columns: 1fr;
  }

  .networking-rules__grid {
    grid-template-columns: 1fr;
  }
}
