/* ============================================
   NEW HERO SECTION - Warm, Welcoming & Empathetic
   ============================================ */

.hero-section-new {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section-new::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero-section-new::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 87, 108, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(20px);
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 500px;
}

/* Hero Text */
.hero-text {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Catchphrase - Two Line Structure */
.hero-catchphrase {
  text-align: center;
  margin: 0 0 1.5rem 0;
}

.hero-catchphrase-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
  animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%, 100% { 
    transform: scale(1); 
    opacity: 1;
  }
  50% { 
    transform: scale(1.05); 
    opacity: 0.95;
  }
}

.hero-catchphrase-line-one {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.hero-catchphrase-line-two {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.hero-headline {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #2d3748;
  margin: 0 0 1rem 0;
  font-weight: 400;
}

.hero-subtext {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  margin: 0 0 2rem 0;
  font-style: italic;
  opacity: 0.9;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* Hero Image */
.hero-image {
  animation: fadeInRight 1s ease-out;
  position: relative;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-illustration {
  width: 100%;
  height: auto;
  max-width: 600px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-section-new {
    padding: 3rem 0;
    min-height: 80vh; /* Ensure hero takes most of mobile viewport */
  }
  
  .hero-container {
    padding: 0 1.5rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: 400px; /* Ensure hero section has proper height on mobile */
  }
  
  .hero-text {
    text-align: center;
  }
  
  /* Mobile Catchphrase Styling */
  .hero-catchphrase-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-catchphrase-line-one {
    font-size: 2rem;
    margin-bottom: 0.25rem;
  }
  
  .hero-catchphrase-line-two {
    font-size: 1.75rem;
  }
  
  .hero-headline {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-lead {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-subtext {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .hero-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero-illustration {
    max-width: 100%;
  }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content {
    gap: 2.5rem;
  }
  
  .hero-headline {
    font-size: 2.5rem;
  }
  
  .hero-lead {
    font-size: 1.15rem;
  }
  
  .hero-subtext {
    font-size: 1.05rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-section-new::before,
  .hero-section-new::after,
  .hero-text,
  .hero-image {
    animation: none;
  }
  
  .hero-illustration circle {
    animation: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .hero-headline {
    -webkit-text-fill-color: #000;
    color: #000;
  }
  
  .btn-primary,
  .btn-secondary {
    border-width: 3px;
  }
}

/* Focus visible for accessibility */
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 3px solid #667eea;
  outline-offset: 3px;
}
