/* ==========================================================
   LOISARO
   Intro Section
========================================================== */

.intro {
  background: var(--color-background);
}

.intro-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 34px;

  margin-top: 90px;
}

.intro-card {
  background: white;

  padding: 50px;

  border-radius: 28px;

  transition: 0.35s;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.intro-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.intro-card h3 {
  margin-bottom: 22px;

  font-size: 1.6rem;
}

.intro-card p {
  color: #666;

  line-height: 1.9;
}

@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-card {
    padding: 40px;
  }
}

/* ==========================================================
   Showcase
========================================================== */

.showcase {
  padding: 180px 0;

  background: white;
}

.showcase-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 90px;
}

.eyebrow {
  display: inline-block;

  margin-bottom: 18px;

  color: var(--color-gold);

  font-size: 0.9rem;

  font-weight: 600;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.showcase h2 {
  font-size: clamp(2.6rem, 4vw, 4.4rem);

  margin-bottom: 34px;
}

.showcase p {
  font-size: 1.08rem;

  line-height: 1.9;

  color: #666;

  margin-bottom: 40px;

  max-width: 560px;
}

.showcase-image {
  display: flex;

  justify-content: center;
}

.showcase-image img {
  width: 100%;

  display: block;

  transition:
    transform 0.9s ease,
    filter 0.9s ease;
}

.showcase-image:hover img {
  transform: scale(1.03);

  filter: brightness(0.96);
}

@media (max-width: 992px) {
  .showcase-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .showcase-text {
    text-align: center;
  }

  .showcase p {
    margin-left: auto;

    margin-right: auto;
  }
}

/* ==========================================================
   Process
========================================================== */

.process {
  padding: 180px 0;

  background: #f7f5f2;
}

.process-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 35px;

  margin-top: 90px;
}

.process-item {
  background: #fff;

  border-radius: 28px;

  padding: 45px;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);

  transition: 0.35s ease;
}

.process-item:hover {
  transform: translateY(-6px);
}

.process-number {
  font-size: 0.9rem;

  font-weight: 700;

  color: var(--color-gold);

  letter-spacing: 0.15em;

  margin-bottom: 25px;
}

.process-item h3 {
  font-size: 1.6rem;

  margin-bottom: 20px;
}

.process-item p {
  color: #666;

  line-height: 1.8;
}

@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================
   Einsatzbereiche
========================================================== */

/* ==========================================================
   Einsatzbereiche
========================================================== */

.locations {
  padding: 180px 0;

  background: #ffffff;
}

.locations-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;

  margin-top: 90px;
}

.location-card {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  aspect-ratio: 4/3;

  cursor: pointer;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.location-card img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition:
    transform 0.9s ease,
    filter 0.9s ease;
}

.location-card:hover img {
  transform: scale(1.08);

  filter: brightness(0.88);
}

.location-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 42px;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.58) 35%,
    rgba(0, 0, 0, 0.18) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

.location-overlay h3 {
  color: #ffffff;

  font-size: 2rem;

  font-weight: 700;

  margin-bottom: 14px;

  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55);
}

.location-overlay p {
  color: rgba(255, 255, 255, 0.96);

  font-size: 1rem;

  line-height: 1.8;

  max-width: 320px;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

@media (max-width: 900px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================
   Vorteile
========================================================== */

.advantages {
  padding: 180px 0;

  background: #f7f5f2;
}

.advantages-list {
  max-width: 950px;

  margin: 90px auto 0;
}

.advantage {
  display: grid;

  grid-template-columns: 70px 1fr;

  gap: 35px;

  align-items: flex-start;

  padding: 45px 0;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.advantage:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.advantage-icon {
  width: 52px;

  height: 52px;

  border-radius: 50%;

  background: rgba(200, 161, 90, 0.12);

  color: var(--color-gold);

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 1.2rem;

  font-weight: 700;
}

.advantage h3 {
  font-size: 1.55rem;

  margin-bottom: 14px;

  color: var(--color-dark);
}

.advantage p {
  color: #666;

  line-height: 1.8;

  max-width: 650px;
}

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

    gap: 22px;
  }
}
/* ==========================================================
   Kontakt
========================================================== */

.contact {
  padding: 200px 0;

  background: white;
}

.contact-intro {
  text-align: center;

  max-width: 760px;

  margin: 0 auto 100px;
}

.contact-intro span {
  color: var(--color-gold);

  font-size: 0.95rem;

  font-weight: 600;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.contact-intro h2 {
  margin: 28px 0;

  font-size: clamp(3rem, 5vw, 5rem);

  line-height: 1.05;
}

.contact-intro p {
  color: #666;

  font-size: 1.15rem;

  line-height: 1.8;
}

.contact-wrapper {
  display: grid;

  grid-template-columns: 360px 1fr;

  gap: 70px;

  align-items: start;
}

.contact-info {
  background: #f7f5f2;

  border-radius: 30px;

  padding: 50px;
}

.contact-info h3 {
  margin-bottom: 35px;
}

.contact-item {
  margin-bottom: 40px;
}

.contact-item strong {
  display: block;

  margin-bottom: 8px;

  color: #222;
}

.contact-item p {
  color: #666;
}

.contact-form {
  display: grid;

  gap: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 22px 24px;

  border: 1px solid rgba(0, 0, 0, 0.08);

  border-radius: 18px;

  font-size: 1rem;

  font-family: inherit;

  transition: 0.3s;

  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;

  border-color: var(--color-gold);

  box-shadow: 0 0 0 4px rgba(200, 161, 90, 0.12);
}

.contact-form textarea {
  resize: vertical;

  min-height: 180px;
}

.contact-form .btn {
  width: max-content;

  margin-top: 15px;
}

@media (max-width: 950px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
.intro-card:nth-child(2),
.process-item:nth-child(2),
.location-card:nth-child(2),
.advantage:nth-child(2) {
  transition-delay: 0.12s;
}

.intro-card:nth-child(3),
.process-item:nth-child(3),
.location-card:nth-child(3),
.advantage:nth-child(3) {
  transition-delay: 0.24s;
}

.process-item:nth-child(4),
.location-card:nth-child(4),
.advantage:nth-child(4) {
  transition-delay: 0.36s;
}
/* ==========================================================
   Animation Delays
========================================================== */

.intro-card:nth-child(1),
.process-item:nth-child(1),
.location-card:nth-child(1),
.advantage:nth-child(1) {
  transition-delay: 0.05s;
}

.intro-card:nth-child(2),
.process-item:nth-child(2),
.location-card:nth-child(2),
.advantage:nth-child(2) {
  transition-delay: 0.15s;
}

.intro-card:nth-child(3),
.process-item:nth-child(3),
.location-card:nth-child(3),
.advantage:nth-child(3) {
  transition-delay: 0.25s;
}

.process-item:nth-child(4),
.location-card:nth-child(4),
.advantage:nth-child(4) {
  transition-delay: 0.35s;
}
