/* ============================================================
   PsychLine.in — Internships (Bridge Program) Page
   Extracted from inline <style> in internships.html
   ============================================================ */

/* ── HERO ── */
.hero {
  background: var(--text);
  padding: 140px 60px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, rgba(107,127,106,0.15) 0%, rgba(74,90,73,0.15) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; margin-bottom: 32px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--primary-light); }
.hero-tag {
  display: inline-block;
  background: rgba(107,127,106,0.25); color: var(--green-swatch-accent);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 40px; margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem; font-weight: 700; line-height: 1.1;
  color: white; margin-bottom: 24px; letter-spacing: -1px;
  max-width: 700px;
}
.hero h1 em { color: var(--green-swatch-accent); font-style: italic; }
.hero-body { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.65); max-width: 560px; margin-bottom: 40px; }
.hero-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.meta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500;
  padding: 8px 18px; border-radius: 40px;
}

/* ── SHARED ── */
.section-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dark); margin-bottom: 16px; }
h2.section-title { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; line-height: 1.15; color: var(--text); margin-bottom: 16px; letter-spacing: -0.5px; }
.section-subtitle { font-size: 1rem; color: var(--muted); line-height: 1.6; max-width: 560px; margin-bottom: 50px; }

/* ── ENROLL SECTION ── */
.enroll-section { padding: 80px 60px; max-width: 1200px; margin: 0 auto; }
.enroll-layout { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: start; }

/* Program overview */
.program-overview { margin-bottom: 40px; }
.program-meta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px;
}
.program-meta .meta-pill {
  background: var(--green-swatch-light); border: none;
  color: var(--text); font-size: 0.82rem;
}

/* Curriculum timeline */
.curriculum-item { margin-bottom: 36px; }
.curriculum-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--text);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1.5px solid var(--border);
}
.curriculum-list { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; }
.curriculum-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--muted); line-height: 1.55; }
.curriculum-list li::before { content: '→'; color: var(--green-swatch-sage); flex-shrink: 0; margin-top: 1px; font-weight: 600; }

/* Enrollment sidebar */
.enroll-sidebar { position: sticky; top: 84px; }
.sidebar-card {
  background: white; border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  overflow: hidden;
}
.sidebar-header {
  background: linear-gradient(135deg, var(--green-swatch-sage), var(--green-swatch-dark));
  padding: 28px; color: white;
}
.sidebar-open {
  display: inline-block; background: rgba(255,255,255,0.2);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}
.sidebar-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; line-height: 1.3; }
.sidebar-price { font-size: 1.6rem; font-weight: 700; margin-top: 8px; }
.sidebar-body { padding: 24px; }
.sidebar-meta-row { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; }
.sidebar-meta-icon { width: 30px; height: 30px; border-radius: 8px; background: var(--green-swatch-light); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.sidebar-divider { height: 1px; background: var(--border); margin: 20px 0; }

/* Enrollment form */
.enroll-form { display: flex; flex-direction: column; gap: 14px; }
.enroll-form label { font-size: 0.78rem; font-weight: 600; color: var(--text); margin-bottom: 2px; display: block; }
.enroll-form input,
.enroll-form select {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.88rem; color: var(--text);
  font-family: 'Raleway', sans-serif; background: white; outline: none;
  transition: border-color 0.2s;
}
.enroll-form input:focus,
.enroll-form select:focus { border-color: var(--green-swatch-sage); }
.enroll-btn {
  display: block; width: 100%; padding: 14px;
  background: var(--green-swatch-sage); color: white; border: none;
  border-radius: 12px; font-family: 'Raleway', sans-serif;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  text-align: center; text-decoration: none;
  transition: background 0.2s; margin-top: 6px;
}
.enroll-btn:hover { background: var(--green-swatch-dark); }
.enroll-note { font-size: 0.78rem; color: var(--muted); text-align: center; line-height: 1.5; margin-top: 8px; }
.enroll-success {
  display: none; text-align: center; padding: 32px 20px;
}
.enroll-success .success-icon { font-size: 2.5rem; margin-bottom: 16px; }
.enroll-success h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.enroll-success p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* Perks */
.perks-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 60px; }
.perks-inner { max-width: 1200px; margin: 0 auto; }
.perks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.perk-card { background: white; border-radius: 16px; padding: 28px; border: 1px solid var(--border); transition: box-shadow 0.25s; }
.perk-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.perk-icon { font-size: 1.6rem; margin-bottom: 14px; }
.perk-title { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 6px; }
.perk-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* Pathway */
.pathway-section { padding: 80px 60px; max-width: 1200px; margin: 0 auto; }
.pathway-card {
  display: flex; align-items: flex-start; gap: 28px;
  background: white; border-radius: 20px; padding: 40px;
  border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.pathway-icon { font-size: 2.5rem; flex-shrink: 0; }
.pathway-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.pathway-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* FAQ */
.faq-section { background: var(--surface); border-top: 1px solid var(--border); padding: 80px 60px; }
.faq-inner { max-width: 800px; margin: 0 auto; }

/* CTA banner */
.apply-banner {
  background: linear-gradient(135deg, var(--green-swatch-sage), var(--green-swatch-dark));
  padding: 64px 60px; text-align: center; color: white;
}
.apply-banner h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; margin-bottom: 16px; text-align: center; }
.apply-banner p { font-size: 1rem; opacity: 0.8; line-height: 1.6; max-width: 560px; margin: 0 auto 30px !important; text-align: center; }
.apply-banner-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--green-swatch-dark);
  text-decoration: none; padding: 15px 36px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.apply-banner-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero, .enroll-section, .perks-section, .pathway-section, .faq-section, .apply-banner { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 100px; padding-bottom: 52px; }
  .hero h1 { font-size: 2.4rem; }
  .enroll-layout { grid-template-columns: 1fr; }
  .enroll-sidebar { position: static; }
  .perks-grid { grid-template-columns: 1fr; }
  h2.section-title { font-size: 2rem; }
  .pathway-card { flex-direction: column; }
}
