/* ========================= */
/* HERO */
/* ========================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

/* HERO CONTENT ALIGNMENT */
.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

/* CONTENT BOX */
.hero-content {
  max-width: 600px;
  padding: 35px;
  background: rgba(0,0,0,0.55);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

/* TEXT */
.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-text {
  color: #d6d6d6;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn.primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: #D4AF37;
  color: #000;

  padding: 12px 22px;
  border-radius: 8px;

  text-decoration: none;
  font-weight: 600;

  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);

  transition: all 0.25s ease;
}

.btn.primary:hover {
  background: #c9a233;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

.btn.secondary {
  border: 1px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background: #fff;
  color: #000;
}

/* ========================= */
/* ANIMATION */
/* ========================= */
.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  animation: slideLeft 1s ease forwards;
}

@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================= */
/* CONTENT SECTION */
/* ========================= */
.content {
  padding: 80px 0;
  background: #fff;
}

/* TITLE */
.content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* PARAGRAPH */
.content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
  text-align: justify; /* cleaner corporate look */
}

/* STRONG TEXT */
/* STRONG TEXT (BLACK IN CONTENT ONLY) */
.content strong {
  color: #111;   /* black */
  font-weight: 600;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {

  .content {
    padding: 60px 0;
  }

  .content h2 {
    font-size: 22px;
  }

  .content p {
    font-size: 15px;
  }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {
  .content {
    padding: 60px 0;
  }

  .content p {
    font-size: 15px;
  }
}

/* ========================= */
/* CREATIVE AGENCY SECTION */
/* ========================= */

.creative-section {
  background: #2a2a2a;
  padding: 50px 0;
  color: #fff;
}

/* LAYOUT */
.creative-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT VIDEO - slide from left */
.creative-left {
  flex: 1;
  position: relative; /* IMPORTANT */
  transform: translateX(-80px);
  opacity: 0;
  transition: all 0.8s ease;
}

/* MAIN IMAGE */
.img-main {
  width: 100%;
  height: 660px;

  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);

  object-fit: cover;
  display: block;

  position: relative;
  z-index: 2; 
}

/* SMALL FLOATING IMAGE */
.img-small {
  width: 45%;
  position: absolute;
  top: 120px;
  right: 0;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* CARD IMAGE */
.img-card {
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 30%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* RIGHT CONTENT - slide from bottom */
.creative-right {
  flex: 1;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.8s ease;
}

.creative-left.show {
  transform: translateX(0);
  opacity: 1;
}

.creative-right.show {
  transform: translateY(0);
  opacity: 1;
}

.creative-right h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.creative-right h2 span {
  color: #D4AF37;
}

.creative-right p {
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 25px;
}

/* LINK */
.creative-right a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #D4AF37;
  padding-bottom: 3px;
}

/* =========================
   TABLET - CREATIVE SECTION
========================= */
@media (max-width: 1024px) {

  .creative-section {
    padding: 50px 30px; /* adds left/right spacing */
  }

  .creative-inner {
    gap: 35px;
  }

  .img-main {
    height: 500px;
  }

  .img-small {
    top: 90px;
    width: 48%;
  }

  .img-card {
    width: 55%;
    left: 25%;
  }

  .creative-right h2 {
    font-size: 38px;
  }

  .creative-right p {
    font-size: 15px;
  }

}

/* RESPONSIVE */
@media (max-width: 768px) {
  .creative-inner {
    flex-direction: column;
  }

  .creative-left {
    height: 350px;
  }

  .creative-right h2 {
    font-size: 32px;
  }
}
/* REVIEWS - DARK MODE */
.reviews {
  background: #0b0b0b;
  padding: 120px 0;
  text-align: center;
  color: #fff;
}

/* CONTAINER */
.reviews-inner {
  max-width: 800px;
  margin: auto;
}

/* TITLE */
.section-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 60px;
  letter-spacing: 0.5px;
}

/* =========================
   SLIDER (NEW ADDITION)
========================= */
.review-slider {
  position: relative;
  min-height: 220px;
}

/* EACH SLIDE */
.review-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease;
}

/* ACTIVE SLIDE */
.review-item.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

/* STARS */
.stars {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

/* REVIEW TEXT */
.review-text {
  font-size: 20px;
  line-height: 1.8;
  color: #ddd;
  font-weight: 300;
}

/* AUTHOR */
.review-author {
  display: block;
  margin-top: 25px;
  font-size: 14px;
  color: #888;
}

/* CTA */
.review-cta {
  margin-top: 50px;
  font-weight: 600;
}

/* =========================
   MOBILE RESPONSIVE REVIEWS
========================= */
@media (max-width: 768px) {

  .reviews {
    padding: 80px 20px;
  }

  .reviews-inner {
    max-width: 100%;
  }

  .section-title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 40px;
  }

  .review-slider {
    min-height: 260px;
  }

  .review-text {
    font-size: 16px;
    line-height: 1.8;
  }

  .stars {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .review-author {
    font-size: 13px;
    margin-top: 20px;
  }

   .review-cta {
    margin-top: 20px; /* reduce gap */
  }

  .review-cta .btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    justify-content: center;
  }
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 32px;
  }

  .hero-content {
    padding: 25px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

.promo-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.popup-slider {
  position: relative;
  overflow: hidden;
}

/* TRACK (SLIDING) */
.popup-track {
  display: flex;
  transition: transform 0.5s ease;
}

.popup-track img {
  width: 100%;
  flex-shrink: 0;
}

/* CLOSE BUTTON */
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #D4AF37;
  color: #000;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

/* ARROWS */
.popup-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 10px;
  cursor: pointer;
}

.popup-arrow.left {
  left: 10px;
}

.popup-arrow.right {
  right: 10px;
}

.popup-arrow:hover {
  background: #D4AF37;
  color: #000;
}

/* Content Mobile */
@media (max-width: 768px) {

  .creative-section {
    padding: 50px 15px; /* 👈 adds breathing space left/right */
  }

  .creative-inner {
    flex-direction: column;
    gap: 30px;
  }

  .creative-left,
  .creative-right {
    width: 100%;
  }

  .img-main {
    height: 320px; /* prevent huge video on mobile */
    margin-bottom: 0;
    border-radius: 12px;
  }

  .creative-right {
    text-align: center;
  }

  .creative-right h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .creative-right p {
    font-size: 14px;
    padding: 0 5px;
  }

  .creative-right a {
    display: inline-block;
    margin-top: 10px;
  }
}