/* =========================================
   SERVICES PAGE — PREMIUM LUXURY THEME
========================================= */

/* Page Background */
.page-services {
  background:
    radial-gradient(circle at top left, rgba(240, 183, 107, 0.06), transparent 55%),
    radial-gradient(circle at bottom right, rgba(240, 183, 107, 0.04), transparent 55%),
    var(--bg-dark);
  color: #f7f7ff;
}

/* =========================================
   HERO SECTION
========================================= */

.page-services .hero-premium {
  padding: 84px 0 56px;
  background:
    radial-gradient(circle at top left, rgba(240, 183, 107, 0.18), transparent 55%),
    linear-gradient(135deg, #050816 0%, #02030a 55%, #050816 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.page-services .hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.page-services .hero-tag {
  display: inline-flex;
  padding: 4px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(240, 183, 107, 0.08);
  border: 1px solid rgba(240, 183, 107, 0.4);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 16px;
}

.page-services .hero-title-lg {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.15;
}

.page-services .hero-lead {
  max-width: 620px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(232, 235, 245, 0.9);
}

/* =========================================
   SERVICES GRID LAYOUT
========================================= */

.page-services .services-section {
  padding: 72px 0 40px;
}

.page-services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 36px;
}

@media (max-width: 900px) {
  .page-services .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .page-services .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   SERVICE CARDS
========================================= */

.page-services .service-card {
  background: linear-gradient(145deg,
              rgba(240, 183, 107, 0.10),
              rgba(5, 8, 22, 0.96));
  border: 1px solid rgba(240, 183, 107, 0.35);
  padding: 26px 24px 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  transition: 0.25s ease;
  position: relative;
}

.page-services .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.85);
}

/* Icons */
.page-services .service-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

/* Card Text */
.page-services .service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  color: #ffffff;
}

.page-services .service-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(226, 230, 245, 0.9);
}

/* =========================================
   CTA SECTION
========================================= */

.page-services .section-cta-gold {
  padding: 72px 0 78px;
  margin-top: 80px;
  background:
    radial-gradient(circle at top, rgba(240, 183, 107, 0.18), transparent 60%),
    linear-gradient(135deg, #101523 0%, #050816 60%, #03040b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-services .cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.page-services .cta-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.page-services .cta-subtitle {
  font-size: 0.95rem;
  color: rgba(221, 226, 240, 0.9);
  margin-bottom: 24px;
}

/* CTA Button */
.page-services .btn-primary.btn-large {
  padding: 12px 30px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  background-image: linear-gradient(135deg, #c88832, #f0b76b, #ffcf81);
  color: #1a1206;
  border: none;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.7);
  transition: 0.25s ease;
}

.page-services .btn-primary.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.85);
}
