/* ============================================================
   VIDEO CTA SHOWCASE SECTION — Full 100vh Height, Transparent Black Overlay & Top Projects Buttons
   ============================================================ */
.video-cta-section {
  width: 100%;
  min-height: 100vh;
  padding: 14px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.video-cta-section .container2 {
  width: 100%;
  max-width: 99.5%;
  margin: 0 auto;
}

.video-cta-card {
  position: relative;
  width: 100%;
  height: calc(100vh - 28px);
  margin: 0 auto;
  background: #000000;
  border: none;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  clip-path: polygon(
    0 30px,
    30px 0,
    calc(100% - 30px) 0,
    100% 30px,
    100% calc(100% - 30px),
    calc(100% - 30px) 100%,
    30px 100%,
    0 calc(100% - 30px)
  );
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Full Bleed Background Video */
.video-bg-media {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Transparent Black Overlay Layer (Pure rgba black, no blur) */
.video-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
  backdrop-filter: none;
}

/* Centered Text Content & Buttons */
.video-cta-content {
  position: relative;
  z-index: 5;
  max-width: 850px;
  padding: 0 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-cta-headline {
  font-family: "Black Ops One", system-ui;
  font-size: clamp(24px, 3.2vw, 42px);
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 28px 0;
  text-shadow: none;
}

.video-cta-headline span {
  color: #1c59c3;
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #1c59c3;
}

/* Dual Buttons Side-By-Side Matching TOP PROJECTS Section Button (.talk-btn-box) */
.video-cta-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  width: auto;
}

.video-cta-buttons .talk-btn-box {
  width: auto !important;
  max-width: fit-content;
  font-family: "DM Sans", system-ui;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  min-width: 145px;
  height: 44px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.video-cta-buttons .talk-btn-box i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* TOP PROJECTS Arrow Translation Hover Effect */
.video-cta-buttons .talk-btn-box:hover i {
  transform: translate(4px, -4px);
}

/* Primary Button: Solid Blue like TOP PROJECTS */
.video-primary-btn {
  background: #1c59c3;
  color: #ffffff;
  border: none;
}

.video-primary-btn:hover {
  background: #1446a0;
  color: #ffffff;
}

/* Secondary Button: Glassmorphism Blur with TOP PROJECTS polygon cut corner */
.video-secondary-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  clip-path: none !important;
  border-radius: 6px;
}

.video-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

/* ==================== RESPONSIVE MEDIA QUERIES (TABLET & MOBILE ONLY) ==================== */

/* ── Tablet & Small Laptops (<= 1024px) ── */
@media (max-width: 1024px) {
  .video-cta-section {
    min-height: auto;
    padding: 14px 0;
  }
  .video-cta-card {
    height: 70vh;
    min-height: 500px;
  }
  .video-cta-headline {
    font-size: 36px;
    margin-bottom: 24px;
  }
}

/* ── Mobile Devices (<= 768px) ── */
@media (max-width: 768px) {
  .video-cta-section {
    min-height: auto;
    padding: 12px 0;
  }
  .video-cta-section .container2 {
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .video-cta-card {
    height: 75vh;
    height: 75dvh;
    min-height: 440px;
    max-height: 560px;
    clip-path: polygon(
      0 18px,
      18px 0,
      calc(100% - 18px) 0,
      100% 18px,
      100% calc(100% - 18px),
      calc(100% - 18px) 100%,
      18px 100%,
      0 calc(100% - 18px)
    );
  }
  .video-cta-content {
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .video-cta-headline {
    font-size: clamp(24px, 6.8vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
  }
  .video-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 260px;
    gap: 12px;
  }
  .video-cta-buttons .talk-btn-box {
    width: 100% !important;
    max-width: 100%;
    min-width: 100%;
    height: 46px;
    font-size: 14px;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .card-corner {
    width: 16px;
    height: 16px;
  }
}

/* ── Small Mobile Screens (<= 400px) ── */
@media (max-width: 400px) {
  .video-cta-card {
    min-height: 400px;
  }
  .video-cta-headline {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .video-cta-buttons {
    max-width: 230px;
    gap: 10px;
  }
  .video-cta-buttons .talk-btn-box {
    height: 42px;
    font-size: 13px;
  }
}
