/* Services page specific styles */

/* Main Services Section */
.space-y-16 > * + * {
  margin-top: 4rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

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

.text-accent {
  color: var(--accent);
}

.h-10 {
  height: 2.5rem;
}

.w-10 {
  width: 2.5rem;
}

.h-5 {
  height: 1.25rem;
}

.w-5 {
  width: 1.25rem;
}

.h-4 {
  height: 1rem;
}

.w-4 {
  width: 1rem;
}

.h-16 {
  height: 4rem;
}

.w-16 {
  width: 4rem;
}

.h-\[300px\] {
  height: 300px;
}

.md\:h-\[400px\] {
  height: 400px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.overflow-hidden {
  overflow: hidden;
}

.shrink-0 {
  flex-shrink: 0;
}

.object-cover {
  object-fit: cover;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

.inline-flex {
  display: inline-flex;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.bg-accent {
  background-color: var(--accent);
}

.text-white {
  color: white;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.md\:text-3xl {
  font-size: 1.875rem;
}

.font-bold {
  font-weight: 700;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

/* Fix for section headings and descriptions */
.text-center {
  text-align: center;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.max-w-2xl {
  max-width: 42rem;
}

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

/* Ensure section descriptions are properly centered */
.text-center .max-w-2xl.mx-auto {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.accent-button {
  background-color: var(--accent);
  color: white;
}

.accent-button:hover {
  background-color: rgba(var(--accent-rgb), 0.9);
}

.outline-button {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.outline-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.primary-button {
  background-color: var(--primary);
  color: white;
}

.primary-button:hover {
  background-color: rgba(var(--primary-rgb), 0.9);
}

/* Service rows */
.service-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .service-row {
    flex-direction: row;
  }

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

.service-image-wrapper {
  width: 100%;
}

@media (min-width: 1024px) {
  .service-image-wrapper {
    width: 50%;
  }
}

.service-image-container {
  position: relative;
  height: 300px;
  border-radius: 0.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-image-container {
    height: 400px;
  }
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  width: 100%;
}

@media (min-width: 1024px) {
  .service-content {
    width: 50%;
  }
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-icon-container {
  width: 4rem;
  height: 4rem;
  background-color: rgba(var(--gold-rgb), 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon {
  font-size: 1.5rem;
  color: var(--gold);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 768px) {
  .service-title {
    font-size: 1.875rem;
  }
}

.service-description {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.service-check-icon {
  color: var(--accent);
  margin-right: 0.5rem;
  margin-top: 0.125rem;
}

.service-cta-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.service-cta-button:hover {
  background-color: rgba(var(--accent-rgb), 0.9);
}

.service-arrow-icon {
  margin-left: 0.5rem;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-step {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  position: relative;
}

.process-step-number {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  background-color: var(--gold);
  color: var(--gold-foreground);
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
}

.process-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.process-step-description {
  font-size: 0.875rem;
  color: var(--secondary);
}

/* Consulting packages */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
  border: 1px solid #e5e7eb;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.popular-package {
  border: 2px solid var(--accent);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-bottom-left-radius: 0.25rem;
}

.package-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .package-content {
    padding: 2rem;
  }
}

.package-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.package-pricing {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.package-price {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.package-duration {
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.package-description {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.package-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.package-check-icon {
  color: var(--accent);
  margin-right: 0.5rem;
  margin-top: 0.125rem;
}

.package-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.custom-quote-section {
  margin-top: 3rem;
  text-align: center;
}

.custom-quote-text {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.custom-quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.custom-quote-button:hover {
  background-color: rgba(var(--primary-rgb), 0.1);
}

/* Remove the testimonial-specific styles that might be causing issues */
/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  height: 100%;
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 2rem;
  }
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author {
  flex-grow: 1;
}

.testimonial-name {
  font-weight: 700;
  color: var(--primary);
}

.testimonial-title {
  font-size: 0.875rem;
  color: #6b7280;
}

.testimonial-quote {
  font-style: italic;
  color: var(--secondary);
}

.case-studies-link {
  margin-top: 3rem;
  text-align: center;
}

.case-studies-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.case-studies-button:hover {
  background-color: rgba(var(--accent-rgb), 0.9);
}

/* FAQ section */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: transparent;
  cursor: pointer;
  text-align: left;
  border: none;
}

.faq-question-text {
  font-weight: 500;
  color: var(--primary);
}

.faq-icon {
  transition: transform 0.2s ease;
  color: #6b7280;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-text {
  padding: 0 1.5rem 1.5rem;
  color: var(--secondary);
}

.more-questions-section {
  margin-top: 3rem;
  text-align: center;
}

.more-questions-text {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.more-questions-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.more-questions-button:hover {
  background-color: rgba(var(--primary-rgb), 0.1);
}

/* CTA section */
.cta-container {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.cta-primary-button:hover {
  background-color: rgba(var(--accent-rgb), 0.9);
}

.cta-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.cta-secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .lg\:w-1\/2 {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .md\:text-3xl {
    font-size: 1.875rem;
  }

  .md\:h-\[400px\] {
    height: 400px;
  }
}

