/* ============================================
   VEENAPEETH ACADEMY — PAGE SPECIFIC STYLES
   ============================================ */

/* Home Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  color: white;
  padding-top: calc(var(--space-24) + 20px);
  padding-bottom: var(--space-16);
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-text h1 {
  color: white;
  margin-bottom: var(--space-4);
}

.hero-text p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-body-lg);
  margin-bottom: var(--space-6);
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-12);
}

.hero-stat {
  text-align: center;
  padding: var(--space-4);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--weight-extrabold);
  color: var(--color-accent);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.contact-card {
  background: var(--color-surface);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: var(--space-8);
  margin-top: var(--space-8);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-secondary-200);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-6);
}

.timeline-dot {
  position: absolute;
  left: calc(-1 * var(--space-8) + 6px);
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--color-secondary);
  border-radius: var(--radius-full);
}
