/* ROOT VARIABLE */
:root {
  --primary-red: #E31E24;
  --primary-red-light: #F44336;
  --primary-red-dark: #C41C1F;
  --primary-red-rgb: 227, 30, 36;
  --secondary-blue: #0060AA;
  --light-bg: #FFFFFF;
  --light-gray: #F8F9FA;
  --light-pink: #FFF5F5;
  --light-pink-2: #FEF9F9;
  --text-dark: #1E1E1E;
  --text-muted: #666666;
  --white: #fff;
  --border-light: #e9ecef;
}

/* CUSTOM CSS */
* {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-red-dark) 0%, var(--primary-red) 100%);
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-red) #f1f1f1;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-weight: 400;
  box-sizing: border-box;
  line-height: 1.6;
  background-color: var(--light-bg) !important;
  color: var(--text-dark);
}

.container {
  max-width: 1260px !important;
}


a {
  text-decoration: none !important;
}

/* FONT SIZE */
.font-58 {
  font-size: clamp(1.875rem, 1.5662rem + 1.6471vw, 3.625rem);
}

.font-42 {
  font-size: clamp(1.625rem, 1.4485rem + 0.9412vw, 2.625rem);
}

.font-20 {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

.font-18 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

/* FONT WEIGHT */
.bold {
  font-weight: 700;
}

/* PRIMARY COLORS */
.text-primary-red {
  color: var(--primary-red) !important;
}

/* ANIMATED CTA BUTTON */
.btn-cta-animated {
  background: var(--secondary-blue);
  border: 2px solid var(--secondary-blue);
  color: var(--white);
  font-weight: 700;
  font-size: clamp(12px, 2vw, 16px);
  padding: clamp(10px, 2.5vw, 18px) clamp(24px, 4vw, 36px);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(0, 96, 170, 0.35);
  transition: all 0.3s ease;
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {

  0%,
  100% {
    box-shadow: 0 6px 15px rgba(0, 96, 170, 0.35);
  }

  50% {
    box-shadow: 0 8px 20px rgba(0, 96, 170, 0.5);
  }
}

/* Button Shine Effect */
.btn-cta-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: btnShine 2.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes btnShine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

/* Button Glow Effect */
.btn-cta-animated::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 70%);
  border-radius: 8px;
  pointer-events: none;
  animation: btnGlow 1.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes btnGlow {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.6;
  }
}

/* Button Hover State */
.btn-cta-animated:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 96, 170, 0.6);
  background: #0052a3;
  border-color: #0052a3;
  color: #fff;
}

.btn-cta-animated:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 96, 170, 0.4);
}

/* Button Arrow Animation */
.btn-cta-animated .btn-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
  animation: arrowBounce 1.8s ease-in-out infinite;
}

@keyframes arrowBounce {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

.btn-cta-animated:hover .btn-arrow {
  animation: none;
  transform: translateX(6px);
}

/* HERO SECTION */
.hero-section {
  background:
    radial-gradient(circle at 20% 50%, rgb(227 30 36 / 8%) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgb(0 96 170 / 7%) 0%, transparent 50%), radial-gradient(circle at 90% 90%, rgba(227, 30, 36, 0.08) 0%, transparent 50%), linear-gradient(135deg, #ffffff 0%, #faf8f8 50%, #f5f5f5 100%);
  color: var(--text-dark);
  position: relative;
  padding: clamp(40px, 8vw, 80px) 0;
  overflow: hidden;
}

/* Chart Pattern - Subtle Lines */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 35px,
      rgba(var(--primary-red-rgb), 0.015) 35px,
      rgba(var(--primary-red-rgb), 0.015) 70px),
    repeating-linear-gradient(-45deg,
      transparent,
      transparent 35px,
      rgba(0, 96, 170, 0.01) 35px,
      rgba(0, 96, 170, 0.01) 70px);
  z-index: 0;
}

/* Wave Pattern */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230060AA' fill-opacity='0.03' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  z-index: 0;
}

@keyframes waveMove {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-15px);
  }
}

.hero-section .container {
  position: relative;
  z-index: 5;
}

/* Decorative Chart Icon - Top Right */
.hero-section .chart-decor {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size:clamp(4.375rem, 3.8235rem + 2.9412vw, 7.5rem);
  opacity: 0.2;
  z-index: 1;
  animation: floatChart 6s ease-in-out infinite;
}

@keyframes floatChart {

  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* Decorative Search Icon - Left Side */
.hero-section .search-decor {
  position: absolute;
  bottom: 100px;
  left: 30px;
  font-size: clamp(3.125rem, 2.7941rem + 1.7647vw, 5rem);
  opacity: 0.2;
  z-index: 1;
  animation: floatSearch 8s ease-in-out infinite reverse;
}

@keyframes floatSearch {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* VIDEO CARD SECTION */
.video-section-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-pink-2) 100%);
  border-radius: clamp(16px, 3vw, 24px);
  padding: clamp(12px, 3vw, 30px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(227, 30, 36, 0.08);
  transition: all 0.4s ease;
}

.video-section-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(227, 30, 36, 0.12);
}

.video-card {
  background: var(--white);
  border-radius: clamp(12px, 2.5vw, 20px);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(227, 30, 36, 0.08);
  transition: all 0.4s ease;
}

.video-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(227, 30, 36, 0.15);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: clamp(12px, 2.5vw, 20px);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: clamp(12px, 2.5vw, 20px);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  border-radius: clamp(12px, 2.5vw, 20px);
}

.thumbnail-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover .thumbnail-img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(60px, 10vw, 100px);
  height: clamp(60px, 10vw, 100px);
  background: rgba(227, 30, 36, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
  background: var(--primary-red);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(227, 30, 36, 0.4);
}

.play-icon {
  color: var(--white);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: bold;
  margin-left: 4px;
}


/* Background Elements - Hidden */
.floating-elements,
.grid-pattern,
.gradient-orb-1,
.gradient-orb-2,
.particle-container,
.advanced-particles {
  display: none;
}

/* BADGE - Workshop Badge */
.badge-live {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-pink) 100%);
  color: var(--text-dark);
  padding: clamp(8px, 2vw, 12px) clamp(14px, 3vw, 24px);
  border-radius: 50px;
  font-size: clamp(10px, 2vw, 14px);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 12px);
  border: 2px solid rgba(var(--primary-red-rgb), 0.15);
  box-shadow:
    0 4px 20px rgba(var(--primary-red-rgb), 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.badge-live:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(var(--primary-red-rgb), 0.15),
    0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(var(--primary-red-rgb), 0.25);
}

/* Badge Shine Effect */
.badge-live::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-red-rgb), 0.08), transparent);
  animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.badge-live-premium {
  background: linear-gradient(135deg, var(--white) 0%, var(--white) 100%);
  border: 1px solid var(--secondary-blue);
}

/* Live Dot - Pulsing Animation */
.live-dot {
  width: clamp(0.4375rem, 0.4044rem + 0.1765vw, 0.625rem);
  height: clamp(0.4375rem, 0.4044rem + 0.1765vw, 0.625rem);
  background: var(--primary-red);
  border-radius: 50%;
  position: relative;
  animation: livePulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(var(--primary-red-rgb), 0.5);
}

.live-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--primary-red);
  border-radius: 50%;
  animation: livePulseRing 1.5s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--primary-red-rgb), 0.5);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(var(--primary-red-rgb), 0);
  }
}

@keyframes livePulseRing {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

/* LIVE Text Badge */
.live-text {
  background: var(--secondary-blue);
  color: var(--white);
  font-weight: 700;
  font-size:clamp(0.5rem, 0.4669rem + 0.1765vw, 0.6875rem);;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: liveGlow 2s ease-in-out infinite;
}

@keyframes liveGlow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(0, 96, 170, 0.4);
  }

  50% {
    box-shadow: 0 0 15px rgba(0, 96, 170, 0.6);
  }
}

/* Badge Text Styling */
.badge-live .badge-text {
  font-weight: 500;
  color: var(--text-dark);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* HERO TYPOGRAPHY */
.hero-main-title {
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

/* Highlight Text - "master" */
.highlight-text {
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, rgba(var(--primary-red-rgb), 0.2), rgba(var(--primary-red-rgb), 0.1));
  border-radius: 4px;
  z-index: -1;
  animation: highlightGrow 2s ease-out forwards;
}

@keyframes highlightGrow {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

/* Time Highlight - "3 Hours" with shine animation */
.time-highlight {
  position: relative;
  display: inline-block;
  font-weight: 800;
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 25%, #fff 50%, #ff6b6b 75%, #dc3545 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 3s linear infinite;
}

.time-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #dc3545, #ff6b6b, #dc3545);
  border-radius: 2px;
  animation: underlinePulse 1.5s ease-in-out infinite;
}

@keyframes textShine {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

@keyframes underlinePulse {

  0%,
  100% {
    transform: scaleX(0.8);
    opacity: 0.7;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* AI Badge */
.ai-badge {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  color: var(--white);
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 8px;
  display: inline-block;
  position: relative;
  animation: aiBadgePulse 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(var(--primary-red-rgb), 0.3);
}

.ai-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: aiShine 2s ease-in-out infinite;
}

@keyframes aiBadgePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(var(--primary-red-rgb), 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(var(--primary-red-rgb), 0.4);
  }
}

@keyframes aiShine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.hero-subtitle {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* FEATURE TAGS */
.feature-tag-dark {
  background: var(--white);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(var(--primary-red-rgb), 0.15);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-tag-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


/* INSTRUCTOR CARD - ENHANCED */
.instructor-card-modern {
  text-align: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--white);
  border-radius: clamp(16px, 3vw, 24px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(var(--primary-red-rgb), 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.instructor-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(var(--primary-red-rgb), 0.12);
}

.instructor-image-wrapper {
  position: relative;
  display: inline-block;
}

.instructor-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(var(--primary-red-rgb), 0.3);
}

/* Avatar Image Style */
.avatar-modern-img {
  width: clamp(250px, 25vw, 200px);
  height: clamp(250px, 30vw, 240px);
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.instructor-card-modern:hover .avatar-modern-img {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(var(--primary-red-rgb), 0.2);
}

.instructor-name-modern {
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 6px;
  margin-top: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.instructor-title-modern {
  color: var(--text-muted);
  font-size: clamp(12px, 2vw, 14px);
  margin-bottom: 1rem;
}

.instructor-stats-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1rem;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--light-gray);
  padding: clamp(8px, 1.5vw, 10px) clamp(10px, 2vw, 16px);
  border-radius: 12px;
  font-size: clamp(12px, 1.8vw, 13px);
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: var(--light-pink);
  transform: translateX(5px);
}

.stat-icon {
  font-size: 16px;
}

.stat-text {
  color: var(--text-muted);
}

/* WORKSHOP DETAILS - ENHANCED */
.workshop-details-modern {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--white);
  border-radius: clamp(16px, 3vw, 24px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(var(--primary-red-rgb), 0.08);
  position: sticky;
  top: 20px;
  overflow: hidden;
}

.workshop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.workshop-title {
  color: var(--text-dark);
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  margin: 0;
}

.workshop-badge {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: var(--white);
  padding: clamp(6px, 1vw, 6px) clamp(14px, 2vw, 14px);
  border-radius: 20px;
  font-size: clamp(12px, 1.5vw, 12px);
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* DETAIL CARDS - ENHANCED */
.detail-card-enhanced {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  border: 1px solid rgba(var(--primary-red-rgb), 0.08);
  border-radius: clamp(10px, 2vw, 16px);
  padding: clamp(10px, 2vw, 16px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 14px);
  transition: all 0.3s ease;
  height: 100%;
}

.detail-card-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--primary-red-rgb), 0.1);
  border-color: rgba(var(--primary-red-rgb), 0.15);
}

.detail-icon-wrapper {
  width: clamp(36px, 6vw, 48px);
  height: clamp(36px, 6vw, 48px);
  background: linear-gradient(135deg, #e31e2424 0%, #f4433633 100%);
  border-radius: clamp(10px, 2vw, 14px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon-text {
  font-size: clamp(16px, 3vw, 22px);
}

.detail-content {
  flex: 1;
}

.detail-label {
  color: var(--text-muted);
  font-size: clamp(9px, 1.5vw, 11px);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.detail-value {
  color: var(--text-dark);
  font-size: clamp(12px, 2vw, 15px);
  font-weight: 700;
}

/* ADDITIONAL INFO - ENHANCED */
.additional-info-enhanced {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 1rem;
  border-top: 1px dashed rgba(var(--primary-red-rgb), 0.15);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px clamp(0.5rem, 0.4559rem + 0.2353vw, 0.75rem);
  background: var(--light-pink);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(var(--primary-red-rgb), 0.08);
  transform: translateX(5px);
}

.info-icon {
  font-size:  clamp(0.875rem, 0.8309rem + 0.2353vw, 1.125rem);
}

.filling-fast {
  color: var(--primary-red);
  font-weight: 600;
  font-size:  clamp(0.75rem, 0.7279rem + 0.1176vw, 0.875rem);
}

.includes-text {
  color: var(--text-muted);
  font-size:  clamp(0.75rem, 0.7279rem + 0.1176vw, 0.875rem);
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .instructor-card-modern,
  .workshop-details-modern {
    margin-bottom: 20px;
  }

  .workshop-details-modern {
    position: relative;
    top: auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }

  .hero-section::after {
    width:100%;
  }

  .hero-main-title br {
    display: none;
  }

  .hero-subtitle br {
    display: none;
  }


  .workshop-title {
    text-align: center;
  }
}

@media (max-width: 576px) {


  .feature-tag-dark {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Move video after title on mobile */
  .hero-section .col-12 {
    display: flex;
    flex-direction: column;
  }

  .hero-badge {
    order: 1;
  }

  .hero-main-title {
    order: 2;
  }

  .hero-subtitle {
    order: 4;
  }

  .hero-features {
    order: 5;
  }

  .vedio-section-mobile {
    order: 3 !important;
    margin-bottom: 15px !important;
    width: 100% !important;
  }
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* FOCUS STATES */
.btn:focus,
.form-control:focus {
  box-shadow: 0 0 0 3px rgba(var(--primary-red-rgb), 0.25);
}

/* ========================================
   MEET YOUR TRAINER SECTION
======================================== */
.trainer-section {
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

/* Trainer Image Container */
.trainer-image-container {
  position: relative;
  display: inline-block;
}

.trainer-main-img {
  width: 100%;
  max-width: clamp(300px, 40vw, 400px);
  height: auto;
  border-radius: clamp(16px, 3vw, 24px);
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.trainer-image-container:hover .trainer-main-img {
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(var(--primary-red-rgb), 0.2);
}

.trainer-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  color: var(--white);
  padding: clamp(14px, 2.5vw, 20px) clamp(18px, 3vw, 25px);
  border-radius: clamp(14px, 2.5vw, 20px);
  text-align: center;
  box-shadow: 0 10px 30px rgba(var(--primary-red-rgb), 0.4);
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.trainer-experience-badge .exp-number {
  display: block;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  line-height: 1;
}

.trainer-experience-badge .exp-text {
  display: block;
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 500;
  margin-top: 4px;
}

/* Trainer Content */
.trainer-content {
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgb(0 96 170 / 10%) 0%, rgb(0 96 170 / 4%) 100%);
  color: var(--secondary-blue);
  padding: clamp(8px, 1.5vw, 10px) clamp(16px, 2.5vw, 22px);
  border-radius: 25px;
  font-size: clamp(11px, 1.8vw, 13px);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trainer-title {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.trainer-name-large {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 5px;
}

.trainer-designation {
  color: var(--text-muted);
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 1rem;
}

.trainer-bio {
  color: var(--text-muted);
  font-size: clamp(13px, 2vw, 15px);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Trainer Stats Grid */
.trainer-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 1.5rem;
}

.trainer-stat-card {
  background: var(--white);
  border: 1px solid rgba(var(--primary-red-rgb), 0.08);
  border-radius: clamp(12px, 2vw, 16px);
  padding: clamp(12px, 2vw, 16px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 12px);
  transition: all 0.3s ease;
}

.trainer-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(var(--primary-red-rgb), 0.1);
  border-color: rgba(var(--primary-red-rgb), 0.15);
}

.stat-icon-box {
  width: clamp(30px, 6vw, 50px);
  height: clamp(30px, 6vw, 50px);
  background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 100%);
  border: 1px dashed rgba(var(--primary-red-rgb), 0.2);
  border-radius: clamp(0.5rem, 0.4559rem + 0.2353vw, 0.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(15px, 3vw, 24px);
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-info .stat-number {
  font-size:clamp(11px, 2vw, 18px);
  font-weight: 700;
  color: var(--text-dark);
}

.stat-info .stat-label {
  font-size: clamp(9px, 1.5vw, 12px);
  color: var(--text-muted);
  font-weight: 500;
}

/* Trainer Credentials */
.trainer-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: clamp(8px, 1.5vw, 10px) clamp(12px, 2vw, 16px);
  border-radius: 25px;
  font-size: clamp(11px, 1.8vw, 13px);
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid rgba(var(--primary-red-rgb), 0.1);
  transition: all 0.3s ease;
}

.credential-item:hover {
  background: var(--light-pink);
  border-color: rgba(var(--primary-red-rgb), 0.2);
  transform: translateY(-2px);
}

.credential-icon {
  color: var(--primary-red);
  font-weight: 700;
}

/* Trainer Section Responsive */
@media (max-width: 991px) {
  .trainer-image-container {
    text-align: center;
    margin-bottom: 2rem;
  }

  .trainer-experience-badge {
    right: 0;
    bottom: 20px;
  }

  .trainer-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trainer-section {
    text-align: center;
  }

  .trainer-experience-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
    display: inline-block;
  }

  .trainer-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .trainer-credentials {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .trainer-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .stat-info{
align-items: flex-start;
  }
  .trainer-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }


  .trainer-experience-badge {
    position: relative;
    right: auto;
    bottom: 50px;
  }

  .trainer-image-container {
    margin-bottom: 0rem;
  }

  .trainer-section {
    margin-top: 0px;
  }
}


/* ========================================
   SCROLL ARROWS - CONSULTATION CARDS
======================================== */
.scroll-arrow {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  margin: 0 !important;
}

.scroll-arrow.show {
  display: flex;
}

.arrow-down {
  font-size: 24px;
  color: var(--primary-red);
  animation: arrowBounceDown 1.5s ease-in-out infinite;
  font-weight: 700;
}

@keyframes arrowBounceDown {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

/* Show arrow only on mobile */
@media (max-width: 991px) {
  .scroll-arrow.show {
    display: flex !important;
  }
}

@media (min-width: 992px) {
  .scroll-arrow {
    display: none !important;
  }
}

/* ========================================
   WHY THIS COURSE SECTION - ENHANCED
======================================== */
.why-course-section {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Floating Decorations */
.why-course-section::before {
  content: '💵';
  position: absolute;
  top: 10%;
  left: 5%;
  font-size: 30px;
  opacity: 0.15;
  animation: floatMoney 8s ease-in-out infinite;
  transform: rotate(-15deg);
}

.why-course-section::after {
  content: '💵';
  position: absolute;
  top: 30%;
  right: 8%;
  font-size: 25px;
  opacity: 0.12;
  animation: floatMoney 10s ease-in-out infinite reverse;
  transform: rotate(20deg);
}

@keyframes floatMoney {

  0%,
  100% {
    transform: translateY(0) rotate(-15deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Additional floating elements */
.why-floating-decor {
  position: absolute;
  font-size: 24px;
  opacity: 0.1;
  animation: floatMoney 12s ease-in-out infinite;
}

.why-floating-decor:nth-child(1) {
  top: 60%;
  left: 3%;
  animation-delay: 0s;
}

.why-floating-decor:nth-child(2) {
  top: 80%;
  right: 5%;
  animation-delay: 2s;
}

.why-floating-decor:nth-child(3) {
  top: 15%;
  right: 15%;
  animation-delay: 4s;
}

.why-floating-decor:nth-child(4) {
  bottom: 20%;
  left: 10%;
  animation-delay: 6s;
}

.why-course-title {
  color: var(--text-dark);
  line-height: 1.3;
  position: relative;
}

/* Why Features Grid - Enhanced */
.why-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-feature-card {
  border: 2px solid transparent;
  background-image: linear-gradient(var(--white), var(--white)), linear-gradient(140deg, #e31e241f 0%, #f4433605 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: clamp(12px, 2vw, 16px);
  padding: clamp(12px, 2.5vw, 20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 32, 48, 0.02) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-feature-card:hover {
  border-color: var(--primary-red);
  border-style: solid;
  transform: translateY(-5px);
  box-shadow:
    0 15px 35px rgba(212, 32, 48, 0.12),
    0 5px 15px rgba(0, 0, 0, 0.05);
}

.why-feature-card:hover::before {
  opacity: 1;
}

.why-feature-icon {
  width: clamp(36px, 6vw, 55px);
  height: clamp(36px, 6vw, 55px);
  background: linear-gradient(135deg, rgba(212, 32, 48, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
  border: 2px solid rgba(212, 32, 48, 0.15);
  border-radius: clamp(8px, 2vw, 14px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 3vw, 26px);
  margin-bottom: clamp(8px, 1.5vw, 14px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 32, 48, 0.08);
}

.why-feature-card:hover .why-feature-icon {
  background: linear-gradient(135deg, var(--primary-red) 0%, #ff4757 100%);
  border-color: var(--primary-red);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(212, 32, 48, 0.25);
}

.why-feature-title {
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: clamp(4px, 1vw, 8px);
  transition: color 0.3s ease;
}

.why-feature-card:hover .why-feature-title {
  color: var(--primary-red);
}

.why-feature-desc {
  font-size: clamp(11px, 1.8vw, 13px);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ========================================
   WHY GMB WORKS BETTER - REDESIGNED
======================================== */
.why-gmb-section {

  position: relative;
  overflow: hidden;
}

.why-gmb-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(227, 30, 36, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(227, 30, 36, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.why-gmb-section .container {
  position: relative;
  z-index: 1;
}

/* Grid Layout */
.why-gmb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(16px, 3vw, 24px);
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* Card Styling */
.why-gmb-card {
  position: relative;
  height: 100%;
}

.why-gmb-card-inner {
  background: var(--white);
  border: 2px solid rgba(227, 30, 36, 0.08);
  border-radius: clamp(14px, 2.5vw, 20px);
  padding: clamp(12px, 3vw, 20px);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.why-gmb-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-gmb-card:hover .why-gmb-card-inner {
  border-color: var(--primary-red);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(227, 30, 36, 0.15);
}

.why-gmb-card:hover .why-gmb-card-inner::before {
  transform: scaleX(1);
}

/* Icon */
.why-gmb-icon {
  font-size: clamp(24px, 5vw, 40px);
  margin-bottom: clamp(12px, 2vw, 18px);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(50px, 8vw, 80px);
  height: clamp(50px, 8vw, 80px);
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(244, 67, 54, 0.05) 100%);
  border: 2px solid rgba(227, 30, 36, 0.15);
  border-radius: clamp(10px, 2.5vw, 20px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(227, 30, 36, 0.08);
}

.why-gmb-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(227, 30, 36, 0.3);
  border-radius: clamp(10px, 2.5vw, 20px);
  transform: translate(-50%, -50%);
  animation: iconRing 2s ease-out infinite;
}

@keyframes iconRing {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }

  100% {
    width: 120%;
    height: 120%;
    opacity: 0;
  }
}

.why-gmb-card:hover .why-gmb-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(227, 30, 36, 0.2);
}

/* Title */
.why-gmb-title {
  font-size: clamp(13px, 2.2vw, 17px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: clamp(8px, 1.5vw, 12px);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.why-gmb-card:hover .why-gmb-title {
  color: var(--primary-red);
}

/* Description */
.why-gmb-desc {
  font-size: clamp(12px, 1.9vw, 14px);
  color: var(--text-muted);
  line-height: clamp(1.125rem, 1.1029rem + 0.1176vw, 1.25rem);
  margin: 0;
  transition: color 0.3s ease;
}

.why-gmb-card:hover .why-gmb-desc {
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .why-gmb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-gmb-grid {
    gap: 14px;
  }

}

/* Why Single Image - Enhanced */
.why-single-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.why-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 0 0 4px rgba(255, 255, 255, 0.9);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
  width: 100%;
  max-width: 450px;
}

.why-image-frame:hover {
  transform: translateY(-10px);
  box-shadow:
    0 5px 20px rgba(212, 32, 48, 0.2),
    0 0 0 4px rgba(212, 32, 48, 0.2);
}

.why-main-img {
  width: 100%;
  max-width: 100%;
  min-height: 450px;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.why-image-frame:hover .why-main-img {
  transform: scale(1.03);
}

/* Decorative Elements */
.image-decoration {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.image-deco-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(212, 32, 48, 0.15) 0%, rgba(212, 32, 48, 0.05) 100%);
  top: -30px;
  right: 0;
  animation: decoFloat 6s ease-in-out infinite;
}

.image-deco-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 32, 48, 0.1) 0%, rgba(212, 32, 48, 0.03) 100%);
  bottom: -20px;
  left: 0;
  animation: decoFloat 8s ease-in-out infinite reverse;
}

@keyframes decoFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

/* Why Image Badge */
.why-image-badge {
  position: absolute;
  bottom: 30px;
  left: 0;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(212, 32, 48, 0.4);
  animation: badgeFloat 4s ease-in-out infinite;
  z-index: 10;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.badge-icon {
  font-size: 28px;
}

.badge-text-why {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

/* Why Course Responsive */
@media (max-width: 992px) {
  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-single-image-wrapper {
    margin-top: 2rem;
  }

  .why-main-img {
    max-width: 100%;
    min-height: 380px;
  }

  .why-image-badge {
    left: 0;
    bottom: 20px;
  }

  .why-single-image-mobile {
    display: none !important;
  }


}

@media (max-width: 768px) {
  .why-course-section {
    text-align: center;
  }

  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .why-feature-card {
    text-align: left;
  }

  .title-underline {
    margin: 0 auto 12px;
  }

  .why-single-image-wrapper {
    margin-top: 2rem;
    justify-content: center;
  }

  .why-main-img {
    max-width: 100%;
    min-height: 320px;
  }

  .why-image-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
  }

  .image-deco-1 {
    width: 80px;
    height: 80px;
    top: -15px;
    right: -15px;
  }

  .image-deco-2 {
    width: 60px;
    height: 60px;
    bottom: -10px;
    left: -10px;
  }
}

@media (max-width: 576px) {
  .why-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .why-main-img {
    max-width: 240px;
  }

  .why-image-badge {
    padding: 12px 16px;
  }

  .badge-icon {
    font-size: 22px;
  }

  .badge-text-why {
    font-size: 11px;
  }
}


/* ========================================
   WHO THIS COURSE IS DESIGNED FOR SECTION
======================================== */
.designed-for-section {
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.designed-for-section .container {
  position: relative;
  z-index: 1;
}

.designed-for-section .title-underline {
  background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
  width: 80px;
}

.font-italic {
  font-style: italic;
}

.designed-card {
  background: linear-gradient(135deg, #ffffff 0%, rgb(227 30 36 / 6%) 100%);
  border-radius: 14px;
  padding: clamp(18px, 3vw, 24px);
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 2.5vw, 18px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(var(--primary-red-rgb), 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.designed-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-red), var(--primary-red-light));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.designed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(var(--primary-red-rgb), 0.1);
  border-color: rgba(var(--primary-red-rgb), 0.2);
}

.designed-card:hover::before {
  transform: scaleY(1);
}

.designed-icon {
  width: clamp(44px, 6vw, 52px);
  height: clamp(44px, 6vw, 52px);
  background: #f5f5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(22px, 4vw, 28px);
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.designed-card:hover .designed-icon {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  transform: scale(1.15);
}

.designed-content {
  flex: 1;
}

.designed-title {
  font-size: clamp(14px, 2.2vw, 16px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.designed-card:hover .designed-title {
  color: var(--primary-red);
}

.designed-desc {
  font-size: clamp(12px, 1.8vw, 13px);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Designed For Section Responsive */
@media (max-width: 768px) {
  .designed-card {
    padding: 16px;
  }

  .designed-card:hover {
    transform: translateY(-3px);
  }
}


/* ========================================
   COMPARISON SECTION (Before vs After)
======================================== */
.comparison-section {
  background: linear-gradient(135deg, #fafafa 0%, var(--white) 50%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.comparison-card {
  background: var(--white);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 32px);
  height: 100%;
  border: 2px solid transparent;
  background-image:
    linear-gradient(var(--white), var(--white)),
    linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(var(--primary-red-rgb), 0.15);
}

.comparison-header {
  font-size: clamp(15px, 2.5vw, 17px);
  font-weight: 700;
  color: var(--text-dark);
  padding-bottom: clamp(16px, 2.5vw, 20px);
  border-bottom: 2px solid rgba(var(--primary-red-rgb), 0.15);
  margin-bottom: clamp(16px, 2.5vw, 20px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-label {
  color: var(--primary-red);
  font-weight: 800;
  font-size: clamp(14px, 2.2vw, 16px);
}

.comparison-label-green {
  color: #22c55e;
  font-weight: 700;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(12px, 2vw, 16px);
  font-size: clamp(13px, 2vw, 15px);
  color: var(--text-dark);
  background: linear-gradient(135deg, rgba(var(--primary-red-rgb), 0.03) 0%, transparent 100%);
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.6;
}

.comparison-list li:hover {
  background: linear-gradient(135deg, rgba(var(--primary-red-rgb), 0.08) 0%, rgba(var(--primary-red-rgb), 0.02) 100%);
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(var(--primary-red-rgb), 0.1);
}

.list-icon {
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.comparison-list li:hover .list-icon {
  transform: scale(1.2);
}

.comparison-footer {
  color: var(--text-dark);
  font-weight: 500;
}

.comparison-card {
  background: var(--white);
  border-radius: clamp(12px, 2vw, 16px);
  padding: clamp(16px, 3vw, 24px);
  height: 100%;
  border: 1px solid var(--border-light);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.comparison-header {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  color: var(--text-dark);
  padding-bottom: clamp(12px, 2vw, 16px);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: clamp(12px, 2vw, 16px);
}

.comparison-label {
  color: var(--primary-red);
  font-weight: 700;
}

.comparison-label-green {
  color: #22c55e;
  font-weight: 700;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: clamp(8px, 1.5vw, 10px) 6px;
  font-size: clamp(12px, 2vw, 14px);
  color: var(--text-muted);
  border-bottom: 1px dashed var(--border-light);
}

.comparison-list li:last-child {
  border-bottom: none;
}

.list-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.comparison-footer {
  color: var(--text-muted);
}

/* ========================================
   CONSULTATION WORKS SECTION - REDESIGNED
======================================== */
.consultation-works-section {
  background: linear-gradient(135deg, #fafafa 0%, var(--white) 50%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

/* New Horizontal Card Design */
.consultation-card {
  background: var(--white);
  border-radius: 14px;
  padding: clamp(18px, 3vw, 24px);
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  background-image:
    linear-gradient(var(--white), var(--white)), linear-gradient(0deg, #e31e2433 0%, #f443360d 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.consultation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.consultation-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-red-rgb), 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.consultation-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 40px rgba(var(--primary-red-rgb), 0.12);
}

.consultation-card:hover::before {
  transform: scaleX(1);
}

.consultation-card:hover::after {
  opacity: 1;
}

.card-number {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.35;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: numberFloat 3s ease-in-out infinite;
}

@keyframes numberFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.consultation-card:hover .card-number {
  opacity: 0.65;
  transform: scale(1.2);
  animation: none;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.card-icon {
  font-size: 32px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.05);
  }
}

.consultation-card:hover .card-icon {
  transform: scale(1.3);
  animation: none;
}

.card-title {
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.consultation-card:hover .card-title {
  color: var(--primary-red);
}

.card-desc {
  font-size: clamp(13px, 1.8vw, 13px);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .consultation-card {
    padding: 20px;
    gap: 16px;
  }

  .card-number {
    font-size: 36px;
  }

  .card-icon {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .consultation-card {
    padding: 16px;
    gap: 12px;
  }

  .card-number {
    font-size: 32px;
  }

  .card-icon {
    font-size: 24px;
  }

}

/* Responsive */
@media (max-width: 768px) {

  .comparison-card,
  .growth-card {
    padding: 18px;
  }
}


/* ========================================
   EXCLUSIVE BONUSES SECTION
======================================== */
.bonuses-section {
  background: var(--light-gray);
}

.bonus-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: clamp(12px, 2vw, 16px);
  padding: clamp(16px, 3vw, 24px);
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(var(--primary-red-rgb), 0.12);
  border-color: rgba(var(--primary-red-rgb), 0.2);
}

.bonus-image {
  position: relative;
  margin-bottom: clamp(14px, 2.5vw, 20px);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(160px, 25vw, 200px);
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 50%, #ffd6d6 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(220, 53, 69, 0.1);
  box-shadow: inset 0 0 30px rgba(220, 53, 69, 0.05);
}

.bonus-img {
  width: 90%;
  height: 90%;
  max-height: clamp(180px, 28vw, 220px);
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.bonus-card:hover .bonus-img {
  transform: scale(1.05);
}

.bonus-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(var(--primary-red-rgb), 0.3);
}

.bonus-label {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  color: var(--white);
  padding: clamp(10px, 2vw, 14px) clamp(12px, 2vw, 18px);
  border-radius: 12px;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 600;
  line-height: 1.4;
  margin-top: auto;
}

/* ========================================
/* ========================================
   FAQ SECTION - UNIQUE MODERN DESIGN
======================================== */
.faq-section {
  background: linear-gradient(135deg, #fafafa 0%, var(--white) 50%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
  padding-bottom:  clamp(5rem, 4.2279rem + 4.1176vw, 9.375rem);
}

.faq-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.faq-item {
  background: var(--white);
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(var(--primary-red-rgb), 0.2);
  box-shadow: 0 12px 35px rgba(var(--primary-red-rgb), 0.15);
  transform: translateY(-4px);
}

.faq-item:hover::before {
  transform: scaleX(1);
}

.faq-question {
  width: 100%;
  padding: clamp(16px, 3vw, 24px);
  background: var(--white);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(14px, 2.2vw, 17px);
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary-red);
}

.faq-question:not(.collapsed) {
  color: var(--primary-red);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(var(--primary-red-rgb), 0.1) 0%, rgba(var(--primary-red-rgb), 0.05) 100%);
  border: 2px solid rgba(var(--primary-red-rgb), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-red);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-question:hover .faq-icon {
  background: linear-gradient(135deg, rgba(var(--primary-red-rgb), 0.15) 0%, rgba(var(--primary-red-rgb), 0.08) 100%);
  border-color: rgba(var(--primary-red-rgb), 0.3);
  transform: scale(1.1) rotate(10deg);
}

.faq-question:not(.collapsed) .faq-icon {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  border-color: var(--primary-red);
  color: var(--white);
  transform: scale(1.15) rotate(180deg);
}

.faq-answer {
  padding: 12px clamp(16px, 3vw, 24px) clamp(16px, 3vw, 24px);
  font-size: clamp(13px, 2vw, 15px);
  color: var(--text-muted);
  line-height: 1.9;
  background: linear-gradient(135deg, rgba(var(--primary-red-rgb), 0.02) 0%, var(--white) 100%);
  border-top: 1px solid rgba(var(--primary-red-rgb), 0.08);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ Number Badge */
.faq-number {
  width: auto;
  height: auto;
  background: transparent;
  color: #f443363d;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.75rem, 1.7059rem + 0.2353vw, 2rem);
  font-weight: 900;
  flex-shrink: 0;
  margin-right: 16px;
  box-shadow: none;
  letter-spacing: 2px;
  position: relative;
  transition: all 0.3s ease;
  line-height: 1;
}

.faq-number::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-question:hover .faq-number {
  transform: scale(1.2);
  box-shadow: none;
}

.faq-question:hover .faq-number::before {
  opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-item {
    margin-bottom: 16px;
    border-radius: 16px;
  }

  .faq-question {
    padding: 14px 16px;
  }

}

@media (max-width: 576px) {
  .faq-item {
    border-radius: 14px;
  }

  .faq-question {
    font-size: 14px;
    gap: 12px;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}


/* ========================================
   STICKY BOTTOM CTA BAR - REDESIGNED
======================================== */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
  padding: 16px 0;
  z-index: 1000;
  box-shadow: 0 -12px 50px rgba(0, 0, 0, 0.15);
  border-top: 3px solid var(--primary-red);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.sticky-cta-bar.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-icon {
  width: clamp(36px, 5vw, 45px);
  height: clamp(36px, 5vw, 45px);
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  border: none;
  border-radius: clamp(10px, 1.5vw, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 3vw, 22px);
  box-shadow: 0 4px 15px rgba(var(--primary-red-rgb), 0.3);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(var(--primary-red-rgb), 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(var(--primary-red-rgb), 0.4);
  }
}

.sticky-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-status {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 700;
  color: var(--text-dark);
}

.sticky-seats {
  font-size: clamp(10px, 1.5vw, 13px);
  font-weight: 600;
  color: var(--secondary-blue);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sticky-seats::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--secondary-blue);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.sticky-cta-btn {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: clamp(11px, 2vw, 16px);
  padding: clamp(10px, 2vw, 16px) clamp(14px, 4vw, 36px);
  border-radius: clamp(8px, 1.5vw, 12px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  animation: btnFloat 3s ease-in-out infinite, btnGlowBlue 2s ease-in-out infinite, btnBorderPulse 2.5s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(0, 96, 170, 0.4);
  transition: background 0.8s ease-in-out, transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out, border-color 0.8s ease-in-out;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.sticky-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 96, 170, 0.4), transparent);
  animation: btnShineBlue 2.5s ease-in-out infinite;
}

.sticky-cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
  border-radius: clamp(8px, 1.5vw, 12px);
  pointer-events: none;
  animation: btnShimmer 3s ease-in-out infinite;
}

@keyframes btnFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes btnGlowBlue {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(0, 96, 170, 0.4);
  }

  50% {
    box-shadow: 0 8px 30px rgba(0, 96, 170, 0.7);
  }
}

@keyframes btnBorderPulse {

  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.3);
  }

  50% {
    border-color: rgba(255, 255, 255, 0.6);
  }
}

@keyframes btnShineBlue {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

@keyframes btnShimmer {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.sticky-cta-btn:hover {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-red) 100%);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 15px 50px rgba(227, 30, 36, 0.7);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  animation: btnFloat 3s ease-in-out infinite, btnGlowBlue 2s ease-in-out infinite, btnBorderPulse 2.5s ease-in-out infinite;
}

.sticky-cta-btn:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 4px 15px rgba(0, 96, 170, 0.4);
}

.sticky-cta-btn .btn-arrow {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.8s ease-in-out;
  position: relative;
  z-index: 1;
  animation: arrowWave 1.5s ease-in-out infinite;
}

@keyframes arrowWave {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(3px);
  }
}

.sticky-cta-btn:hover .btn-arrow {
  transform: translateX(8px);
}

/* Responsive */
@media (max-width: 991px) {
  .sticky-cta-bar {
    padding: 14px 0;
  }
}

@media (max-width: 768px) {
  .sticky-cta-bar {
    padding: 12px 0;
  }

  .sticky-cta-content {
    gap: 12px;
  }

  .sticky-cta-left {
    flex: 1;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .sticky-cta-bar {
    padding: 10px 0;
  }

  .sticky-cta-content {
    gap: 8px;
  }

  .sticky-icon {
    display: none;
  }

  .sticky-seats::before {
    width: 6px;
    height: 6px;
  }

  .sticky-cta-btn .btn-arrow {
    display: none;
  }
}






.logo-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.logo-brand {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 17px;
  letter-spacing: 0.5px;
}

.logo-pioneer {
  color: #1a237e;
  font-style: italic;
  font-weight: 700;
}

.logo-cxo {
  font-weight: 400;
  color: var(--text-muted);
}

.cxo-highlight {
  font-weight: 800;
  color: var(--primary-red);
}

.logo-insight {
  color: var(--text-dark);
  font-size: 14px;
}

.insight-red {
  color: var(--primary-red);
  font-weight: 700;
}

.insight-blue {
  color: #1565c0;
  font-weight: 600;
}

.logo-thepioneer {
  color: #1565c0;
  font-weight: 600;
}






/* ========================================
   THANK YOU PAGE - PREMIUM DESIGN
======================================== */
.thankyou-section {
  background: linear-gradient(180deg, #fef7f7 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.thankyou-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--primary-red-rgb), 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.thankyou-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--primary-red-rgb), 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.thankyou-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(var(--primary-red-rgb), 0.06);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

/* Floating Background Icons */
.thankyou-card::before {
  content: '🎉';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 35px;
  opacity: 0.12;
  z-index: 0;
  animation: floatIcon1 4s ease-in-out infinite;
}

.thankyou-card::after {
  content: '📊';
  position: absolute;
  top: 30px;
  right: 25px;
  font-size: 40px;
  opacity: 0.1;
  z-index: 0;
  animation: floatIcon2 5s ease-in-out infinite;
}

.floating-icon-1,
.floating-icon-2,
.floating-icon-3 {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.floating-icon-1 {
  bottom: 80px;
  left: 30px;
  font-size: 30px;
  animation: floatIcon3 6s ease-in-out infinite;
}

.floating-icon-2 {
  bottom: 120px;
  right: 40px;
  font-size: 28px;
  animation: floatIcon1 5s ease-in-out infinite 0.5s;
}

.floating-icon-3 {
  bottom: 40px;
  right: 100px;
  font-size: 25px;
  animation: floatIcon2 4s ease-in-out infinite 1s;
}

@keyframes floatIcon1 {

  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes floatIcon2 {

  0%,
  100% {
    transform: translateY(0) rotate(5deg);
  }

  50% {
    transform: translateY(-12px) rotate(-5deg);
  }
}

@keyframes floatIcon3 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(10deg);
  }
}

/* Celebration Banner */
.celebration-banner {
  position: relative;
  z-index: 1;
}

.confetti-wrapper {
  display: none;
}

.confetti {
  display: none;
}

.success-badge {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.35);
  animation: badgePop 0.5s ease-out, successPulse 2s ease-in-out infinite 0.5s;
  position: relative;
}

.success-badge::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(34, 197, 94, 0.4);
  animation: ripple 1.5s ease-out infinite;
}

.success-badge::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(34, 197, 94, 0.3);
  animation: ripple 1.5s ease-out infinite 0.5s;
}

@keyframes badgePop {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes successPulse {

  0%,
  100% {
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.35);
  }

  50% {
    box-shadow: 0 15px 50px rgba(34, 197, 94, 0.5);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.checkmark-path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawCheck 0.5s ease-out 0.3s forwards;
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

/* Order Summary Card */
.order-summary-card {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
}

.order-header {
  background: linear-gradient(135deg, #0d6efd17 0%, #0d6efd1c 100%);
  padding: 8px 16px;
  color: var(--white);
}

.order-label {
  font-weight: 600;
  font-size: 14px;
}

.order-id {
  font-size: 13px;
  opacity: 0.9;
}

.order-body {
  padding: 12px;
}

.order-content-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.order-details-content {
  flex: 1;
  min-width: 0;
}

.order-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #eee;
}

.course-thumb-wrapper {
  position: relative;
  flex-shrink: 0;
}

.course-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thumb-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.course-tag {
  background: var(--light-pink);
  color: var(--primary-red);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.price-paid {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
}


/* CTA Buttons */
.btn-access-course {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  color: var(--white);
  border: none;
  padding: 18px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(var(--primary-red-rgb), 0.3);
}

.btn-access-course:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(var(--primary-red-rgb), 0.4);
  color: var(--white);
}

.btn-icon {
  font-size: 20px;
}

.btn-secondary-action {
  background: var(--light-gray);
  color: var(--text-dark);
  border: 1px solid #eee;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-secondary-action:hover {
  background: var(--white);
  border-color: rgba(var(--primary-red-rgb), 0.2);
  color: var(--primary-red);
  transform: translateY(-2px);
}

/* Support Footer */
.support-footer {
  border-top: 1px dashed #eee;
}

.support-link {
  color: var(--primary-red);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.support-link:hover {
  color: var(--primary-red-dark);
}

/* Trust Badges */
.trust-item {
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-3px);
}

.trust-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 1260px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .thankyou-section {
    padding: 20px 0 !important;
    min-height: auto !important;
  }

  .thankyou-card {
    border-radius: 18px;
  }

  .floating-icon-1,
  .floating-icon-2,
  .floating-icon-3 {
    display: none;
  }

  .thankyou-card::before,
  .thankyou-card::after {
    font-size: 25px;
    opacity: 0.08;
  }

  .success-badge {
    width: 80px;
    height: 80px;
  }

  .success-badge svg {
    width: 35px;
    height: 35px;
  }

  .celebration-banner h1 {
    font-size: 24px !important;
  }


  .order-header {
    padding: 10px 15px;
  }

  .order-label,
  .order-id {
    font-size: 12px;
  }

  .order-content-row {
    gap: 12px;
  }

  .course-thumb {
    width: 65px;
    height: 65px;
    border-radius: 10px;
  }

  .thumb-badge {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .order-details-content h5 {
    font-size: 14px;
  }

  .course-tag {
    font-size: 9px;
    padding: 3px 8px;
  }

  .order-price-row {
    margin-top: 12px;
    padding-top: 12px;
  }

  .price-paid {
    font-size: 20px;
  }

  .section-heading {
    font-size: 14px;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }


  .step-icon {
    font-size: 20px;
  }

  .btn-secondary-action {
    padding: 12px 15px;
    font-size: 13px;
  }

  .trust-icon {
    font-size: 20px;
  }

  .trust-badges small {
    font-size: 11px;
  }

  .support-footer {
    padding-top: 15px !important;
    margin-top: 15px !important;
  }

  .support-footer p {
    font-size: 12px !important;
  }

  .support-link {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .thankyou-section {
    padding: 15px 0 !important;
  }


  .thankyou-card::before {
    top: 10px;
    left: 10px;
    font-size: 20px;
  }

  .thankyou-card::after {
    top: 15px;
    right: 10px;
    font-size: 22px;
  }

  .success-badge {
    width: 70px;
    height: 70px;
  }

  .success-badge svg {
    width: 30px;
    height: 30px;
  }

  .celebration-banner {
    margin-bottom: 20px !important;
  }

  .celebration-banner h1 {
    font-size: 20px !important;
    line-height: 1.3;
  }


  .celebration-banner p br {
    display: none;
  }

  .order-summary-card {
    margin-bottom: 20px !important;
    border-radius: 14px;
  }

  .order-content-row {
    gap: 10px;
  }

  .course-thumb {
    width: 55px;
    height: 55px;
    border-radius: 8px;
  }

  .thumb-badge {
    width: 22px;
    height: 22px;
    font-size: 10px;
    bottom: -3px;
    right: -3px;
  }

  .order-details-content h5 {
    font-size: 13px;
    margin-bottom: 6px !important;
  }

  .course-tag {
    font-size: 8px;
    padding: 2px 6px;
  }

  .order-price-row {
    margin-top: 10px;
    padding-top: 10px;
  }

  .price-paid {
    font-size: 18px;
  }

  .whats-next-section {
    margin-bottom: 20px !important;
  }

  .steps-timeline {
    gap: 8px;
  }

  .step-number {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .step-icon {
    font-size: 18px;
  }

  .cta-section .d-flex {
    flex-direction: row;
  }

  .btn-secondary-action {
    padding: 10px 8px;
    font-size: 11px;
  }

  .trust-badges {
    gap: 15px !important;
    padding-top: 12px !important;
    margin-top: 15px !important;
  }

  .trust-icon {
    font-size: 18px;
  }

  .trust-badges small {
    font-size: 10px;
  }
}

/* ========================================
   VIDEOS SECTION - UNIQUE MODERN DESIGN
======================================== */
.videos-section {
  background: linear-gradient(135deg, #fafafa 0%, var(--white) 50%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.videos-scroll-wrapper {
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 30px 0;
  border-radius: 24px;
  position: relative;
}

.videos-scroll-track {
  display: flex;
  gap: 24px;
  animation: scrollVideos 18s linear infinite;
  padding: 0 30px;
}

.videos-scroll-wrapper:hover .videos-scroll-track {
  animation-play-state: paused;
}

@keyframes scrollVideos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.video-card-scroll {
  flex-shrink: 0;
  width: 380px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(var(--primary-red-rgb), 0.1);
  position: relative;
}

.video-card-scroll::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
}

.video-card-scroll:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 4px 20px rgba(var(--primary-red-rgb), 0.2);
  border-color: rgba(var(--primary-red-rgb), 0.2);
}

.video-card-scroll:hover::before {
  transform: scaleX(1);
}

.video-badge-top {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(var(--primary-red-rgb), 0.3);
  letter-spacing: 0.5px;
}

.video-wrapper-scroll {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.video-wrapper-scroll::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 7;
  transition: background 0.4s ease;
  pointer-events: none;
}

.video-card-scroll:hover .video-wrapper-scroll::before {
  background: rgba(0, 0, 0, 0.4);
}

.video-wrapper-scroll iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.4s ease;
}

.video-card-scroll:hover .video-wrapper-scroll iframe {
  transform: scale(1.05);
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 8;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.video-wrapper-scroll:hover .video-play-icon {
  opacity: 0;
}

.play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  color: var(--white);
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 0 0 0 rgba(var(--primary-red-rgb), 0.7);
  animation: ringPulse 2s ease-in-out infinite;
  transition: all 0.4s ease;
  position: relative;
}

@keyframes ringPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--primary-red-rgb), 0.7);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(var(--primary-red-rgb), 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(var(--primary-red-rgb), 0);
  }
}

.video-card-scroll:hover .play-btn {
  animation: ringPulseHover 0.8s ease-in-out infinite;
}

@keyframes ringPulseHover {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--primary-red-rgb), 0.8);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(var(--primary-red-rgb), 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(var(--primary-red-rgb), 0);
  }
}

.video-info-scroll {
  padding: 12px 14px;
  background: var(--white);
}

.video-title-scroll {
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.video-card-scroll:hover .video-title-scroll {
  color: var(--primary-red);
}

.video-desc-scroll {
  font-size: clamp(11px, 1.8vw, 13px);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.video-card-scroll:hover .video-desc-scroll {
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .video-card-scroll {
    width: 340px;
  }

  .videos-scroll-track {
    gap: 18px;
    padding: 0 20px;
  }

  .videos-scroll-wrapper::before,
  .videos-scroll-wrapper::after {
    width: 60px;
  }

  .play-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .video-card-scroll {
    width: 280px;
  }

  .videos-scroll-track {
    gap: 14px;
    padding: 0 15px;
      animation: scrollVideos 9s linear infinite;
  }

  .video-title-scroll {
    font-size: 13px;
  }

  .videos-scroll-wrapper::before,
  .videos-scroll-wrapper::after {
    width: 40px;
  }

  .play-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}


/* ========================================
   SUCCESS STORIES SECTION - SCROLLING
======================================== */
.stories-scroll-wrapper {
  width: 100%;
  overflow: hidden;
}

.stories-scroll-track {
  display: flex;
  gap: 20px;
  animation: scrollStories 40s linear infinite;
  width: fit-content;
  padding: 0 20px;
}

@keyframes scrollStories {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.stories-scroll-wrapper:hover .stories-scroll-track {
  animation-play-state: paused;
}

.success-story-card-small {
  flex-shrink: 0;
  width: 280px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--primary-red-rgb), 0.08);
  cursor: pointer;
}

.success-story-card-small:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 20px rgba(var(--primary-red-rgb), 0.15);
  border-color: rgba(var(--primary-red-rgb), 0.15);
}

.story-image-wrapper-small {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--light-pink) 100%);
}

.story-image-small {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.success-story-card-small:hover .story-image-small {
  transform: scale(1.08);
}

.story-content-small {
  padding: 16px;
}

.story-name-small {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.2;
}

.story-business-small {
  font-size: 12px;
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 8px;
}

.story-result-small {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .success-story-card-small {
    width: 240px;
  }

  .story-image-wrapper-small {
    height: 140px;
  }

  .story-content-small {
    padding: 14px;
  }

  .story-name-small {
    font-size: 14px;
  }

  .story-business-small {
    font-size: 11px;
  }

  .story-result-small {
    font-size: 11px;
  }

  @keyframes scrollStories {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }
}

@media (max-width: 576px) {
  .success-story-card-small {
    width: 200px;
  }

  .story-image-wrapper-small {
    height: 120px;
  }

  .story-content-small {
    padding: 12px;
  }

  .story-name-small {
    font-size: 13px;
  }

  .story-business-small {
    font-size: 10px;
  }

  .story-result-small {
    font-size: 10px;
  }

  .stories-scroll-track {
    gap: 15px;
    padding: 0 15px;
  }
}


/* ========================================
   MEET DHANU SINGH - EXPERT INFO SECTION
======================================== */
.dhanu-expert-section {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

/* Image Card Wrapper with Animated Rotating Half Border */
.expert-image-card {
  background: var(--white);
  border-radius: 24px;
  padding: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expert-image-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light), transparent, transparent);
  -webkit-mask:
    linear-gradient(to right, black 50%, transparent 50%);
  mask:
    linear-gradient(to right, black 50%, transparent 50%);
  animation: rotateBorder 3s linear infinite;
  pointer-events: none;
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.expert-image-card:hover {
  box-shadow: 0 20px 60px rgba(var(--primary-red-rgb), 0.2);
  transform: translateY(-8px);
}

.expert-image-container {
  position: relative;
}

.expert-main-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  margin: 0 auto;
}

.expert-image-container:hover .expert-main-img {
  transform: scale(1.02);
  box-shadow: 0 15px 45px rgba(var(--primary-red-rgb), 0.15);
}

/* Right Side Content */
.expert-content {
  position: relative;
  z-index: 1;
}

.expert-subtitle {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Stats Grid */
.expert-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 2rem;
}

.expert-stat {
  background: var(--white);
  border: 1px solid rgba(var(--primary-red-rgb), 0.12);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.expert-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expert-stat:hover {
  border-color: rgba(var(--primary-red-rgb), 0.2);
  box-shadow: 0 10px 25px rgba(var(--primary-red-rgb), 0.1);
  transform: translateY(-4px);
}

.expert-stat:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: clamp(11px, 1.8vw, 13px);
  color: var(--text-muted);
  font-weight: 500;
}

/* Highlights Section */
.expert-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--light-pink);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-item:hover {
  background: rgba(var(--primary-red-rgb), 0.1);
  transform: translateX(6px);
}

.highlight-icon {
  font-size: 18px;
  color: var(--primary-red);
  font-weight: 700;
  flex-shrink: 0;
}

.highlight-text {
  font-size: clamp(12px, 1.8vw, 14px);
  color: var(--text-dark);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {

  .expert-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .dhanu-expert-section {
    text-align: center;
  }

  .expert-content {
    text-align: center;
  }

  .expert-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .expert-stat {
    padding: 16px 12px;
  }

  .stat-number {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .expert-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .expert-stat {
    padding: 12px 8px;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 10px;
  }
}



/* ========================================
   GUARANTEE SECTION - ELEGANT REDESIGN
======================================== */
.guarantee-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}


.guarantee-point-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--light-gray);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.guarantee-point-item:hover {
  background: linear-gradient(135deg, rgba(var(--primary-red-rgb), 0.08) 0%, var(--light-gray) 100%);
  border-left-color: var(--primary-red);
  transform: translateX(8px);
}

.point-icon {
  font-size: 28px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.guarantee-point-item:hover .point-icon {
  transform: scale(1.15);
}

.point-content {
  flex: 1;
}

.point-title {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.guarantee-point-item:hover .point-title {
  color: var(--primary-red);
}

.point-desc {
  font-size: clamp(12px, 1.8vw, 13px);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Highlight Box */
.guarantee-highlight-box {
  background: linear-gradient(135deg, #fff5f5 0%, #fffbfb 100%);
  border-radius: 24px;
  padding: clamp(30px, 5vw, 40px);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(var(--primary-red-rgb), 0.12);
  border: 1px solid rgba(var(--primary-red-rgb), 0.12);
}

.guarantee-highlight-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--primary-red-rgb), 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.guarantee-highlight-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(var(--primary-red-rgb), 0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.highlight-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(var(--primary-red-rgb), 0.12) 0%, rgba(var(--primary-red-rgb), 0.08) 100%);
  color: var(--primary-red);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(var(--primary-red-rgb), 0.15);
  position: relative;
  z-index: 1;
}

.highlight-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  color: var(--text-dark);
}

.highlight-text {
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.8;
  margin-bottom: clamp(0rem, -0.2206rem + 1.1765vw, 1.25rem);
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  padding-left: 16px;
  border-left: 4px solid var(--primary-red);
}

.highlight-text::after {
  display: none;
}

.highlight-divider {
  display: none;
}

.highlight-subtitle {
  font-size: clamp(13px, 2vw, 15px);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
  color: var(--text-muted);
}

.guarantee-highlight-box .btn-cta-animated {
  background: var(--secondary-blue);
  color: var(--white);
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: btnFloat 3s ease-in-out infinite, btnGlowBlue 2s ease-in-out infinite, btnBorderPulse 2.5s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(0, 96, 170, 0.4);
  transition: all 0.8s ease;
  position: relative;
  z-index: 1;
}

.guarantee-highlight-box .btn-cta-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 96, 170, 0.4), transparent);
  animation: btnShineBlue 2.5s ease-in-out infinite;
}

.guarantee-highlight-box .btn-cta-animated::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
  border-radius: clamp(8px, 1.5vw, 12px);
  pointer-events: none;
  animation: btnShimmer 3s ease-in-out infinite;
}

.guarantee-highlight-box .btn-cta-animated:hover {
  background: #0052a3;
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 96, 170, 0.7);
  border-color: rgba(255, 255, 255, 0.8);
  animation: btnFloat 3s ease-in-out infinite, btnGlowBlue 2s ease-in-out infinite, btnBorderPulse 2.5s ease-in-out infinite;
}

.guarantee-highlight-box .btn-cta-animated:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 4px 15px rgba(0, 96, 170, 0.4);
}

.guarantee-highlight-box .btn-cta-animated .btn-arrow {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.8s ease-in-out;
  position: relative;
  z-index: 1;
  animation: arrowWave 1.5s ease-in-out infinite;
}

.guarantee-highlight-box .btn-cta-animated:hover .btn-arrow {
  transform: translateX(8px);
}


@media (max-width: 768px) {
  .guarantee-point-item {
    padding: 14px;
    gap: 12px;
  }

  .guarantee-highlight-box {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .guarantee-point-item {
    padding: 12px;
  }

  .point-icon {
    font-size: 24px;
  }

  .guarantee-highlight-box {
    padding: 24px 16px;
  }
}


/* ========================================
   EXCLUSIVE BONUSES SECTION - REDESIGNED
======================================== */
.bonuses-section {
  background: linear-gradient(135deg, #fafafa 0%, var(--white) 50%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.bonus-card-modern {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(var(--primary-red-rgb), 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bonus-card-modern:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(var(--primary-red-rgb), 0.15);
}

.bonus-image-modern {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--light-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.bonus-img-modern {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.bonus-card-modern:hover .bonus-img-modern {
  transform: scale(1.08);
}

.bonus-badge-modern {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(var(--primary-red-rgb), 0.3);
}

.bonus-content-modern {
  padding: clamp(18px, 3vw, 24px);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.bonus-title-modern {
  font-size: clamp(15px, 2.2vw, 17px);
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 8px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.bonus-desc-modern {
  font-size: clamp(12px, 1.8vw, 13px);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.bonuses-cta-text {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .bonus-card-modern {
    margin-bottom: 10px;
  }

  .bonus-image-modern {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .bonus-image-modern {
    height: 180px;
  }

  .bonus-content-modern {
    padding: 16px;
  }
}