.banner {
  /* background: linear-gradient(to right, var(--primary-white) 48%, var(--primary-yellow) 52%); */
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.content-wrapper {
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.text-content {
  padding: 40px;
  background: var(--primary-white);
  border-radius: 15px;
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); */
  position: relative;
  z-index: 2;
  margin-right: -30px;
}

.video-container {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.video-wrapper {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); */
  position: relative;
  border: 4px solid var(--primary-yellow);
  /* transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease, box-shadow 0.5s ease; */
}

.video-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg);
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); */
}

video {
  width: 100%;
  display: block;
  height: auto;
  border-radius: 10px;
  /* border: 1px solid yellow; */
  padding: 10px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05));
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.video-wrapper:hover .video-overlay {
  opacity: 1;
}

.play-btn {
  width: 70px;
  height: 70px;
  background: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-black);
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.play-btn:hover {
  transform: scale(1.1);
  background: #ffed4e;
}

h1 {
  font-weight: 800;
  color: var(--primary-black);
  margin-bottom: 25px;
  font-size: 3rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h1 span {
  /* color: var(--primary-yellow); */
  font-weight: 800;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
}

h1 span:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.15);
  z-index: -1;
  border-radius: 2px;
}

.lead {
  font-size: 1.3rem;
  margin-bottom: 35px;
  color: var(--accent-gray);
  line-height: 1.6;
  font-weight: 500;
}

.btn {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  margin-right: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-theme {
  background: var(--primary-yellow);
  border: 2px solid var(--primary-yellow);
  color: var(--primary-black);
}

.btn-theme:hover {
  background: var(--primary-black);
  border-color: var(--primary-black);
  color: var(--primary-yellow);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.btn-border {
  background: transparent;
  border: 2px solid var(--primary-black);
  color: var(--primary-black);
}

.btn-border:hover {
  background: var(--primary-black);
  color: var(--primary-yellow);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.trust-badge {
  background: var(--primary-black);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-width: 350px;
  margin-top: 40px;
  color: var(--primary-yellow);
  border: 3px solid var(--primary-yellow);
  position: relative;
  overflow: hidden;
}

.trust-badge:before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: var(--primary-yellow);
  border-radius: 50%;
  opacity: 0.1;
}

.trust-badge:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 70px;
  height: 70px;
  background: var(--primary-yellow);
  border-radius: 50%;
  opacity: 0.1;
}

.trust-badge h5 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.trust-badge p {
  color: var(--primary-white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 1) 18%,
    rgba(249, 208, 45, 0.56) 66%
  );
}

.shape {
  position: absolute;
  background: var(--primary-yellow);
  opacity: 0.1;
  border-radius: 50%;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 5%;
  animation: float 15s ease-in-out infinite;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  right: 5%;
  animation: float 18s ease-in-out infinite reverse;
}

.shape-3 {
  width: 70px;
  height: 70px;
  top: 50%;
  left: 10%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }

  .video-wrapper {
    max-width: 500px;
  }
}

@media (max-width: 992px) {
  .banner {
    background: linear-gradient(
      to bottom,
      var(--primary-white) 48%,
      var(--primary-yellow) 52%
    );
    padding: 30px 0;
  }

  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .text-content {
    margin-right: 0;
    margin-bottom: 30px;
    padding: 30px;
  }

  .video-wrapper {
    transform: perspective(1000px) rotateX(5deg);
    max-width: 90%;
  }

  .video-wrapper:hover {
    transform: perspective(1000px) rotateX(0deg);
  }

  .trust-badge {
    margin: 40px auto;
  }

  .btn {
    margin-right: 10px;
    margin-left: 10px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
    display: block;
    width: 80%;
    margin: 0 auto 15px auto;
  }

  .text-content {
    padding: 25px 20px;
  }

  .trust-badge {
    padding: 20px;
  }

  .trust-badge h5 {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }

  .lead {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .video-wrapper {
    max-width: 100%;
  }

  .shape {
    display: none;
  }
}
