/* Container & heading */
.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  
}



.services-list h1 {
  font-family: "Playfair Display SC", serif;
  color: #3e4350;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 8px;
}

.services-list .muted {
  text-align: center;
  color: #6b596b;
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* Grid layout */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

/* Item cards */
/* Item cards */
.item {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Headings and description */
.item h3 {
  margin: 0 0 12px 0;
  color: #3e4350;
  font-family: "Playfair Display SC", serif;
  font-size: 1.3rem;
}

.item p {
  margin: 0 0 8px 0;
  color: #3d3d3d;
  font-size: 1rem;
  line-height: 1.4;
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}


/* Price below description */
.price {
  display: block;           /* ensures it sits on its own line */
  font-weight: 700;
  color: #99b8fa;
  font-size: 1.1rem;
  margin-top: 6px;
}

/* Advantages section */
.services-advantages {
  max-width: 1000px;
  margin: 50px auto 80px auto;
  padding: 0 20px;
  text-align: center;
}

.services-advantages h2 {
  font-family: "Playfair Display SC", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #1c3d5a;
  margin-bottom: 16px;
}

.services-advantages p {
  color: #3d3d3d;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Advantages grid */
.advantages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.advantage h3 {
  font-family: "Playfair Display SC", serif;
  font-size: 1.2rem;
  color: #1c3d5a;
  margin-bottom: 6px;
}

.advantage p {
  font-size: 0.95rem;
  color: #3d3d3d;
  line-height: 1.4;
  margin: 0;
}

/* Final note */
.final-note {
  font-weight: 600;
  font-size: 1rem;
  color: #1c3d5a;
}

/* Call-to-action button */
.cta-button {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 36px;
  font-family: "Playfair Display SC", serif;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #1c3d5a, #2f5f8f);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}


/* Mobile adjustments */
@media (max-width: 780px) {
  .advantages-list {
    grid-template-columns: 1fr;
  }
}

/* Video section */
.services-videos {
  max-width: 1000px;
  margin: 60px auto 80px auto;
  padding: 0 20px;
  text-align: center;
}

.services-videos h2 {
  font-family: "Playfair Display SC", serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #1c3d5a;
  margin-bottom: 10px;
}

.services-videos .muted {
  color: #6b596b;
  margin-bottom: 32px;
}


.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.videos-grid video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  background: #000;
}


@media (max-width: 900px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .videos-grid video {
    max-height: 420px;
  }
}



/* Responsive */
@media (max-width: 780px) {
  .items-grid {
    grid-template-columns: 1fr;
  }
}
