/* ===============================
   🧩 Acquire + Service Styles
   Clean merged & optimized
   =============================== */

/* ---------- Badge ---------- */
.acquire-badge-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acquire-badge-wrap img {
  width: 150px;
}

.acquire-badge-wrap p {
  position: absolute;
  top: 35%;
  left: auto;
}

/* ---------- Hero Section ---------- */
.acquire-hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.acquire-container {
  width: 100%;
  max-width: var(--dl-size-size-maxcontent);
  margin: 0 auto;
}

.acquire-cover {
  background: linear-gradient(rgba(51, 51, 51, 0.4) 100%, rgba(100, 100, 70, 0.3) 10.47%),
    url("/public/Assets/acquire.jpg") no-repeat;
  background-position: center 65%;
  background-size: cover;
  width: 100%;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.acquire-cover-title {
  font-weight: 400;
  font-size: 3rem;
  color: white;
}

.acquire-heading {
  display: flex;
  flex-direction: column;
  padding: 5%;
  justify-content: space-between;
  align-items: flex-start;
}

.acquire-heading h1 {
  color: var(--engbakken-color);
  font-weight: 400;
}

.acquire-heading h2 {
  font-weight: 650;
  font-size: large;
}

/* ---------- Pricing Section ---------- */
.acquire-pricing {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(100.8deg, rgba(50, 190, 22, 0.4) 64%, rgba(100, 100, 70, 0.6) 0.47%),
    url("https://images.unsplash.com/photo-1540470174401-f25e9eb17c1c?auto=format&fit=crop&w=1167&q=80");
  max-width: var(--dl-size-size-maxcontent);
}

.acquire-pricing h2 {
  margin: 2.5%;
  padding: 0 5%;
  overflow-wrap: break-word;
  color: white;
  font-size: 2.5rem;
  text-align: center;
}

.acquire-container15 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 48px;
  margin: 0;
}

/* ---------- Card Styles ---------- */
.aqcuire-card-pricing-card {
  width: 100%;
  max-width: 300px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  margin: 16px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.85);
  transition: 0.3s;
}

.aqcuire-card-pricing-card:hover {
  transform: scale(1.03);
}

.aqcuire-card-text {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 24px auto;
  text-transform: uppercase;
}

.aqcuire-card-button {
  color: white;
  background-color: black;
  padding: 8px 32px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
}

.aqcuire-card-button:hover {
  background-color: var(--engbakken-color);
  color: black;
}

/* ---------- Franchise Badge ---------- */
.franchise-badge {
  position: absolute;
  top: 0%;
  left: -15%;
  width: 7rem;
  z-index: 2;
}

.franchise-badge img {
  width: 10rem;
  transform: rotate(-40deg);
}

/* ---------- Steps ---------- */
.acquire-steps {
  width: 100%;
  max-width: 1400px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.acquire-text07 {
  color: black;
  font-size: 3rem;
}

.acquire-text08 {
  color: gray;
  font-size: 1.15rem;
  max-width: 600px;
  margin: var(--dl-space-space-unit) auto;
  text-align: center;
}

/* ---------- Service Section ---------- */
.service-container {
  width: 100%;
}

.service-container h1 {
  text-align: center;
  margin: 2% auto;
}

.service-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  gap: 8px;
}

.service-button {
  cursor: pointer;
  position: relative;
  margin: 0 4px;
  transition: all 0.25s ease-in-out;
}

.service-button img {
  transition: 0.4s ease-in-out;
}

.service-wrapper .service-button:not(.active):hover {
  transform: scale(1.1);
}

.service-wrapper .service-button p {
  position: absolute;
  font-size: 1.2rem;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  color: white;
}

.service-wrapper .active {
  background-color: white;
  border: 2px solid var(--engbakken-color);
  border-top: 0;
  border-bottom: 0;
  margin: 0;
  z-index: 2;
}

.service-content {
  background-image: url("/public/Assets/Baggrund.png");
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 700px;
  padding: 20vh 10%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.service-content img {
  width: 25rem;
}

.service-content-text {
  width: 50%;
}

.service-content-text li {
  list-style-type: disc;
  list-style-position: inside;
}

.service-separator {
  width: 100%;
  height: 20px;
  margin-top: -20px;
  background-color: var(--engbakken-color);
  color: var(--engbakken-color);
  max-width: var(--dl-size-size-maxcontent);
  z-index: 4;
}



/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .service-wrapper {
    overflow-x: auto;
  }

  .service-button img {
    width: 150px;
  }

  .service-content {
    flex-direction: column;
    height: auto;
    padding: 10vh 5%;
  }

  .service-content-text {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
  }
}