
/* Trial Page Specific Styles */

/* Trial Hero Section */
.trial-hero {
  min-height: 100vh;
  background: url('/wp-content/themes/astra/assets/images/intel-brain-male.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.trial-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(15, 24, 36, 0.9) 0%, rgba(15, 24, 36, 0.7) 50%, transparent 100%);
}

.trial-hero .hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trial-hero .hero-content-left {
  color: white;
}

.exclusive-badge {
  display: inline-block;
  background: var(--button-gradient);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(243, 116, 91, 0.3);
}

.badge-text {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trial-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.trial-hero .hero-description {
  font-size: 1.375rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.trial-hero .hero-btn {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.hero-visual-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.clinician-portrait {
  width: 350px;
  height: 450px;
  background: linear-gradient(135deg, rgba(43, 90, 135, 0.9) 0%, rgba(30, 58, 95, 0.8) 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.portrait-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 1.5rem;
  border-radius: 16px;
  backdrop-filter: blur(15px);
  color: white;
  text-align: center;
}

.ai-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, var(--secondary-coral) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, var(--primary-blue) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0.7;
}

/* Why Join Section */
.trial-why-join {
  padding: 6rem 0;
  background: var(--soft-white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--accent-navy);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--button-gradient);
  margin: 1rem auto;
  border-radius: 2px;
}

.section-description {
  font-size: 1.25rem;
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 0;
}

.value-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.highlight-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--light-gray);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.highlight-card h3 {
  font-size: 1.5rem;
  color: var(--accent-navy);
  margin-bottom: 1rem;
}

.highlight-card p {
  color: var(--medium-gray);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Benefits Section */
.trial-benefits {
  padding: 6rem 0;
  background: white;
}

.benefits-list {
  max-width: 700px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-check {
  background: var(--button-gradient);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-content h4 {
  font-size: 1.375rem;
  color: var(--accent-navy);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.benefit-content p {
  color: var(--medium-gray);
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* Who Section */
.trial-who {
  padding: 6rem 0;
  background: var(--soft-white);
}

.ideal-participants {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--light-gray);
}

.ideal-participants h3 {
  font-size: 1.5rem;
  color: var(--accent-navy);
  margin-bottom: 1.5rem;
}

.participants-list {
  list-style: none;
  padding: 0;
}

.participants-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-gray);
  color: var(--medium-gray);
  font-size: 1.125rem;
  position: relative;
  padding-left: 2rem;
}

.participants-list li:last-child {
  border-bottom: none;
}

.participants-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 700;
}

/* Urgency Section */
.trial-urgency {
  padding: 6rem 0;
  background: var(--hero-gradient);
  color: white;
}

.urgency-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.trial-urgency .section-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.trial-urgency .section-title::after {
  background: white;
}

.urgency-text {
  font-size: 1.375rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.urgency-text strong {
  color: white;
  font-weight: 700;
}

.urgency-btn {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  background: white;
  color: var(--primary-blue);
  border: none;
}

.urgency-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

/* Application Form Section */
.trial-application {
  padding: 6rem 0;
  background: var(--soft-white);
}

.application-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--light-gray);
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--accent-navy);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Lato', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(43, 90, 135, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  text-align: center;
  margin-top: 1rem;
}

.submit-btn {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.follow-up-note {
  font-size: 0.875rem;
  color: var(--medium-gray);
  font-style: italic;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .trial-hero .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-visual-right {
    order: -1;
  }
  
  .clinician-portrait {
    width: 300px;
    height: 380px;
  }
}

@media (max-width: 768px) {
  .trial-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .trial-hero .hero-description {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1.125rem;
  }
  
  .value-highlights {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .highlight-card {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .application-form-wrapper {
    padding: 2rem;
  }
  
  .clinician-portrait {
    width: 280px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .trial-hero {
    padding: 2rem 0;
  }
  
  .trial-hero .hero-title {
    font-size: 2rem;
  }
  
  .trial-hero .hero-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .highlight-card {
    padding: 1.5rem;
  }
  
  .benefit-item {
    padding: 1.5rem 0;
  }
  
  .application-form-wrapper {
    padding: 1.5rem;
  }
  
  .clinician-portrait {
    width: 250px;
    height: 300px;
  }
  
  .trial-hero .hero-btn,
  .urgency-btn,
  .submit-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
