/* ========== COMING SOON OVERLAY STYLES ========== */
    .coming-soon-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(8px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fadeIn 0.5s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .coming-soon-content {
      text-align: center;
      padding: 3rem 2rem;
      max-width: 600px;
      animation: slideUp 0.7s ease-out;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .coming-soon-icon {
      width: 120px;
      height: 120px;
      margin: 0 auto 2rem;
      background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 60px -10px rgba(16, 185, 129, 0.4);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    .coming-soon-icon i {
      font-size: 3.5rem;
      color: white;
    }

    .coming-soon-title {
      font-size: 3rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }

    .coming-soon-subtitle {
      font-size: 1.25rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .coming-soon-message {
      background: var(--light-green);
      border: 1px solid rgba(16, 185, 129, 0.3);
      border-radius: 16px;
      padding: 1.5rem;
      margin-bottom: 2rem;
    }

    .coming-soon-message p {
      margin: 0;
      color: var(--dark-green);
      font-weight: 600;
      font-size: 1rem;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 2rem;
    }

    .social-links a {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--light-green);
      border: 2px solid var(--primary-green);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--dark-green);
      font-size: 1.5rem;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--primary-green);
      color: white;
      transform: translateY(-5px);
      box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
    }

    @media (max-width: 768px) {
      .coming-soon-title {
        font-size: 2rem;
      }
      .coming-soon-subtitle {
        font-size: 1rem;
      }
      .coming-soon-icon {
        width: 90px;
        height: 90px;
      }
      .coming-soon-icon i {
        font-size: 2.5rem;
      }
    }