/* ================= Services Page Specific Theme ================= */
:root {
  --primary-color: #0A192F; /* Deep Navy */
  --highlight-gold: #FFB300; /* Rich Gold */
  --light-blue: #F0F4F8;
}

.highlight-gold {
  color: var(--highlight-gold);
}

.text-gold {
  color: var(--highlight-gold);
}

/* ================= Hero Section ================= */
.services-hero {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.05) 0%, rgba(255, 179, 0, 0.05) 100%);
  padding: 80px 0 60px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.page-title {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.page-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  line-height: 1.7;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ================= Detailed Services Layout ================= */
.services-detailed {
  padding: 80px 0;
  background-color: var(--white);
}

.service-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-content {
  flex: 1;
}

.s-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: rgba(10, 25, 47, 0.05);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-row:hover .s-icon-wrapper {
  background: var(--highlight-gold);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 179, 0, 0.3);
}

.service-content h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.7;
}

.s-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.s-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.s-features li i {
  color: var(--highlight-gold);
  font-size: 1.2rem;
}

.service-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
  position: relative;
  background: var(--light-blue);
}

.service-row:hover .service-image {
  transform: scale(1.02);
}

.service-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ================= CTA Section ================= */
.services-cta {
  background: var(--primary-color);
  color: var(--white);
  padding: 80px 0;
  border-radius: 30px 30px 0 0;
  text-align: center;
}

.services-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.services-cta p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.btn-gold {
  display: inline-block;
  background: var(--highlight-gold);
  color: var(--primary-color) !important;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
  transition: var(--transition);
  border: border: 2px solid transparent;
}

.btn-gold:hover {
  background: #E6A200;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 179, 0, 0.4);
}

.mt-4 {
  margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .service-row, .service-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .s-icon-wrapper {
    margin: 0 auto 20px auto;
  }
  
  .s-features {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2.2rem;
  }
  .service-content h2 {
    font-size: 1.8rem;
  }
  .services-cta h2 {
    font-size: 2rem;
  }
}
