/* ========================================
   Lyon Investment - Global Styles
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* ========================================
   Container
   ======================================== */
.container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   Color Variables
   ======================================== */
:root {
  --primary-yellow: #FFC107;
  --light-yellow: #FFF8E1;
  --medium-yellow: #FFD54F;
  --dark-yellow: #FFB300;
  --text-dark: #333;
  --text-body: #555;
  --text-light: #777;
  --bg-light: #f9f9f9;
  --bg-dark: #2c2c2c;
  --white: #fff;
  --border-color: #eee;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--primary-yellow);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--text-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-yellow);
  font-weight: 700;
  font-size: 20px;
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-dark);
}

.nav-links a.active {
  color: var(--text-dark);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text-dark);
}

/* ========================================
   Page Banner / Hero Shared
   ======================================== */
.page-banner {
  margin-top: 70px;
  padding: 60px 0;
  background: var(--white);
}

.page-banner-title {
  text-align: center;
}

.page-banner-title h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
}

.page-banner-box {
  margin-top: 70px;
  padding: 40px 0;
}

.page-banner-box .banner-card {
  background: var(--light-yellow);
  border: 2px solid var(--primary-yellow);
  border-radius: 12px;
  padding: 30px 50px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-banner-box .banner-card h1 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
}

/* ========================================
   Section Styles
   ======================================== */
.section {
  padding: 80px 0;
}

.section-gray {
  background: var(--bg-light);
}

.section-white {
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title p {
  font-size: 15px;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* ========================================
   Image Placeholders
   ======================================== */
.img-placeholder {
  
}

.img-placeholder::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  border: 2px dashed rgba(179, 134, 0, 0.3);
  border-radius: 8px;
}

/* ========================================
   Home Page - Hero Section
   ======================================== */
.hero {
  margin-top: 70px;
  padding: 60px 0 0;
  background: #F9D966;
  position: relative;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.hero-image .img-placeholder {
  width: 450px;
  height: 320px;
}

/* ========================================
   Home Page - Partner Section
   ======================================== */
.partner-section {
  background: var(--bg-light);
  padding: 70px 0;
  text-align: center;
}

.partner-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.partner-section p {
  font-size: 15px;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========================================
   Home Page - Commitment Section
   ======================================== */
.commitment-section {
  padding: 80px 0;
  background: var(--white);
}

.commitment-section .section-title {
  margin-bottom: 50px;
}

.commitment-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.commitment-image .img-placeholder {
  width: 320px;
  height: 280px;
}

.commitment-list {
  width:500px;
}

.commitment-list li {
  font-size: 15px;
  color: var(--text-body);
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
}

.commitment-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-yellow);
  font-weight: 700;
}

.stars {
  display: flex;
  gap: 4px;
  padding-left: 24px;
  margin-top: 10px;
  width: 280px;
  height:60px;
}

.stars span {
  color: var(--primary-yellow);
  font-size: 22px;
}

/* ========================================
   Home Page - Featured Services
   ======================================== */
.services-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.services-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.services-box li {
  font-size: 15px;
  color: var(--text-body);
  padding: 12px 0;
  padding-left: 16px;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.services-box li:last-child {
  border-bottom: none;
}

.services-box li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-dark);
  font-weight: 700;
}

/* ========================================
   Home Page - Download Section
   ======================================== */
.download-section {
  background: #F9D966;
  padding: 50px 0;
}

.download-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.download-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.download-text p {
  font-size: 15px;
  color: var(--text-dark);
}

.download-badge .img-placeholder {
  width: 160px;
  height: 52px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 12px;
}

.download-badge .img-placeholder::after {
  display: none;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--bg-dark);
  padding: 50px 0 0;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col {
  flex: 1;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--primary-yellow);
}

.footer-col.disclaimer-col {
  flex: 2;
}

.footer-col.disclaimer-col h4 {
  color: #fff;
}

.footer-col.disclaimer-col p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  font-size: 12px;
  color: var(--text-light);
}

/* ========================================
   About Page - Our Story
   ======================================== */
.story-section {
  padding: 0 0 80px 0;
}

.story-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}

/* ========================================
   About Page - Journey Timeline
   ======================================== */
.journey-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-yellow);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 60px;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 60px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  background: var(--primary-yellow);
  border-radius: 50%;
  border: 3px solid var(--white);
  z-index: 1;
}

.timeline-item:nth-child(odd)::before {
  right: -8px;
}

.timeline-item:nth-child(even)::before {
  left: -8px;
}

.timeline-card {
  background: var(--light-yellow);
  border: 1px solid var(--medium-yellow);
  border-radius: 10px;
  padding: 20px 24px;
}

.timeline-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ========================================
   About Page - Mission & Vision
   ======================================== */
.mission-vision-section {
  padding: 80px 0;
  background: var(--white);
}

.mission-vision-grid {
  display: flex;
  gap: 60px;
  margin-top: 20px;
}

.mission-vision-card {
  flex: 1;
  text-align: center;
}

.mission-vision-card h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.mission-vision-card .card-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 24px;
}

.mission-vision-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto;
}

/* ========================================
   About Page - Core Values
   ======================================== */
.values-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.values-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.values-image .img-placeholder {
  width: 280px;
  height: 280px;
}

.values-list {
  flex: 1;
}

.values-list .value-item {
  margin-bottom: 24px;
}

.values-list .value-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.values-list .value-item p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ========================================
   LyonLoan Page - App Hero
   ======================================== */
.app-hero {
  margin-top: 70px;
  padding: 60px 0;
  background: var(--white);
}

.app-hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.app-hero-content {
  flex: 1;
}

.app-hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.app-hero-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 20px;
}

.app-hero-content p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
}

.app-hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.app-hero-image .img-placeholder {
  width: 300px;
  height: 420px;
  border-radius: 24px;
}

/* ========================================
   LyonLoan Page - Why Choose (Checklist)
   ======================================== */
.checklist-section {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.checklist li {
  font-size: 15px;
  color: var(--text-body);
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-yellow);
  font-weight: 700;
  font-size: 16px;
}

/* ========================================
   LyonLoan Page - Feature Cards
   ======================================== */
.features-section {
  padding: 80px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background: var(--light-yellow);
  border: 1px solid var(--medium-yellow);
  border-radius: 10px;
  padding: 24px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.2);
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ========================================
   LyonLoan Page - How to Use (Steps)
   ======================================== */
.steps-section {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--primary-yellow);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ========================================
   Products Page - Loan Cards
   ======================================== */
.products-section {
  padding: 80px 0;
  background: var(--white);
}

.loan-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.loan-card {
  background: var(--light-yellow);
  border: 1px solid var(--medium-yellow);
  border-radius: 12px;
  padding: 28px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width:550px;
}

.loan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.2);
}

.loan-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  margin-bottom: 16px;
  background: var(--primary-yellow);
}

.loan-card-icon::after {
  display: none;
}

.loan-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.loan-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 4px;
}

.loan-card-single {
  max-width: calc(50% - 12px);
}

/* ========================================
   Products Page - Info Sections
   ======================================== */
.info-section {
  padding: 80px 0;
}

.info-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 800px;
  margin: 0 auto;
}

.info-image .img-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 16px;
}

.info-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.info-text p,
.info-text li {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
}

/* ========================================
   Technology Page - Philosophy
   ======================================== */
.philosophy-section {
  padding: 40px 0 60px;
}

.philosophy-card {
  background: var(--light-yellow);
  border: 1px solid var(--medium-yellow);
  border-radius: 12px;
  padding: 30px 40px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.philosophy-card .img-placeholder {
  width: 120px;
  height: 120px;
  min-width: 120px;
  border-radius: 12px;
}

.philosophy-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.philosophy-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ========================================
   Technology Page - Platform Grid
   ======================================== */
.platform-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.platform-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.platform-card .card-icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.platform-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
  margin:30px 0;
}

.platform-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 10px 0;
}

.platform-card p,
.platform-card li {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 4px;
}

.platform-card ul {
  padding-left: 0;
}

.platform-card ul li {
  padding-left: 16px;
  position: relative;
}

.platform-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-yellow);
}

/* ========================================
   Technology Page - Security Framework
   ======================================== */
.security-section {
  padding: 80px 0;
  background: var(--white);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.security-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

.security-card:hover {
  transform: translateY(-4px);
}

.security-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.security-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.security-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ========================================
   Technology Page - Compliance
   ======================================== */
.compliance-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.compliance-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border-color);
}

.compliance-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.compliance-card p,
.compliance-card li {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.7;
}

.compliance-card ul li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.compliance-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-yellow);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-section {
  padding: 80px 0;
}

.contact-card {
  background: var(--light-yellow);
  border-radius: 16px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-image .img-placeholder {
  width: 260px;
  height: 220px;
  border-radius: 16px;
}

.contact-details {
  flex: 1;
}

.contact-item {
  margin-bottom: 24px;
}

.contact-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item h4 .icon {
  margin-top:10px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  padding-left: 28px;
}

/* ========================================
   Contact Page - Grievance
   ======================================== */
.grievance-section {
  padding: 0 0 80px;
}

.grievance-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.grievance-image .img-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.grievance-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.grievance-content p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ========================================
   Scroll Animation Classes
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Delay utilities */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
