/* ===== BASE STYLES ===== */
body {
    margin: 0;
    padding: 0;
    color: #e0e0e0;
  }

/* Fallback animation styles */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* FAQ answer styling */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

/* Make sure containers are visible */
.contact-section,
.glass-card,
.faq-section,
.join-form-section {
  opacity: 1 !important;
}

  /* ===== CONTACT SECTION ===== */
  .contact-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
    margin: 60px auto;
  }
  

  
  .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  
  .particles span {
    position: absolute;
    background: #00ddeb;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ddeb, 0 0 20px #00ddeb;
    animation: floatParticle linear infinite;
  }
  
  @keyframes floatParticle {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 0.4;
    }
    50% {
      transform: translate(var(--x), var(--y)) scale(var(--scale));
      opacity: 1;
    }
    100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.4;
    }
  }
  
  /* ===== GLASS CARD ===== */
  .glass-card {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 221, 235, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 1600px;
    width: 100%;
    box-shadow: 0 0 30px rgba(0, 221, 235, 0.3);
    animation: glow 3s ease-in-out infinite;
    margin-bottom: 40px;
  }
  
  @keyframes glow {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 221, 235, 0.3); }
    50% { box-shadow: 0 0 50px rgba(0, 221, 235, 0.6); }
  }
  
  .glass-card h2 {
    font-size: 2.5rem;
    color: #00ddeb;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 221, 235, 1);
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .combined-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1600px;
    width: 90%;
  }
  
  /* ===== CONTACT INFO ===== */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 20px;
  }
  
  .contact-info p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .info-item i {
    font-size: 1.5rem;
    color: #00ddeb;
    margin-top: 3px;
  }
  
  .info-item span {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
  }
  
  .info-item a {
    color: #00ddeb;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .info-item a:hover {
    color: #00b7c3;
  }
  
  /* ===== FORM STYLES ===== */
  .contact-form, 
  .join-form-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 221, 235, 0.2);
  }
  
  .contact-form h3, 
  .join-form-card h3 {
    font-size: 1.8rem;
    color: #00ddeb;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 221, 235, 0.8);
  }
  
  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }
  
  .form-group label {
    display: block;
    font-size: 0.9rem;
    color: #00ddeb;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .form-group label .required {
    color: #ff0000;
    font-size: 14px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: #00ddeb;
    box-shadow: 0 0 8px rgba(0, 221, 235, 0.4);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .form-group select {
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="5" viewBox="0 0 10 5"><path fill="%2300ddeb" d="M0 0h10L5 5z"/></svg>') no-repeat right 10px center;
    background-size: 10px;
  }
  
  .form-row {
    display: flex;
    gap: 20px;
  }
  
  .phone-group .phone-input {
    display: flex;
    gap: 10px;
  }
  
  .phone-group select#country-code {
    width: 120px;
    flex-shrink: 0;
  }
  
  .phone-group input#phone {
    flex: 1;
  }
  
  /* ===== BUTTON STYLES ===== */
  .btn-primary {
    width: 100%;
    padding: 12px;
    background: #00ddeb;
    color: #000;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }
  
  .btn-primary:hover {
    background: #00b7c3;
    box-shadow: 0 0 15px rgba(0, 221, 235, 0.6);
  }
  
  /* ===== FAQ SECTION ===== */
  .faq-section {
    position: relative;
    z-index: 3;
    width: 100%;
  }
  
  .faq-section h2 {
    font-size: 2.2rem;
    color: #00ddeb;
    margin-bottom: 30px;
    text-align: left;
    text-shadow: 0 0 15px rgba(0, 221, 235, 1);
  }
  
  .faq-content {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 221, 235, 0.2);
    height: 100%;
  }
  
  .faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .faq-question {
    cursor: pointer;
    padding: 15px 0;
    font-size: 1.2rem;
    color: #00ddeb;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 5px;
  }
  
  .faq-answer p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 16px;
    color: rgb(209, 207, 207);
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 15px;
  }
  
  .faq-item.active .faq-question::after {
    content: "-";
  }
  
  .faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: #00ddeb;
  }
  
  /* ===== AFFILIATE JOIN SECTION ===== */
  .join-form-section {
    width: 100%;
  }
  
  .join-form-section h2 {
    font-size: 2.5rem;
    color: #00ddeb;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 221, 235, 1);
  }
  
  .join-form-section p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
  }
  
  .checkbox-group {
    text-align: left;
    margin: 20px 0;
  }
  
  .checkbox-group label {
    font-size: 14px;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
  }
  
  .checkbox-group .terms-link {
    color: #00ddeb;
    text-decoration: underline;
  }
  
  .checkbox-group .terms-link:hover {
    color: #00b7c3;
  }
  
  /* ===== RESPONSIVE DESIGN ===== */
  @media (max-width: 992px) {
    .contact-grid,
    .combined-section {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .glass-card {
      padding: 20px;
    }
  
    .contact-info {
      padding-right: 0;
    }
  
    .form-row {
      flex-direction: column;
      gap: 15px;
    }
  
    .phone-group .phone-input {
      flex-direction: column;
      gap: 10px;
    }
  
    .phone-group select#country-code {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .contact-section {
      padding: 60px 15px;
    }
    
    .glass-card,
    .faq-content,
    .join-form-card {
      padding: 30px 10px;
    }
  
    .glass-card h2,
    .faq-section h2,
    .join-form-section h2 {
      font-size: 1.8rem;
    }
  
    .faq-question {
      font-size: 1.1rem;
    }
  
    .faq-answer,
    .faq-answer p {
      font-size: 14px;
    }
  
    .contact-form,
    .join-form-card {
      padding: 8px;
    }
  
    .contact-form h3,
    .join-form-card h3 {
      font-size: 1.5rem;
    }
  
    .contact-info p,
    .join-form-section p {
      font-size: 0.9rem;
    }
  
    .form-group label {
      font-size: 0.9rem;
    }
  
    .form-group input,
    .form-group textarea,
    .form-group select {
      font-size: 0.9rem;
    }
  
    .btn-primary {
      padding: 10px;
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .glass-card h2,
    .faq-section h2,
    .join-form-section h2 {
      font-size: 1.4rem;
    }
  }