/* Global Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* 1. Hero Section - Luxury Style */
.about-hero {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url(../../images/home/home-bg.jpg);
  background-size: cover;
  background-position: center top;
  background-attachment: fixed; /* Parallax effect */
  color: #fff;
  padding: 100px 20px 0 20px; /* Add top padding for nav */
  margin-top: 0;
}
.about-hero__content {
  max-width: 900px;
  z-index: 2;
  color: #fff !important;
}
.about-hero__subtitle {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
  display: block;
  color: #fff !important;
}
.about-hero__title {
  font-family: Prata, serif;
  font-size: var(--text-4xl);
  margin-bottom: 30px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  color: #fff !important;
}
.about-hero__text {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
  font-weight: 300;
  color: #fff !important;
}
/* Fix for transparent header - ensure header is properly positioned over banner */
.site-header {
  background-color: transparent;
  /* position: relative; REMOVED - let core.css handle positioning */
  width: 100%;
  /* z-index: 100; REMOVED - use core.css z-index (1000) instead */
}

.about-section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* 2. Split Layout Section */
.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  overflow: hidden;
  max-width: 1200px;
  margin: 100px auto; /* Detach from hero and add spacing */
  border-radius: 20px; /* Floating card effect */
  box-shadow: 0 20px 60px rgba(0,0,0,0.05); /* Soft shadow */
}
.split-section__content {
  flex: 1;
  padding: 80px 60px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-section__image {
  flex: 1;
  min-width: 300px;
  min-height: 600px; /* Ensure minimum height */
  height: auto;
  align-self: stretch; /* Stretch to match content height */
  background-size: cover;
  background-position: center;
}
.section-tag {
  color: var(--primary-color);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}
.section-title {
  font-family: Prata, serif;
  font-size: var(--text-3xl);
  color: #222;
  margin-bottom: 30px;
  line-height: 1.2;
}
.section-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}
/* 4. Core Values Grid (Minimalist) */
.values-section {
  padding: 100px 20px;
  background-color: #fcfcfc;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.values-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.value-item {
  text-align: center;
  transition: transform 0.3s;
}
.value-item:hover {
  transform: translateY(-10px);
}
/* SVG Icon Styles */
.sdm-icon {
  width: 60px;
  height: 60px;
  stroke: #da0e2b; /* Brand red by default */
  transition: all 0.3s ease;
}
.value-item:hover .sdm-icon {
  transform: scale(1.1);
}
.value-item__icon-wrapper {
  height: 60px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.step-icon {
  width: 32px;
  height: 32px;
  stroke: #da0e2b;
  transition: all 0.3s ease;
}
.timeline-step:hover .step-icon {
  stroke: #fff;
  transform: scale(1.1);
}
.value-item__title {
  font-family: Prata, serif;
  font-size: 22px;
  color: #222;
  margin-bottom: 15px;
}
.value-item__text {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}
/* 5. Timeline Steps */
.timeline-section {
  padding: 100px 20px;
  background-color: #fff;
}
.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
/* Line connecting steps */
.timeline-container::before {
  content: '';
  position: absolute;
  top: 30px; /* Adjusted for smaller circles */
  left: 0;
  right: 0;
  height: 2px;
  background: #eee;
  z-index: 1;
}
.timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.timeline-step {
  flex: 1;
  text-align: center;
  padding: 0 15px;
}
.step-number {
  width: 60px; /* Smaller, more elegant */
  height: 60px;
  background: #fff;
  border: 2px solid #da0e2b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-family: Prata, serif;
  font-size: 24px;
  color: #da0e2b;
  box-shadow: 0 0 0 10px #fff; /* Mask the line */
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.timeline-step:hover .step-number {
  background-color: #da0e2b;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 0 10px #fff, 0 10px 20px rgba(218, 14, 43, 0.3);
}
.step-title {
  font-family: Prata, serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
}
.step-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
/* 6. Testimonials - Success Stories Section */
.testimonials-section {
  padding: 100px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.testimonials-section .testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch; /* Ensure cards have same height */
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0;
}
.testimonials-section .testimonial-card {
  flex: 0 0 calc(33.333% - 20px); /* 3 columns with 30px gap */
  background: #fff;
  padding: 50px 30px 40px; /* Increased top padding for quote */
  border-radius: 12px; /* Softer corners */
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  position: relative;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left; /* Left align text */
  opacity: 1 !important; /* Override scroll animation opacity */
  transform: none !important; /* Override scroll animation transform */
}
.testimonials-section .testimonial-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1) !important;
  z-index: 10; /* Ensure hovered card is above others */
  border-left-color: transparent !important; /* Ensure no red border */
}
/* Decorative Quote Icon */
.testimonials-section .testimonial-card::before {
  content: '“';
  position: absolute;
  top: -20px;
  left: 20px; /* Adjusted left position */
  font-family: Georgia, serif;
  font-size: 80px;
  color: #da0e2b;
  opacity: 0.1;
  line-height: 1;
}
.testimonials-section .testimonial-quote {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}
.testimonials-section .testimonial-user {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align start */
  margin-top: auto; /* Push to bottom */
}
.testimonials-section .user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  filter: grayscale(100%); /* Maintain grayscale style */
}
.testimonials-section .user-info {
  text-align: left;
}
.testimonials-section .user-name {
  font-family: Prata, serif;
  font-size: 16px;
  color: #222;
  display: block;
  font-weight: bold;
}
.testimonials-section .user-location {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Standardized Section Title */

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #da0e2b;
  margin: 20px auto 0; /* Centered underline */
}
/* Responsive */
@media (max-width: 768px) {

  
  
  .stats-grid, .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Success Stories Mobile Adaptation */
  .testimonials-section {
    padding: 60px 15px; /* Reduced padding on mobile */
  }
  
  .testimonials-section .testimonials-grid {
    justify-content: center;
    gap: 20px; /* Reduced gap on mobile */
  }
  
  .testimonials-section .testimonial-card {
    flex: 0 0 calc(50% - 10px); /* 2 columns with smaller gap */
    padding: 30px 20px 25px; /* Reduced padding on mobile */
  }
  
  /* Single column on very small screens */
  @media (max-width: 480px) {
    .testimonials-section .testimonial-card {
      flex: 0 0 100%; /* Single column */
      max-width: 350px;
      margin: 0 auto;
    }
  }
  
  /* Extra small screens (phones in portrait) */
  @media (max-width: 360px) {
    .testimonials-section .testimonial-card {
      padding: 25px 15px 20px; /* Even smaller padding */
    }
    
    .testimonials-section .testimonial-card::before {
      font-size: 50px; /* Even smaller quote icon */
      top: -10px;
      left: 10px;
    }
    
    .testimonials-section .testimonial-quote {
      font-size: 13px; /* Even smaller text */
    }
    
    .testimonials-section .user-avatar {
      width: 35px; /* Even smaller avatar */
      height: 35px;
    }
  }
  
  /* Adjust decorative quote icon */
  .testimonials-section .testimonial-card::before {
    font-size: 60px; /* Smaller on mobile */
    top: -15px;
    left: 15px;
  }
  
  /* Adjust text sizes */
  .testimonials-section .testimonial-quote {
    font-size: 14px; /* Smaller on mobile */
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* Adjust user avatar */
  .testimonials-section .user-avatar {
    width: 40px; /* Smaller on mobile */
    height: 40px;
    margin-right: 12px;
  }
  
  /* Adjust user info */
  .testimonials-section .user-name {
    font-size: 14px; /* Smaller on mobile */
  }
  
  .testimonials-section .user-location {
    font-size: 11px; /* Smaller on mobile */
  }
  
  /* Adjust hover effects for mobile */
  .testimonials-section .testimonial-card:hover {
    transform: translateY(-5px) !important; /* Smaller lift on mobile */
  }
  
  
  
  

  /* Timeline Steps Mobile Adaptation */
  .timeline-container::before {
    display: none; /* Hide timeline line on mobile */
  }
  
  .timeline-steps {
    flex-direction: column; /* Vertical layout on mobile */
    align-items: center;
    gap: 40px; /* Space between steps */
  }
  
  .timeline-step {
    width: 100%;
    max-width: 400px;
    text-align: left; /* Left align on mobile */
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  
  .timeline-step::before {
    display: none; /* Hide timeline line on mobile */
  }
  
  .step-number {
    margin: 0; /* Remove auto margin */
    flex-shrink: 0; /* Prevent icon from shrinking */
    width: 50px; /* Slightly smaller on mobile */
    height: 50px;
    box-shadow: 0 0 0 8px #fff; /* Smaller shadow on mobile */
  }
  
  .step-content {
    flex: 1;
  }
  
  .step-title {
    font-size: 18px; /* Slightly smaller on mobile */
    margin-bottom: 10px;
  }
  
  .step-desc {
    font-size: 13px; /* Slightly smaller on mobile */
  }
  
  /* Adjust hover effects for mobile */
  .timeline-step:hover .step-number {
    transform: scale(1.05); /* Smaller scale on mobile */
  }
  
  .timeline-step div:last-child {
      flex: 1; /* Text container takes remaining space */
  }
  
  
}



/* ==========================================================================
   Affiliate Page Styles
   ========================================================================== */

/* 1. Affiliate Hero Section */


@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}



@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}


.affiliate-hero__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  min-width: 150px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #ffd700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.stat-card:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.stat-card:hover::before {
  transform: scaleX(1);
}
.stat-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: bold;
  color: #ffd700;
  display: block;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}
.stat-card__number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: bold;
  margin-bottom: 8px;
  color: #ffd700;
}
.stat-card__label {
  font-size: var(--text-sm);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}






@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}
@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
.btn__icon {
  margin-right: 10px;
  font-size: 1.2em;
}
/* 2. Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.feature-card {
  background: var(--bg-body);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(178, 50, 86, 0.1);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(178, 50, 86, 0.1), transparent);
  transition: left 0.6s ease;
}
.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(178, 50, 86, 0.25);
  border-color: rgba(178, 50, 86, 0.3);
}
.feature-card:hover::before {
  left: 100%;
}
.feature-card__icon {
  font-size: 48px;
  margin-bottom: 25px;
  display: inline-block;
  transition: transform 0.4s ease;
}
.feature-card:hover .feature-card__icon {
  transform: scale(1.2) rotate(5deg);
}
.feature-card__icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}
.feature-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: 15px;
  color: var(--text-main);
}
.feature-card__text {
  color: var(--text-gray);
  line-height: 1.6;
}
/* 3. Commission Tiers */
.commission-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}
.commission-tier {
  background: var(--bg-body);
  border-radius: 16px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.commission-tier::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ffd700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.commission-tier:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 60px -15px rgba(178, 50, 86, 0.3);
  border-color: rgba(178, 50, 86, 0.2);
}
.commission-tier:hover::before {
  transform: scaleX(1);
}
.commission-tier--premium {
  border-color: rgba(255, 215, 0, 0.3);
}
.commission-tier--premium::before {
  background: linear-gradient(90deg, #ffd700, #ffed4e);
}
.commission-tier__amount {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: bold;
  color: var(--primary-color);
  margin: 20px 0;
  position: relative;
  display: inline-block;
}
.commission-tier--premium .commission-tier__amount {
  color: #ffd700;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}
.commission-tier__amount::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}
.commission-tier--premium .commission-tier__amount::after {
  background: #ffd700;
}
.commission-tier--premium {
  border-top: 5px solid #ffd700;
}
.commission-tier--standard {
  border-top: 5px solid var(--primary-color);
}
.commission-tier--basic {
  border-top: 5px solid var(--secondary-color);
}
.commission-tier__header {
  padding: 40px 30px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, transparent 100%);
}
.commission-tier__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: 10px;
  color: var(--text-main);
}
.commission-tier__amount {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: bold;
  color: var(--primary-color);
  margin: 10px 0;
}
.commission-tier__subtitle {
  color: var(--text-light);
  font-size: var(--text-sm);
}
.commission-tier__features {
  padding: 30px;
  list-style: none;
}
.commission-tier__features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-gray);
}
.commission-tier__features li:last-child {
  border-bottom: none;
}
.commission-tier__features li::before {
  content: '✓';
  color: var(--primary-color);
  margin-right: 10px;
  font-weight: bold;
}
/* 4. Additional Commissions */
.additional-commissions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}
.additional-card {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border-radius: 16px;
  padding: 30px;
  gap: 20px;
}
.additional-card__icon {
  font-size: 40px;
  flex-shrink: 0;
}
.additional-card__content {
  flex: 1;
}
.additional-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  margin-bottom: 5px;
  color: var(--text-main);
}
.additional-card__amount {
  font-size: var(--text-xl);
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.additional-card__text {
  color: var(--text-gray);
  line-height: 1.6;
}
/* 5. Payment Info */
.payment-info {
  margin: 50px 0;
}
.payment-info__card {
  background: linear-gradient(135deg, var(--primary-color) 0%, #902845 100%);
  border-radius: 16px;
  padding: 40px;
  color: var(--text-white);
}
.payment-info__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: 30px;
  text-align: center;
}
.payment-info__list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}
.payment-info__list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
}
.payment-info__list li:last-child {
  border-bottom: none;
}
/* 6. Promotion Steps */
.promotion-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}
.step-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease;
}
.step-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}
.step-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--primary-color);
  margin-bottom: 20px;
  opacity: 0.3;
}
.step-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  margin-bottom: 15px;
  color: var(--text-white);
}
.step-card__text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
/* 7. Promotion Channels */
.promotion-channels {
  margin: 50px 0;
}
.promotion-channels__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: 30px;
  color: var(--text-white);
  text-align: center;
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.channel-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 12px 24px;
  text-align: center;
  color: var(--text-white);
  font-size: var(--text-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.channel-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), #ffd700);
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}
.channel-tag:hover {
  transform: translateY(-5px) scale(1.05);
  color: var(--text-white);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(178, 50, 86, 0.3);
}
.channel-tag:hover::before {
  transform: scaleX(1);
}
.channel-tag::after {
  content: '→';
  position: absolute;
  right: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.channel-tag:hover::after {
  opacity: 1;
  transform: translateX(0);
}
/* 8. Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.testimonial-card {
  background: var(--bg-body);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border-left: 4px solid transparent;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), #ffd700);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(178, 50, 86, 0.2);
  border-left-color: var(--primary-color);
}
.testimonial-card:hover::before {
  transform: scaleY(1);
}
.testimonial-card__text {
  font-style: italic;
  color: var(--text-gray);
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
  font-size: var(--text-lg);
}
.testimonial-card__text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 40px;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: Georgia, serif;
}
.testimonial-card__earnings {
  color: var(--primary-color);
  font-weight: bold;
  font-size: var(--text-sm);
  background: rgba(178, 50, 86, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 10px;
}
.testimonial-card__content {
  margin-bottom: 30px;
}
.testimonial-card__text {
  font-style: italic;
  color: var(--text-gray);
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}
.testimonial-card__author {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}
.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 5px;
}
.testimonial-card__role {
  color: var(--text-light);
  font-size: var(--text-sm);
  margin-bottom: 5px;
}
.testimonial-card__earnings {
  color: var(--primary-color);
  font-weight: bold;
  font-size: var(--text-sm);
}
/* 9. Premium CTA */


@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.cta-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-premium__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-premium__text {
  font-size: var(--text-lg);
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}
.cta-premium__features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.cta-premium__actions {
  margin-top: 40px;
}


.earning-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.earning-visual__item {
  text-align: center;
}
.earning-visual__amount {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 10px;
}
.earning-visual__label {
  font-size: var(--text-sm);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.earning-visual__arrow {
  font-size: var(--text-3xl);
  color: var(--primary-color);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}
/* Section Variations */
.section--light {
  background: var(--bg-light);
}

.section__header {
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  color: var(--primary-color);
  font-size: var(--text-xs);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: var(--text-lg);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
/* Scroll Animation Styles */
.feature-card, .commission-tier, .step-card, .testimonial-card, .stat-card, .additional-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Staggered animation delays */
















/* Responsive Styles */
@media (max-width: 768px) {
  
  
  
  
  .affiliate-hero__stats {
    gap: 20px;
  }
  
  .stat-card {
    min-width: 120px;
    padding: 20px;
  }
  
  
  
  .cta-premium {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .earning-visual {
    flex-direction: column;
    gap: 20px;
  }
  
  .earning-visual__arrow {
    transform: rotate(90deg);
  }
  
  .features-grid, .commission-tiers, .additional-commissions, .promotion-steps, .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  
  
  
  
  .stat-card {
    min-width: 100px;
    padding: 15px;
  }
  
  .stat-card__number {
    font-size: var(--text-2xl);
  }
  
  .channels-grid {
    grid-template-columns: 1fr;
  }
  
  .additional-card {
    flex-direction: column;
    text-align: center;
  }
}


/* =========================================
   CONTACT US PAGE SPECIFIC STYLES
   Optimized for responsive design and CSS variables
   ========================================= */

/* Contact Info Items */
.contact-info-list {
  list-style: none;
  padding: 0;
  }

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-right: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.contact-info-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--text-dark);
  margin-bottom: 5px;
}

.contact-info-content p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-gray);
  line-height: 1.5;
}

/* Contact Form Styles */
.contact-form-container {
  --contact-border-color: color-mix(in srgb, var(--text-main) 20%, transparent);
  --contact-focus-ring: color-mix(in srgb, var(--primary-color) 15%, transparent);
  --contact-elevation: color-mix(in srgb, var(--primary-color) 40%, transparent);
  background: var(--bg-body);
  padding: 40px;
  border-radius: 12px;
}

.contact-form-group {
  margin-bottom: 25px;
}

.contact-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: var(--text-sm);
}

.contact-form-select, .contact-form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--contact-border-color);
  border-radius: var(--radius-md);
  background: var(--bg-body);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: var(--text-md);
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  height: 48px;
}

.contact-form-select:focus, .contact-form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--contact-focus-ring);
}

.contact-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-select option {
  background: var(--bg-body);
  color: var(--text-dark);
  padding: 8px;
}


.contact-form-submit {
  display: inline-block;
  width: auto;
  min-width: 200px;
  max-width: 300px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 600;
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 12px 32px;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  margin-top: 10px;
  text-align: center;
  white-space: nowrap;
}

.contact-form-submit:hover {
  background-color: var(--primary-color-hover);
  color: var(--text-white);
  border-color: var(--primary-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--contact-elevation);
}

.contact-form-note {
  text-align: left;
  font-size: var(--text-xs);
  color: var(--text-light);
  margin-top: 15px;
  font-family: var(--font-body);
}

/* Social Links */
.social-links--contact {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links--contact a {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  border-radius: 50% !important;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.social-links--contact a:hover {
  background: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(178, 50, 86, 0.25);
  border-color: var(--primary-color) !important;
}

.social-links--contact .social-icon {
  width: 22px;
  height: 22px;
  filter: grayscale(100%);
  opacity: 0.7; /* Default opacity for non-hover state */
  transition: transform 0.3s ease; /* Remove filter transition to avoid muddy colors */
}

.social-links--contact a:hover .social-icon, .social-links--contact a:hover img {
  filter: none !important; /* Restore original icon color/clarity */
  opacity: 1 !important;
  transform: none; /* Avoid double movement */
}

/* Responsive styles for social links */
@media (max-width: 768px) {
  .social-links--contact {
    gap: 12px;
    margin-top: 24px;
  }
  
  .social-links--contact a {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
  }
  
  .social-links--contact .social-icon {
    width: 20px;
    height: 20px;
  }
}

/* Contact Page Specific Overrides */
.contact-split-section {
  margin: 0 auto 100px;
}

.split-section__content--contact-info {
  background: #f9f9f9;
}

.contact-faq-section {
  background: #fcfcfc;
}

/* FAQ Section Overrides */
.faq-grid--contact {
  max-width: 1000px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  
  
  .values-section .values-grid {
    grid-template-columns: 1fr;
  }
  
  
  .split-section {
    flex-direction: column;
  }
  
  .split-section__content {
    padding: 40px 20px !important;
  }
  
}

@media (max-width: 375px) {
  .contact-form-container {
    padding: 20px;
  }
  
  .contact-form-select, .contact-form-textarea {
    font-size: var(--text-sm);
  }
  
  .contact-form-submit {
    padding: 10px 24px;
    font-size: var(--text-sm);
  }
}
