/* ================================
   Hero Section (Banner One) Styles
   ================================ */

/* ===== Hero Section Container ===== */
.hero-section {
  position: relative;
  height: 719px;
  padding: 150px 0 100px;
  background: linear-gradient(180deg, rgba(240, 244, 255, 0.78) 0%, rgba(255, 255, 255, 1) 100%);
  overflow: hidden;
}

/* Adjust padding when sticky header is active */
@media (min-width: 768px) {
  .hero-section {
    padding: 180px 0 120px;
  }
}

/* ===== Hero Content Layout ===== */
.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-12);
  align-items: center;
}

@media (min-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
  }
}

/* ===== Hero Text Content ===== */
.hero-text {
  position: relative;
  z-index: 2;
}

/* Badge/Subtitle */
.hero-badge {
  display: inline-block;
  font-family: 'Barlow', var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: #6E54F3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* Main Headline */
.hero-title {
  font-family: 'Barlow', var(--font-primary);
  font-size: 70px;
  font-weight: 700;
  line-height: 84px;
  color: #070d1a;
  margin-bottom: 25px;
}

.hero-title .highlight {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

/* Description */
.hero-description {
  font-family: 'Nunito', var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #666666;
  margin-bottom: 27px;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 25px 13px;
  font-family: 'Barlow', var(--font-primary);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: var(--transition-all);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.hero-btn--primary {
  background-color: #6E54F3;
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(110, 84, 243, 0.3);
}

.hero-btn--primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(110, 84, 243, 0.4);
}

.hero-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.hero-btn:hover i {
  transform: translateX(3px);
}

/* ===== Hero Image Section ===== */
.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image__wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image__main {
  width: 100%;
  height: auto;
  max-width: 600px;
  position: relative;
  z-index: 2;
  animation: imgBounce 3s ease-in-out infinite;
}

/* Video Play Button */
.video-play-btn {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6E54F3;
  border-radius: 50%;
  border: none;
  color: var(--color-white);
  font-size: 16px;
  cursor: pointer;
  z-index: 3;
  transition: var(--transition-all);
  box-shadow: 0 8px 24px rgba(110, 84, 243, 0.4);
}

.video-play-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.3;
  animation: ripple 2s ease-out infinite;
}

.video-play-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.2;
  animation: ripple 2s ease-out 1s infinite;
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(110, 84, 243, 0.5);
}

.video-play-btn i {
  position: relative;
  z-index: 1;
  margin-left: 4px;
}

/* ===== Decorative Shapes ===== */
.hero-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* Shape 1 - Large blurred blob (top left) */
.hero-shape-1 {
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(237, 240, 250, 0.5);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 1;
  animation: floatBobY 8s ease-in-out infinite;
}

/* Shape 2 - Large blurred blob (bottom right) */
.hero-shape-2 {
  bottom: -15%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(110, 84, 243, 0.06);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 1;
  animation: float-bob-x 10s ease-in-out infinite;
}

/* Shape 3 - Large blurred blob (center right) */
.hero-shape-3 {
  top: 30%;
  right: 20%;
  width: 450px;
  height: 450px;
  background: rgba(183, 24, 166, 0.05);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 1;
  animation: floatBobY 12s ease-in-out infinite reverse;
}

/* Shape 4 - Small gradient circle (top left) */
.hero-shape-4 {
  top: 10%;
  left: 5%;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #B718A6 0%, #6E54F3 100%);
  border-radius: 50%;
  opacity: 0.8;
  animation: floatBobY 6s ease-in-out infinite;
}

/* Shape 5 - Medium gradient circle (bottom center) */
.hero-shape-5 {
  bottom: 20%;
  left: 15%;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #B718A6 0%, #6E54F3 100%);
  border-radius: 50%;
  opacity: 0.7;
  animation: float-bob-x 7s ease-in-out infinite 1s;
}

/* Shape 6 - Tiny gradient circle */
.hero-shape-6 {
  bottom: 22%;
  left: 18%;
  width: 15px;
  height: 15px;
  background: linear-gradient(135deg, #B718A6 0%, #6E54F3 100%);
  border-radius: 50%;
  opacity: 0.6;
  animation: floatBobY 5s ease-in-out infinite 2s;
}

/* Shape 7 - Medium gradient circle (top right) */
.hero-shape-7 {
  top: 20%;
  right: 10%;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #B718A6 0%, #6E54F3 100%);
  border-radius: 50%;
  opacity: 0.75;
  animation: float-bob-x 8s ease-in-out infinite 3s;
}

/* Shape 8 - Small gradient circle (top left) */
.hero-shape-8 {
  top: 60%;
  left: 10%;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #B718A6 0%, #6E54F3 100%);
  border-radius: 50%;
  opacity: 0.7;
  animation: floatBobY 5s ease-in-out infinite 1.5s;
}

/* Shape 9 - Small gradient circle */
.hero-shape-9 {
  top: 25%;
  right: 8%;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #B718A6 0%, #6E54F3 100%);
  border-radius: 50%;
  opacity: 0.65;
  animation: floatBobY 6s ease-in-out infinite 2.5s;
}

/* Shape 10 - Medium gradient circle */
.hero-shape-10 {
  bottom: 30%;
  right: 20%;
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, #B718A6 0%, #6E54F3 100%);
  border-radius: 50%;
  opacity: 0.7;
  animation: float-bob-x 9s ease-in-out infinite 4s;
}

/* Shape 11 - Tiny gradient circle */
.hero-shape-11 {
  top: 45%;
  left: 8%;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #B718A6 0%, #6E54F3 100%);
  border-radius: 50%;
  opacity: 0.6;
  animation: floatBobY 7s ease-in-out infinite;
}

/* Shape 12 - Tiny gradient circle */
.hero-shape-12 {
  bottom: 35%;
  left: 5%;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #B718A6 0%, #6E54F3 100%);
  border-radius: 50%;
  opacity: 0.55;
  animation: floatBobY 7s ease-in-out infinite 3s;
}

/* ===== Video Modal ===== */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: var(--z-index-modal);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.video-modal.active {
  display: flex;
}

.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  animation: scaleIn 0.3s ease-out;
}

.video-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  color: var(--color-secondary);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition-all);
  border: none;
}

.video-modal__close:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: rotate(90deg);
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes floatBobY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes imgBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

@keyframes float-bob-x {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(30px);
  }
}

@keyframes ImgBounce2 {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-25px) scale(1.02);
  }
}

/* ===== Abstract/Outlined Shapes ===== */
.abstract-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* Abstract Shape 1 - Large Oval Ring (Top-Center) */
.abstract-shape-1 {
  top: -51%;
  left: 17.5%;
  width: 635px;
  height: 600px;
  z-index: 0;
}

.abstract-shape-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(110, 84, 243, 0.2);
  border-radius: 50%;
  background: rgba(237, 240, 250, 0.5);
  animation: float-bob-x 10s ease-in-out infinite;
}

/* Abstract Shape 2 - Small Purple Gradient Ring (Right-Center) */
.abstract-shape-2 {
  top: 25%;
  left: 63%;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle at center, 
    transparent 40%, 
    transparent 42%, 
    rgba(110, 84, 243, 0.4) 42%, 
    rgba(183, 24, 166, 0.4) 100%
  );
  border-radius: 50%;
  animation: floatBobY 7s ease-in-out infinite 1.5s;
}

/* Abstract Shape 3 - Dotted Grid Pattern (Bottom-Left) */
.abstract-shape-3 {
  bottom: 32%;
  left: 17%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, rgba(110, 84, 243, 0.3) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.8;
  animation: float-bob-x 8s ease-in-out infinite 2s;
}

/* Abstract Shape 4 - Dotted Grid Pattern (Top-Right) */
.abstract-shape-4 {
  top: 5%;
  right: 9%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, rgba(110, 84, 243, 0.3) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.8;
  animation: floatBobY 9s ease-in-out infinite 3s;
}

/* Abstract Shape 5 - Hexagonal Background Pattern (Bottom-Right) */
.abstract-shape-5 {
  bottom: 53%;
  right: 21%;
  width: 300px;
  height: 400px;
  opacity: 0.08;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(110, 84, 243, 0.15) 40px, rgba(110, 84, 243, 0.15) 41px),
    repeating-linear-gradient(60deg, transparent, transparent 40px, rgba(110, 84, 243, 0.15) 40px, rgba(110, 84, 243, 0.15) 41px),
    repeating-linear-gradient(120deg, transparent, transparent 40px, rgba(110, 84, 243, 0.15) 40px, rgba(110, 84, 243, 0.15) 41px);
  animation: float-bob-x 12s ease-in-out infinite 1s;
}

/* ===== Responsive Styles ===== */

/* Tablet */
@media (max-width: 991px) {
  .hero-section {
    padding: 120px 0 80px;
  }

  .hero-title {
    font-size: 44px;
    line-height: 1.2;
  }

  /* Hide smaller decorative shapes that clutter tablet view */
  .hero-shape-4,
  .hero-shape-5,
  .hero-shape-7,
  .hero-shape-8,
  .hero-shape-9,
  .hero-shape-10,
  .hero-shape-11 {
    display: none;
  }

  .hero-image__main {
    max-width: 500px;
  }

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

/* Mobile */
@media (max-width: 767px) {
  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-content {
    gap: var(--spacing-8);
  }

  .hero-badge {
    font-size: 16px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-4);
  }

  .hero-btn {
    padding: 14px 30px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .hero-image__main {
    max-width: 100%;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 16px;
    top: 15%;
    right: 10%;
  }

  /* Keep large blob shapes for depth, hide only smaller decorative shapes on mobile */
  .hero-shape-4,
  .hero-shape-6,
  .hero-shape-8,
  .hero-shape-11,
  .hero-shape-12 {
    display: none;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .video-modal__content {
    width: 95%;
  }

  .video-modal__close {
    top: -45px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}
