/* Collaborations Page Styles */

/* Hero Section */
.collab-hero {
  background: linear-gradient(135deg, #fff5f7 0%, #fffbfc 50%, #ffffff 100%);
  padding: var(--spacing-2xl) 0;
  padding-top: 140px;
  position: relative;
  overflow: hidden;
}

.collab-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,182,193,0.25) 0%, rgba(255,209,220,0.15) 40%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
  filter: blur(60px);
}

.collab-hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,209,220,0.2) 0%, rgba(244,167,185,0.1) 50%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  animation: float 10s ease-in-out infinite reverse;
  filter: blur(50px);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background: linear-gradient(135deg, var(--white) 0%, #fffbfc 100%);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(244, 167, 185, 0.15);
  position: relative;
  overflow: hidden;
  font-weight: 600;
  color: var(--pink-deep);
  margin-bottom: var(--spacing-md);
}

.collab-hero h1 {
  font-size: 4rem;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(244, 167, 185, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.collab-stats {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-2xl);
}

.stat-badge {
  background: linear-gradient(145deg, var(--white) 0%, #fffbfc 100%);
  padding: var(--spacing-lg) var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(255, 182, 193, 0.15), 0 10px 40px rgba(244, 167, 185, 0.08);
  border: 2px solid var(--pink-light);
  text-align: center;
  min-width: 150px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,182,193,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-badge:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 182, 193, 0.3), 0 16px 60px rgba(244, 167, 185, 0.15);
  border-color: var(--pink-primary);
}

.stat-badge:hover::before {
  opacity: 1;
}

.stat-badge .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--spacing-xs);
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
}

.stat-badge .stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Collaborations Section */
.collaborations-section {
  padding: var(--spacing-2xl) 0;
}

.category-block {
  margin-bottom: calc(var(--spacing-2xl) * 1.5);
  background: linear-gradient(145deg, var(--white) 0%, #fffbfc 100%);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), 0 10px 40px rgba(244, 167, 185, 0.05);
  border: 2px solid var(--pink-light);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.category-block::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-deep), var(--pink-primary));
  border-radius: var(--radius-xl);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.category-block:hover {
  box-shadow: 0 12px 40px rgba(255, 182, 193, 0.2), 0 16px 60px rgba(244, 167, 185, 0.12);
  transform: translateY(-4px);
}

.category-block:hover::before {
  opacity: 0.3;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 3px solid var(--pink-light);
}

.category-header h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin: 0;
}

.category-count {
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-deep));
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.brand-pill {
  background: linear-gradient(135deg, #fff5f7, #ffffff);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--text-dark);
  border: 2px solid var(--pink-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  font-size: 0.9375rem;
  position: relative;
  overflow: hidden;
}

.brand-pill::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.brand-pill:hover {
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-deep));
  color: var(--white);
  border-color: var(--pink-deep);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 182, 193, 0.4);
}

.brand-pill:hover::before {
  width: 200px;
  height: 200px;
}

/* CTA Section */
.collab-cta-section {
  margin-top: calc(var(--spacing-2xl) * 2);
  padding: var(--spacing-2xl) 0;
}

.cta-box {
  background: linear-gradient(135deg, #fff5f7 0%, #fffbfc 50%, #ffffff 100%);
  padding: calc(var(--spacing-2xl) * 1.5);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 3px solid var(--pink-light);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(244, 167, 185, 0.15), 0 16px 60px rgba(244, 167, 185, 0.08);
}

.cta-box::before {
  content: '✨';
  position: absolute;
  font-size: 10rem;
  opacity: 0.06;
  top: -40px;
  right: -20px;
  animation: float 6s ease-in-out infinite;
  filter: blur(2px);
}

.cta-box::after {
  content: '💼';
  position: absolute;
  font-size: 8rem;
  opacity: 0.05;
  bottom: -30px;
  left: -10px;
  animation: float 8s ease-in-out infinite reverse;
  filter: blur(2px);
}

.cta-box h3 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-box > p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-lg);
}

.cta-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 2px dashed var(--pink-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .collab-hero h1 {
    font-size: 3rem;
  }
  
  .category-block {
    padding: var(--spacing-xl);
  }
}

@media (max-width: 768px) {
  .collab-hero {
    padding: var(--spacing-xl) 0;
    padding-top: 120px;
  }
  
  .collab-hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .collab-stats {
    gap: var(--spacing-md);
  }
  
  .stat-badge {
    min-width: 120px;
    padding: var(--spacing-md) var(--spacing-lg);
  }
  
  .stat-badge .stat-number {
    font-size: 2rem;
  }
  
  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
  }
  
  .category-header h2 {
    font-size: 1.5rem;
  }
  
  .category-block {
    padding: var(--spacing-lg);
  }
  
  .brand-pill {
    font-size: 0.875rem;
    padding: var(--spacing-xs) var(--spacing-md);
  }
  
  .cta-box {
    padding: var(--spacing-xl);
  }
  
  .cta-box h3 {
    font-size: 1.75rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .collab-hero h1 {
    font-size: 1.75rem;
  }
  
  .stat-badge {
    flex: 1 1 calc(50% - var(--spacing-md));
    min-width: 0;
  }
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* ================================
   NEW SECTIONS STYLES
   ================================ */

/* === WHY BRANDS SECTION === */
.why-brands-section {
  background: var(--white);
}

.why-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.why-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 251, 252, 0.9) 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 4px 20px rgba(244, 167, 185, 0.12), 0 8px 40px rgba(244, 167, 185, 0.08);
  border: 2px solid var(--pink-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-primary), var(--pink-deep));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 167, 185, 0.15), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.why-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(244, 167, 185, 0.25), 0 16px 60px rgba(244, 167, 185, 0.15);
  border-color: var(--pink-primary);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover::after {
  width: 300px;
  height: 300px;
}

.why-icon {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
}

.why-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.975rem;
  position: relative;
  z-index: 1;
}

/* === IMPACT SECTION === */
.impact-section {
  background: linear-gradient(135deg, #fff5f7 0%, #fffbfc 100%);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.impact-card {
  background: linear-gradient(145deg, var(--white) 0%, rgba(255, 251, 252, 0.8) 100%);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: 0 4px 20px rgba(244, 167, 185, 0.12), 0 8px 40px rgba(244, 167, 185, 0.08);
  border: 2px solid var(--pink-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 182, 193, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.impact-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(244, 167, 185, 0.25), 0 16px 60px rgba(244, 167, 185, 0.15);
  border-color: var(--pink-primary);
}

.impact-card:hover::before {
  opacity: 1;
}

.impact-stat {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-display);
  margin-bottom: var(--spacing-sm);
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.impact-card:hover .impact-stat {
  transform: scale(1.08);
}

.impact-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  display: block;
  position: relative;
  z-index: 1;
}

.impact-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* === PROCESS SECTION === */
.process-section {
  background: var(--white);
}

.process-timeline {
  max-width: 900px;
  margin: var(--spacing-2xl) auto 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 40px;
  bottom: 40px;
  width: 4px;
  background: linear-gradient(180deg, var(--pink-primary), var(--pink-light));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(244, 167, 185, 0.3);
}

.process-step {
  display: flex;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-deep));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(244, 167, 185, 0.3), 0 8px 24px rgba(244, 167, 185, 0.15);
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(244, 167, 185, 0.4), 0 12px 40px rgba(244, 167, 185, 0.2);
}

.step-content {
  flex: 1;
  background: linear-gradient(145deg, var(--white) 0%, rgba(255, 251, 252, 0.7) 100%);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(244, 167, 185, 0.12), 0 8px 40px rgba(244, 167, 185, 0.08);
  border: 2px solid var(--pink-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.08), transparent);
  transition: left 0.5s ease;
}

.step-content:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(244, 167, 185, 0.2), 0 12px 50px rgba(244, 167, 185, 0.12);
  border-color: var(--pink-primary);
}

.step-content:hover::before {
  left: 100%;
}

.step-content h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.step-duration {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink-light), #ffe4e9);
  color: var(--pink-deep);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.process-cta {
  text-align: center;
  margin-top: var(--spacing-2xl);
  padding: var(--spacing-2xl);
  background: linear-gradient(135deg, #fff5f7 0%, var(--white) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid var(--pink-light);
}

.process-note {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-lg);
}

/* === CONTENT TYPES SECTION === */
.content-types-section {
  background: linear-gradient(135deg, #fff5f7 0%, #fffbfc 100%);
}

.content-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.content-type {
  background: linear-gradient(145deg, var(--white) 0%, rgba(255, 251, 252, 0.8) 100%);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(244, 167, 185, 0.12), 0 8px 40px rgba(244, 167, 185, 0.08);
  border: 2px solid var(--pink-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.content-type::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(244, 167, 185, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.content-type:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(244, 167, 185, 0.25), 0 16px 60px rgba(244, 167, 185, 0.15);
  border-color: var(--pink-primary);
}

.content-type:hover::before {
  opacity: 1;
}

.content-icon {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.content-type:hover .content-icon {
  transform: scale(1.1) rotate(-5deg);
}

.content-type h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  text-align: center;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
}

.content-type ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-type ul li {
  padding: var(--spacing-xs) 0;
  color: var(--text-dark);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.content-type ul li::before {
  content: '✓';
  color: var(--pink-primary);
  font-weight: 700;
  font-size: 1.125rem;
}

/* === CATEGORIES INTRO === */
.categories-intro {
  background: var(--white);
  padding: var(--spacing-xl) 0;
}

/* === RESPONSIVE STYLES FOR NEW SECTIONS === */
@media (max-width: 1024px) {
  .why-brands-grid,
  .content-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-brands-grid,
  .impact-grid,
  .content-types-grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .process-step {
    gap: var(--spacing-md);
  }
  
  .step-content {
    padding: var(--spacing-md);
  }
  
  .impact-stat {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .why-icon,
  .content-icon {
    font-size: 2rem;
  }
  
  .why-card h3,
  .content-type h3 {
    font-size: 1.125rem;
  }
  
  .impact-stat {
    font-size: 2rem;
  }
  
  .process-timeline::before {
    left: 20px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .process-step {
    gap: var(--spacing-sm);
  }
  
  .step-content:hover {
    transform: translateX(5px);
  }
}

/* ================================
   ADDITIONAL VISUAL ENHANCEMENTS
   ================================ */

/* Sparkle Animation for decorative elements */
@keyframes sparkle {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Pulse Animation for interactive elements */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(244, 167, 185, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(244, 167, 185, 0);
  }
}

/* Shine effect for cards */
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

/* Glow pulse for numbers */
@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(244, 167, 185, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(244, 167, 185, 0.6));
  }
}

/* Apply glow animation to impact stats */
.impact-card:hover .impact-stat {
  animation: glowPulse 2s ease-in-out infinite;
}

/* Add subtle animations to stat badges */
.stat-badge {
  animation: fadeInUp 0.4s ease-out forwards;
}

.stat-badge:nth-child(1) {
  animation-delay: 0s;
}

.stat-badge:nth-child(2) {
  animation-delay: 0.1s;
}

.stat-badge:nth-child(3) {
  animation-delay: 0.15s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add decorative corner accents to category blocks */
.category-block::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(244, 167, 185, 0.1), transparent);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.4s ease;
}

.category-block:hover::after {
  transform: scale(1.5);
  opacity: 0.5;
}

/* Enhanced section headers with subtle animations */
.section-header {
  position: relative;
  display: inline-block;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--pink-primary), transparent);
  border-radius: 2px;
}

/* Smooth scroll behavior for the entire page */
html {
  scroll-behavior: smooth;
}

/* Selection styling */
::selection {
  background: var(--pink-primary);
  color: var(--white);
}

::-moz-selection {
  background: var(--pink-primary);
  color: var(--white);
}
