/* Services Page Specific Styles */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* Intro Section */
.services-intro {
  text-align: center;
  padding: 4rem 2rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Services Grid */
.services-list-section {
  padding: 2rem 2rem 5rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-item {
  background: #f5f7fa;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,47,108,0.07);
  border: 1px solid rgba(0,47,108,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange, #FF6B00);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,47,108,0.14);
  background: var(--navy, #002F6C);
  color: #fff;
}

.service-item svg {
  width: 42px;
  height: 42px;
  color: var(--orange, #FF6B00);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-item:hover svg {
  transform: scale(1.1);
}

.service-item h3 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy, #002F6C);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.service-item:hover h3 {
  color: #fff;
}

.service-item p {
  font-size: 0.9rem;
  color: #5a6a7e;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.service-item:hover p {
  color: rgba(255,255,255,0.78);
}

/* Why Choose Section */
.why-choose {
  background: var(--navy, #002F6C);
  color: #fff;
  padding: 5rem 2rem;
}

.why-choose-inner {
  max-width: 900px;
  margin: 0 auto;
}

.why-choose h2 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  text-align: center;
}

.why-choose ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.why-choose li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.why-choose li:hover {
  background: rgba(255,107,0,0.1);
  border-color: rgba(255,107,0,0.3);
}

.why-choose svg {
  color: var(--orange, #FF6B00);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Clients Section */
.clients {
  text-align: center;
  padding: 5rem 2rem;
  background: #f5f7fa;
}

.clients-inner {
  max-width: 720px;
  margin: 0 auto;
}

.clients h2 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy, #002F6C);
  margin-bottom: 1.25rem;
}

.clients p {
  font-size: 1.05rem;
  color: #4A4A4A;
  line-height: 1.75;
  margin-bottom: 2rem;
}

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

  .why-choose ul {
    grid-template-columns: 1fr;
  }
}
