/* ===============================
   SERVICES PAGE – LUXURY THEME
   =============================== */

.services-list {
  /* background: linear-gradient(to bottom, #0b0b0b 0%, #151515 100%); */
  padding: 6rem 0;
}

/* Make services section wider */
.services-list.container {
  max-width: 1500px; /* or 1500px if you want it BIG */
}


/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Headings */
.services-list h1 {
  font-family: "Playfair Display SC", serif;
  color: var(--gold);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.services-list .muted {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 4rem;
}

/* ===============================
   SERVICES GRID
   =============================== */

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

/* Service Card */
.item {
  background: #000;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
}

/* Image */
.service-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

/* Title */
.item h3 {
  font-family: "Playfair Display SC", serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* Description */
.item p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* ===============================
   ADVANTAGES SECTION
   =============================== */

.services-advantages {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 20px;
  text-align: center;
}

.services-advantages h2 {
  font-family: "Playfair Display SC", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.services-advantages p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Advantage grid */
.advantages-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Advantage card */
.advantage {
  background: var(--dark-panel);
  padding: 1.75rem;
  border-radius: 12px;
}

.advantage h3 {
  font-family: "Playfair Display SC", serif;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.advantage p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Final note */
.final-note {
  color: var(--text-light);
  font-weight: 600;
  margin-top: 2rem;
}

/* CTA Button – match home */
.cta-button {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 1rem 2.5rem;
  background-color: var(--gold);
  color: var(--dark-bg);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--btn-hover);
  transform: translateY(-3px);
}

/* ===============================
   VIDEO SECTION
   =============================== */

.services-videos {
  max-width: 1500px;
  margin: 6rem auto;
  padding: 0 20px;
  text-align: center;
}

.services-videos h2 {
  font-family: "Playfair Display SC", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.services-videos .muted {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.videos-grid img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 14px;
  background: #000;
  box-shadow: 0 12px 35px rgba(0,0,0,0.6);
  pointer-events: none;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 900px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .videos-grid img {
    height: 420px;
  }
}

@media (max-width: 780px) {
  .items-grid {
    grid-template-columns: 1fr;
  }

  .advantages-list {
    grid-template-columns: 1fr;
  }
}
