/* ========================================
   GLOBAL HERO SECTION STYLES - ALL VARIANTS
   ======================================== */

/* Base Hero Sections - All Variants */
.hero-section,
.hero-section-pro,
.hero-section-partner,
.hero-section-beginner {
  min-height: calc(100vh - var(--nav-top-height, 50px));
  position: relative;
  padding: 2rem 3rem;
  overflow-x: hidden;
  display: flex;
  align-items: center;
}

/* Hero Section Pro */
.hero-section-pro {
  background: #4a7151 url(../images/banner4.webp) no-repeat right center / cover;
  color: #fff;
  justify-content: center;
}

.hero-section-pro.professionl {
  background: #598061 url(../images/banner4.webp) no-repeat right center / cover;
}

.hero-section-pro.beginner {
  background: #232c37 url(../images/banner5.webp) no-repeat right center / cover;
}

/* Hero Section Partner */
.hero-section-partner {
  background: #15354e url(../images/banner3-bg.webp) no-repeat right center / auto 100%;
  color: #fff;
  justify-content: center;
  overflow: hidden;
}

/* Hero Section Beginner */
.hero-section-beginner {
  background: #232c37 url(../images/banner2.jpg) no-repeat right center / cover;
  color: #fff;
  justify-content: center;
}

/* Hero Content Wrapper */
.hero-content {
  z-index: 2;
  width: 100%;
}

/* Typography - Typing Heading */
.typing-heading {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 5vw, 50px);
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  min-height: clamp(113px, 18vw, 183px);
  margin-top: clamp(0.5rem, 1.5vw, 1rem);
}

.hero-section-partner .typing-heading {
  min-height: auto;
  margin-bottom: 1rem;
}

/* Description Text */
.description {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  font-size: 1.3rem;
  font-weight: 300;
  color: #e8ffe8;
  max-width: 745px;
  margin-bottom: 38px;
}

.description.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Buttons Container */
.hero-buttons {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-buttons.visible {
  opacity: 1;
}

/* Button Variants */
.btn-cta {
  background: #233243 !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 32px !important;
  padding: 16px 36px !important;
  letter-spacing: 2px;
  font-size: 0.9rem !important;
  border: none !important;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  background: #374c6a !important;
  color: #fff !important;
}

.btn-outline-light {
  background: transparent !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 32px !important;
  padding: 16px 36px !important;
  font-size: 0.9rem !important;
  border: 2px solid #fff !important;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-light:hover {
  background: #fff !important;
  color: #233243 !important;
}

.btn-custom-1 {
  background: #233243 !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 32px !important;
  padding: 16px 36px !important;
  margin-right: 16px;
  letter-spacing: 2px;
  font-size: 0.9rem !important;
  border: none !important;
  transition: background 0.2s;
}

.btn-custom-1:hover {
  background: #374c6a !important;
  color: #fff !important;
}

.btn-custom-2 {
  background: #fff !important;
  color: #233243 !important;
  font-weight: 700 !important;
  border-radius: 32px !important;
  padding: 16px 36px !important;
  font-size: 0.9rem !important;
  border: none !important;
  transition: background 0.2s;
}

.btn-custom-2:hover {
  background: #eef5ee !important;
  color: #233243 !important;
}

/* Partner Section Buttons */
.hero-section-partner .btn-custom-1 {
  background-color: #668f6c;
  color: #ecf0f1;
  cursor: pointer;
}

.hero-section-partner .btn-custom-2:hover {
  color: #000000;
  background: #ecf0f1;
  cursor: pointer;
}

/* Benefit Bullets */
.benefit-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.benefit-bullets li {
  padding: 0.25rem 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.4;
  color: inherit;
  margin: 0;
}

.benefit-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0.5rem;
  top: 0.25rem;
  color: #5a8261;
  font-weight: bold;
  font-size: 1rem;
}

/* Trust Indicators */
.trust-indicators {
  color: #e8ffe8;
  font-size: 0.85rem;
  margin-top: 1.5rem;
}

.trust-indicators i {
  margin-right: 0.25rem;
  color: #90d098;
}

.trust-indicators .col-auto {
  padding: 0.25rem 1rem;
}

/* Right Visual Wrapper */
.right-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 470px;
  height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Carousel Main Content */
.right-main-content {
  position: relative;
  z-index: 2;
  width: 355px;
  margin: 0 auto;
  padding: 40px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Carousel Images */
.carousel-inner img {
  display: block;
  height: 120px;
  width: 120px;
  margin: 0 auto 24px;
  object-fit: contain;
}

/* Carousel Captions */
.image-caption {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  text-align: center;
  color: #354e4a;
  margin-top: 12px;
  font-weight: bold;
}

.image-description {
  font-size: 0.95rem;
  text-align: center;
  color: #4a5f56;
  margin: 8px 0;
  line-height: 1.4;
}

/* Carousel Button */
.main-slider-btn {
  background: #233243;
  color: #fff;
  font-weight: 700;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  margin: 14px auto 0 auto;
  transition: background 0.2s;
  display: inline-block;
  text-decoration: none;
}

.main-slider-btn:hover {
  background: #374c6a;
  color: #fff;
  text-decoration: none;
}

/* Scene Slider Styles */
.scene-slider {
  width: 100%;
  height: 400px;
  position: relative;
}

.scene {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.scene.active {
  opacity: 1;
}

.scene.leaving {
  opacity: 0;
  transform: translateY(20px);
}

.scene svg {
  width: 80%;
  height: 80%;
  max-width: 350px;
}

.scene svg .outline {
  fill: #ffffff;
  stroke: none;
}

/* List Groups */
.hero-section-pro .list-group {
  position: absolute;
  right: 0;
  top: 40%;
  background-color: #233243d8;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(44, 62, 80, 0.18);
  max-width: 400px;
  animation: smoothPulse 2.5s ease-in-out infinite;
}

.hero-section-pro .list-group-item,
.hero-section-beginner .list-group-item {
  background: transparent;
  border: none;
  font-size: 1.06rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  color: #fff;
}

.hero-section-beginner .list-group-item {
  color: #e7ecf0;
}

.hero-section-pro .list-group-item .check,
.hero-section-beginner .list-group-item .check {
  color: #ffd600;
  font-size: 1.23rem;
  margin-right: 12px;
  flex-shrink: 0;
}

/* Highlight and Launch Bonus */
.hero-section-partner .highlight {
  color: #ffc400;
  animation: smoothPulse 2.5s ease-in-out infinite;
  display: inline-block;
}

.hero-section-partner .launch-bonus {
  background: #ffc400;
  font-weight: 700;
  border-radius: 32px;
  padding: 16px 36px;
  letter-spacing: 2px;
  font-size: 0.9rem;
  border: none;
  margin: 20px auto 0;
  display: table;
}

.hero-section-partner .launch-bonus .highlight {
  color: #fff !important;
  animation: none;
  font-weight: 700;
}

/* Single Scene Slider */
.single-scene-slider {
  height: calc(100vh - 80px);
  max-height: 800px;
  overflow: hidden;
  position: relative;
}

.single-scene {
  height: 100%;
}

.single-scene img {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  animation: singleImageIn 1.2s ease forwards;
}

/* Animations */
@keyframes smoothPulse {
  0% {
    transform: scale(1);
    -webkit-text-stroke: 1px #ffc4009d;
    text-stroke: 1px #ffc4009d;
  }
  50% {
    transform: scale(1.05);
    -webkit-text-stroke: 2px #ffc4009d;
    text-stroke: 2px #ffc4009d;
  }
  100% {
    transform: scale(1);
    -webkit-text-stroke: 1px #ffc4009d;
    text-stroke: 1px #ffc4009d;
  }
}

@keyframes singleImageIn {
  from { opacity: 0; transform: scale(1.05); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Laptop screens */
@media (min-width: 1024px) and (max-width: 1440px) {
  .hero-section,
  .hero-section-pro,
  .hero-section-partner,
  .hero-section-beginner {
    padding: 1.5rem 2rem;
  }
  
  .typing-heading {
    font-size: clamp(36px, 4vw, 45px);
    min-height: clamp(90px, 15vw, 150px);
  }
  
  .description {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }
  
  .right-visual-wrap {
    height: 450px;
  }
  
  .carousel-inner img {
    height: 100px;
    width: 100px;
  }
}

/* Tablet screens */
@media (max-width: 991px) {
  .hero-section,
  .hero-section-pro,
  .hero-section-partner,
  .hero-section-beginner {
    flex-direction: column;
    justify-content: start;
    padding-top: 3rem;
  }

  .typing-heading {
    font-size: clamp(36px, 6vw, 42px);
    min-height: clamp(130px, 20vw, 150px);
  }
  
  .right-visual-wrap {
    margin-top: 3rem;
    height: 400px;
  }

  .hero-section-pro {
    background: #598061 url(../images/banner4.webp) no-repeat right top / 100% auto;
  }

  .hero-section-partner {
    background: #15354e url(../images/banner3-bg.webp) no-repeat left bottom / 100% auto;
  }

  .single-scene-slider {
    height: 400px;
  }
}

/* Mobile screens */
@media (max-width: 575px) {
  .hero-section,
  .hero-section-pro,
  .hero-section-partner,
  .hero-section-beginner {
    padding: 2rem 1rem;
  }

  .typing-heading {
    font-size: clamp(28px, 8vw, 30px);
    min-height: clamp(100px, 16vw, 113px);
  }

  .description {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: #e8f2e9ff !important;
  }

  .btn-cta,
  .btn-outline-light,
  .btn-custom-1,
  .btn-custom-2 {
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
  }
  
  .trust-indicators {
    font-size: 0.75rem;
  }
  
  .trust-indicators .col-auto {
    padding: 0.25rem 0.5rem;
  }

  .right-visual-wrap {
    height: 320px;
    margin-top: 2rem;
  }

  .right-main-content {
    padding: 16px 8px;
    width: 100%;
  }
  
  .carousel-inner img {
    height: 80px;
    width: 80px;
  }
  
  .image-caption {
    font-size: 1rem;
  }
  
  .image-description {
    font-size: 0.85rem;
  }

  .hero-section-pro.professionl .scene-slider {
    height: 400px;
  }

  .hero-section-pro {
    background-size: cover !important;
    background-position: center !important;
  }

  .benefit-bullets li {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    padding-left: 1.3rem;
  }
  
  .benefit-bullets li::before {
    left: 0.4rem;
    font-size: 0.9rem;
  }
}