/* ========================================
   Services Page Specific Styles
   ======================================== */

.page-description {
  color: var(--gray-600);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 1rem auto 0;
  text-align: center;
}

/* Services Full Section */
.services-full-section {
  padding: 3rem 0;
}

.services-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-full-card {
  background-color: var(--white);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  padding: 2rem;
}

.service-full-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-4px);
}

.service-full-icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--navy-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color var(--transition-normal);
}

.service-full-card:hover .service-full-icon {
  background-color: var(--navy-900);
}

.service-full-icon svg {
  color: var(--gold-500);
}

.service-full-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.75rem;
}

.service-full-description {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--gold-500);
  border-radius: 50%;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.service-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  border: 1px solid var(--navy-200);
  border-radius: 0.5rem;
  color: var(--navy-800);
  font-weight: 700;
  transition: all var(--transition-normal);
}

.service-btn:hover {
  background-color: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

/* CTA Section */
.services-cta-section {
  padding: 3rem 0 5rem;
}

.cta-card {
  background-color: var(--navy-900);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><rect width="40" height="40" fill="none"/><path d="M0 20h20M20 0v20" stroke="%23fff" stroke-width="1"/></svg>');
  background-size: 40px 40px;
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-description {
  color: var(--gray-300);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--gold-500);
  color: var(--navy-900);
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  transition: all var(--transition-normal);
  box-shadow: 0 0 20px rgba(229, 193, 88, 0.3);
}

.cta-button:hover {
  background-color: var(--gold-400);
  transform: scale(1.05);
}

/* ========================================
   Media Queries
   ======================================== */

@media (min-width: 768px) {
  .services-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .services-full-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-card {
    padding: 4rem;
  }
}
