/* SECTION: Solutions Landing Page */

/* Global adjustments for the page */
.solutions-page {
  background-color: var(--neutral-color);
  color: var(--text-color);
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; /* Full viewport height */
  background: var(--neutral-color);
}

.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  max-width: 50%;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.hero-content .btn {
  padding: 1rem 2rem;
  font-size: 1.2rem;
}

/* Deliver Results Section */
.deliver-results {
  padding: 4rem 2rem;
  text-align: center;
}

.deliver-results .container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.deliver-results h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.step {
  padding: 2rem;
  text-align: left;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.step p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* Why Choose Us Section */
.why-choose-us {
  background: var(--primary-color);
  padding: 4rem 2rem;

  z-index: 22;
  position: relative;
}
.why-choose-us .seo {
  display: flex;
  position: relative;
  flex-direction: row;
}

.why-choose-us .container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.why-choose-us h2 {
  font-size: 6rem;
  color: var(--neutral-color);
  text-align: left;
  z-index: 2;
}

.why-choose-us ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.why-choose-us ul li {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--neutral-color);
}

.why-choose-us ul li strong {
  color: var(--accent-color);
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 2rem;
}

.testimonials .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonials h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--primary-color);
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
/*
.card {
  background: var(--neutral-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
*/
.card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* Call-to-Action Section */
.call-to-action {
  display: flex;
  flex-direction: column;
  background: var(--accent-blue);
  padding: 4rem 2rem;
  text-align: center;
}
.call-to-action .container {
  display: flex;
  flex-direction: column;
}

.call-to-action h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.call-to-action p {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.call-to-action .btn {
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 1rem 2rem;
  font-size: 1.2rem;
}

.call-to-action .btn:hover {
  background: var(--accent-color);
  color: var(--neutral-color);
}

/* Sektionens grundläggande styling */
.expertise-section {
  position: relative;
  padding: 4rem 1rem;
  background-color: var(--primary-color);
}

.expertise-section .container {
  justify-content: center;
  padding: 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  justify-content: center;
  align-items: start;
  width: 90%;
}

.expertise-item {
  text-align: left;
  padding: 2rem;
}

/*
.expertise-item:hover {
} */
.expertise-item a {
  color: var(--text-color-hover);
  font-size: 2rem;
  text-decoration: none;
  margin-bottom: 2rem;
  display: inline-block;
  transition: color ease 0.3s;
  box-shadow: 0px 1px 0px 0px var(--text-color-hover);
}
.expertise-item a:hover {
  color: var(--neutral-color);
  box-shadow: 0px 1px 0px 0px var(--neutral-color);
}
.expertise-item span {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.expertise-item span p {
  margin: 0;
  white-space: nowrap;
  color: var(--text-color);
}

.expertise-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #007bff; /* Ikonens färg */
}
.container .service-wrapper {
  justify-content: center;
}

.customer-case {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 2rem 2rem 2rem;
  align-items: center;
}
.customer-case img {
  height: 500px;
  width: 500px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content {
    width: 100%;
    max-width: 100%;
    margin-top: 180px;
  }
  .hero-content p {
    font-size: 1rem;
    text-align: left;
  }
  .hero-section .container {
    flex-direction: column;
  }
  .hero-section .container h1 {
    font-size: 1.5rem;
    text-align: left;
  }
  .why-choose-us h2 {
    font-size: 2.5rem;
    text-align: center;
  }
  .why-choose-us .container {
    flex-direction: column;
    text-align: center;
  }
  .deliver-results .container h2 {
    position: relative;
    font-size: 2.5rem;
    text-transform: uppercase;
    padding-top: 2rem;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    padding: 0rem;
  }

  .why-choose-us .container li {
    padding-bottom: 1rem;
  }

  .testimonials .container {
    text-align: center;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}
