/* ===========================
   Services Grid Section
   =========================== */

.services-grid-section {
  position: relative;
  padding: 80px 0;
  background: #000000;
  color: #ffffff;
}

.services-grid-container {
  width: 100%;
}

/* Services Grid Wrapper */
.services-grid-wrapper {
  width: 100%;
}

/* Service Card */
.service-grid-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #111111;
  transition: all 0.35s ease;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Service Image */
.service-grid-image {
  background: #000000;
  line-height: 0;
}

.service-grid-image img,
.service-grid-image iframe {
  width: 100%;
  display: block;
}

.service-grid-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-grid-image iframe {
  border: 0;
}

/* Service Content */
.service-grid-content {
  padding: 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.5), rgba(0, 0, 0, 0.9));
  border-top: 1px solid rgba(200, 154, 63, 0.2);
}

.service-grid-name {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: capitalize;
  color: #fff;
}

.service-grid-name a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.35s ease;
  display: inline-block;
}

.service-grid-name a:hover {
  color: #c89a3f;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Film Card Variant */
.film-card .service-grid-content {
  padding: 24px 24px 28px;
  /* text-align: left; */
  background: #0b0b0b;
}

.film-card-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.film-card-year {
  color: #be2cd1;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 0;
}

.film-card-description {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 1px;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
  .services-grid-section {
    padding: 80px 0;
  }

  .service-grid-content {
    padding: 20px;
  }

  .service-grid-name {
    font-size: 20px;
  }

  .film-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
  .services-grid-section {
    padding: 60px 0;
  }

  .service-grid-content {
    padding: 16px;
  }

  .service-grid-name {
    font-size: 18px;
  }

  .film-card-description {
    font-size: 14px;
  }
}
