/* ====== Corporate ====== */

.corporate-header {
  background: url('WebsiteImages/Still\ G3.jpg') center/cover no-repeat;
}

.corporate-sub-header h1 {
  margin-top: 100px;
}

/* ===== Corporate Deal Section ===== */

.corporate-deal {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background: linear-gradient(to bottom, #070707, #000);
  padding: 40px 20px;
}

.deal-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
}

.deal-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

/* ===== Deal Boxes ===== */

.deal-box {
  flex: 1 1 400px;
  max-width: 500px;
  background-image: url(WebsiteImages/boxes2.jpg);
  border: 2px solid #fc3f40;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 0 25px rgba(252, 63, 64, 0.3);
  transition: 0.3s ease;
  text-align: left;
}

.deal-box:hover {
  box-shadow: 0 0 40px rgba(252, 63, 64, 0.7);
  transform: translateY(-5px);
}

/* ===== Text Styling ===== */

.deal-video-box h1{
  color:#fc3f40;
  font-size: 45px;
  padding-bottom: 20px;
}

.deal-box h2 {
  color: #fc3f40;
  font-size: 1.9rem;
  line-height: 1.3;
  text-align: center;
}

.deal-box h3 {
  color: #858585;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
}

.deal-box h6 {
  color: #e7e7e7;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 25px;
  text-align: left;
  font-weight: 400;
}

.deal-box h4 {
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
}

.deal-box h5 {
  text-align: center;
  font-size: 0.85rem;
  color: #858585;
  margin-top: 10px;
}


.deal-box li {
  color: #fff;
  font-size: 0.95rem;
}

.per-month {
  font-weight: normal;
  font-size: 1.2rem;
  color: #858585;
}

.first-month {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
  color: #fc3f40;
  font-weight: bold;
}



/* ===== Red Triangle Bullet List ===== */

.offer-list {
  list-style: none;
  padding-left: 25px;
  margin: 25px 0;
}

.offer-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: url("WebsiteImages/redtriangle.png") no-repeat center;
  background-size: contain;
}

.offer-list li strong {
  display: block;
  margin-top: 18px;
  font-size: 1rem;
  color: #fc3f40;
}

/* ===== Deal Button ===== */

.vidweb-deal-btn {
  display: block;
  background: #fc3f40;
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  margin: 25px auto 0;
  width: fit-content;
  text-decoration: none;
  transition: 0.3s ease;
}

.vidweb-deal-btn:hover {
  background: #ff5b5b;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(252, 63, 64, 0.8);
}

/* ===== Slideshow ===== */

.deal-video-box {
  flex: 1 1 400px;
  max-width: 500px;
  background-image: url(WebsiteImages/boxes2.jpg);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: 0.3s ease;
}

.deal-video-box:hover {
  box-shadow: 0 0 40px rgba(252, 63, 64, 0.7);
  transform: translateY(-5px);
}

.slideshow {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.slide {
  display: none;
  animation: fade 0.5s ease-in-out;
}

.slide.active {
  display: block;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.deal-video-box h2 {
  color: #858585;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.video-desc {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* ===== Video Wrapper ===== */

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* ===== Slideshow Buttons ===== */

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(252, 63, 64, 0.85);
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: 0.3s;
}

.slide-btn:hover {
  background: #ff5b5b;
}

.prev { left: 10px; }
.next { right: 10px; }

/* ===== Responsive ===== */

/* ===== Mobile Slideshow Fix ===== */

@media (max-width: 900px) {

  /* Let the slideshow breathe */
  .deal-video-box {
    padding: 20px 15px;
  }

  .slideshow {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }

  /* Make video feel full-width */
  .video-wrapper {
    border-radius: 10px;
  }

  /* Keep arrows INSIDE the video box */
  .slide-btn {
    top: auto;
    bottom: 15px;
    transform: none;
    font-size: 18px;
    padding: 8px 12px;
    opacity: 0.9;
  }

  .prev {
    left: 15px;
  }

  .next {
    right: 15px;
  }

  /* Tighten text spacing */
  .deal-video-box h2 {
    font-size: 1.3rem;
  }

  .video-desc {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
}
