/* Root Variables & Reset */
:root {
    --bahrain-red: #ce1126;
    --bahrain-red-dark: #b30f21;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-800: #1f2937;
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Inter", sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: var(--gray-50);
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--gray-800);
  }
  
  /* Header & Navigation - Common */
  .header {
    background-color: var(--white);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  
  .logo {
    color: var(--bahrain-red);
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition);
  }
  
  .logo:hover {
    color: var(--bahrain-red-dark);
  }
  
  /* Registration Form Styles */
  .registration-container {
    max-width: 800px;
    margin: 7rem auto 2rem;
    padding: 2rem;
  }
  
  .form-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--gray-800);
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .registration-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
  }
  
  .form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .form-input:focus {
    outline: none;
    border-color: var(--bahrain-red);
    box-shadow: var(--shadow-sm);
  }
  
  .mobile-input-container {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .mobile-input-container::before {
    content: "+973";
    position: absolute;
    left: 10px;
    color: var(--gray-800);
    font-family: var(--font-secondary);
    font-size: 1rem;
    pointer-events: none;
    padding-right: 5px;
    border-right: 1px solid var(--gray-300);
  }
  
  .mobile-input-container .form-input {
    padding-left: 65px;
  }
  
  .file-input-container {
    position: relative;
    margin-top: 0.5rem;
  }
  
  .file-input-label {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--gray-200);
    color: var(--gray-800);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .file-input-label:hover {
    background-color: var(--gray-300);
  }
  
  .file-input {
    position: absolute;
    left: -9999px;
  }
  
  .file-name {
    margin-left: 1rem;
    font-size: 0.9rem;
    color: var(--gray-800);
  }
  
  .submit-btn {
    background-color: var(--bahrain-red);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 1rem;
  }
  
  .submit-btn:not(:disabled):hover {
    background-color: var(--bahrain-red-dark);
    transform: translateY(-2px);
  }
  
  .submit-btn:disabled {
    background-color: var(--gray-300);
    cursor: not-allowed;
  }
  
  /* Utility Classes */
  .required {
    color: var(--bahrain-red);
  }
  
  .form-note {
    font-size: 0.9rem;
    color: var(--gray-800);
    margin-top: 0.5rem;
  }
  
  /* Cloudflare Turnstile */
  .cf-turnstile {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .registration-container {
      padding: 1rem;
      margin-top: 5rem;
    }
  
    .registration-form {
      padding: 1.5rem;
    }
  
    .form-title {
      font-size: 2rem;
    }
  }
  
  /* Keep your existing landing page styles below this line */
  [Your existing landing page CSS here]
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --bahrain-red: #ce1126;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-800: #1f2937;
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Inter", sans-serif;
  }
  
  body {
    background-color: var(--white);
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--gray-800);
  }
  
  /* Header Styles */
  .header {
    background-color: var(--white);
    padding: 1.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  
  .logo {
    color: var(--bahrain-red);
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
  }
  
  .nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
  }
  
  .nav-links a {
    color: var(--bahrain-red);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.3s ease;
  }
  
  .nav-links a:hover {
    opacity: 0.8;
  }
  
  .register-link {
    font-weight: 600 !important;
  }
  
  .language-selector {
    color: var(--bahrain-red);
    padding: 0.5rem 1rem;
    border: 2px solid var(--bahrain-red);
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .language-selector:hover {
    background-color: var(--bahrain-red);
    color: var(--white);
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    background: linear-gradient(
        rgba(206, 17, 38, 0.9),
        rgba(206, 17, 38, 0.8)
      ),
      url("https://images.unsplash.com/photo-1577962917302-cd874c4e31d2?ixlib=rb-4.0.3");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
  }
  
  .hero-content {
    max-width: 800px;
    padding: 2rem;
  }
  
  .hero-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 3.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-button {
    background-color: var(--white);
    color: var(--bahrain-red);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .cta-button:hover {
    transform: scale(1.05);
  }
  
  /* Features Section */
  .features {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--gray-100);
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
  }
  
  .feature-icon {
    font-size: 2.5rem;
    color: var(--bahrain-red);
    margin-bottom: 1.5rem;
  }
  
  .feature-card h3 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
  }
  
  .feature-card p {
    font-family: var(--font-secondary);
    color: var(--gray-800);
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Footer */
  .footer {
    background-color: var(--bahrain-red);
    color: var(--white);
    text-align: center;
    padding: 3rem 2rem;
    font-family: var(--font-secondary);
  }
  
  .social-links {
    margin-top: 1.5rem;
  }
  
  .social-links a {
    color: var(--white);
    margin: 0 1rem;
    font-size: 1.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  .social-links a:hover {
    opacity: 0.8;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-subtitle {
      font-size: 1.2rem;
    }
  
    .features {
      grid-template-columns: 1fr;
      padding: 4rem 1.5rem;
    }
  
    .feature-card {
      padding: 2rem 1.5rem;
    }
    :root {
        --bahrain-red: #ce1126;
        --bahrain-red-dark: #b30f21;
        --white: #ffffff;
        --gray-50: #f9fafb;
        --gray-100: #f3f4f6;
        --gray-200: #e5e7eb;
        --gray-300: #d1d5db;
        --gray-800: #1f2937;
        --font-primary: "Poppins", sans-serif;
        --font-secondary: "Inter", sans-serif;
        --transition: all 0.3s ease;
      }
      
      /* Reset and Base Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      
      html {
        scroll-behavior: smooth;
      }
      
      body {
        background-color: var(--white);
        font-family: var(--font-secondary);
        line-height: 1.6;
        color: var(--gray-800);
      }
      
      /* Header Styles */
      .header {
        background-color: var(--white);
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
      }
      
      .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
      }
      
      .logo {
        color: var(--bahrain-red);
        font-family: var(--font-primary);
        font-size: 1.8rem;
        font-weight: 700;
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: var(--transition);
      }
      
      .logo:hover {
        color: var(--bahrain-red-dark);
      }
      
      .nav-links {
        display: flex;
        gap: 2.5rem;
        align-items: center;
      }
      
      .nav-links a {
        color: var(--gray-800);
        text-decoration: none;
        font-family: var(--font-primary);
        font-weight: 500;
        font-size: 1rem;
        transition: var(--transition);
      }
      
      .nav-links a:hover {
        color: var(--bahrain-red);
      }
      
      .register-link {
        color: var(--bahrain-red) !important;
        font-weight: 600 !important;
      }
      
      .language-selector {
        color: var(--bahrain-red);
        padding: 0.5rem 1rem;
        border: 2px solid var(--bahrain-red);
        border-radius: 4px;
        cursor: pointer;
        font-family: var(--font-primary);
        font-weight: 500;
        background: none;
        transition: var(--transition);
      }
      
      .language-selector:hover {
        background-color: var(--bahrain-red);
        color: var(--white);
      }
      
      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: var(--bahrain-red);
        font-size: 1.5rem;
        cursor: pointer;
      }
      
      /* Hero Section */
      .hero {
        height: 100vh;
        background: linear-gradient(
            rgba(206, 17, 38, 0.9),
            rgba(206, 17, 38, 0.8)
          ),
          url("https://images.unsplash.com/photo-1577962917302-cd874c4e31d2?ixlib=rb-4.0.3");
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--white);
        padding-top: 80px;
      }
      
      .hero-content {
        max-width: 800px;
        padding: 2rem;
      }
      
      .hero-title {
        font-family: var(--font-primary);
        font-weight: 700;
        font-size: 3.5rem;
        letter-spacing: -0.5px;
        line-height: 1.2;
        margin-bottom: 1rem;
      }
      
      .hero-subtitle {
        font-family: var(--font-secondary);
        font-size: 1.5rem;
        margin-bottom: 2rem;
        opacity: 0.9;
      }
      
      .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
      }
      
      .cta-button {
        background-color: var(--white);
        color: var(--bahrain-red);
        padding: 1rem 2rem;
        border: none;
        border-radius: 4px;
        font-family: var(--font-primary);
        font-size: 1.2rem;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        transition: var(--transition);
      }
      
      .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
      
      .cta-button.secondary {
        background-color: transparent;
        border: 2px solid var(--white);
        color: var(--white);
      }
      
      /* Features Section */
      .features {
        padding: 6rem 2rem;
        background-color: var(--gray-50);
      }
      
      .section-title {
        text-align: center;
        font-family: var(--font-primary);
        font-size: 2.5rem;
        color: var(--gray-800);
        margin-bottom: 3rem;
      }
      
      .features-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
      }
      
      .feature-card {
        text-align: center;
        padding: 2.5rem 2rem;
        background-color: var(--white);
        border-radius: 8px;
        transition: var(--transition);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
      
      .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
      }
      
      .feature-icon {
        font-size: 2.5rem;
        color: var(--bahrain-red);
        margin-bottom: 1.5rem;
      }
      
      .feature-card h3 {
        font-family: var(--font-primary);
        font-weight: 600;
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--gray-800);
      }
      
      .feature-card p {
        font-family: var(--font-secondary);
        color: var(--gray-800);
        font-size: 1rem;
        line-height: 1.6;
      }
      
      /* Footer */
      .footer {
        background-color: var(--gray-800);
        color: var(--white);
        padding: 4rem 2rem 2rem;
      }
      
      .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
      }
      
      .footer-info h3 {
        font-family: var(--font-primary);
        font-size: 1.5rem;
        margin-bottom: 1rem;
      }
      
      .footer-links {
        display: flex;
        flex-direction: column;
      }
      
      .footer-links h4,
      .footer-contact h4 {
        font-family: var(--font-primary);
        font-size: 1.2rem;
        margin-bottom: 1rem;
      }
      
      .footer-links a {
        color: var(--gray-300);
        text-decoration: none;
        margin-bottom: 0.5rem;
        transition: var(--transition);
      }
      
      .footer-links a:hover {
        color: var(--white);
      }
      
      .footer-contact p {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
      
      .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid var(--gray-300);
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      
      .social-links {
        display: flex;
        gap: 1.5rem;
      }
      
      .social-links a {
        color: var(--white);
        font-size: 1.5rem;
        text-decoration: none;
        transition: var(--transition);
      }
      
      .social-links a:hover {
        color: var(--bahrain-red);
      }
      
      /* Responsive Design */
      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }
      
        .mobile-menu-btn {
          display: block;
        }
      
        .hero-title {
          font-size: 2.5rem;
        }
      
        .hero-subtitle {
          font-size: 1.2rem;
        }
      
        .cta-buttons {
          flex-direction: column;
        }
      
        .footer-bottom {
          flex-direction: column;
          text-align: center;
          gap: 1rem;
        }
      }  
}