/* Test Page Specific Styles */

/* Hero Section */
.test-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #581c87, #000000, #064e3b);
    padding: 3rem 0 5rem;
    min-height: 100vh;
  }
  
  .test-background {
    position: absolute;
    inset: 0;
    background-image: url("https://via.placeholder.com/1200x800/000000/ffffff?text=Background");
    background-size: cover;
    background-position: center;
    opacity: 0.05;
  }
  
  .test-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  /* Header */
  .test-header {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .logo-section {
    margin-bottom: 1.5rem;
  }
  
  .logo-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
  }
  
  .free-test-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    margin: 0 auto;
  }
  
  .test-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  
  @media (max-width: 768px) {
    .test-title {
      font-size: 2rem;
    }
  }
  
  .test-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 28rem;
    margin: 0 auto;
  }
  
  /* Form Container */
  .form-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .form-card {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
  }
  
  .form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .test-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-label {
    font-weight: 600;
    color: #d1d5db;
    font-size: 0.875rem;
  }
  
  .form-input,
  .form-select {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-input:focus,
  .form-select:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
  }
  
  .form-input::placeholder {
    color: #9ca3af;
  }
  
  .form-select option {
    background: #1f2937;
    color: white;
  }
  
  .btn-test-submit {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.25);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
  }
  
  .btn-test-submit:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
  }
  
  .btn-test-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }
  
  /* Success Message */
  .success-message {
    text-align: center;
    padding: 2rem;
  }
  
  .success-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #10b981, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
    animation: pulse 2s infinite;
  }
  
  .success-icon svg {
    width: 2rem;
    height: 2rem;
  }
  
  .success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
  }
  
  .success-text {
    color: #d1d5db;
  }
  
  /* Test Info */
  .test-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(31, 41, 55, 0.3);
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 1.5rem;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #8b5cf6, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
  }
  
  .info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .info-content {
    display: flex;
    flex-direction: column;
  }
  
  .info-title {
    font-weight: 600;
    color: white;
    font-size: 0.875rem;
  }
  
  .info-description {
    color: #9ca3af;
    font-size: 0.75rem;
  }
  
  /* Benefits Preview */
  .benefits-preview {
    width: 100%;
    text-align: center;
  }
  
  .benefits-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  @media (min-width: 640px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(31, 41, 55, 0.3);
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1rem;
    color: #d1d5db;
    font-size: 0.875rem;
  }
  
  .benefit-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
    flex-shrink: 0;
  }
  
  /* Back to Site Link */
  .back-to-site {
    margin-top: 1rem;
    text-align: center;
  }
  
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .back-link:hover {
    color: #a855f7;
  }
  
  .back-link .icon {
    width: 1rem;
    height: 1rem;
  }
  
  /* Phone Input Mask */
  .form-input[type="tel"] {
    font-family: monospace;
  }
  
  /* Animation for form elements */
  .form-card > * {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
  }
  
  .form-card > *:nth-child(1) {
    animation-delay: 0.1s;
  }
  .form-card > *:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .test-info .info-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
  }
  
  .test-info .info-item:nth-child(1) {
    animation-delay: 0.3s;
  }
  .test-info .info-item:nth-child(2) {
    animation-delay: 0.4s;
  }
  .test-info .info-item:nth-child(3) {
    animation-delay: 0.5s;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .test-hero {
      padding: 2rem 0 3rem;
    }
  
    .form-card {
      padding: 1.5rem;
    }
  
    .logo-title {
      font-size: 2rem;
    }
  
    .test-title {
      font-size: 1.75rem;
    }
  
    .test-subtitle {
      font-size: 1rem;
    }
  }
  