/* =========================================================
   AL-YAQEEN
   Internationale Bestattungen
   ========================================================= */

/* =========================================================
   GRUNDLAGEN
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;

  background: #ffffff;

  color: #173b2b;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  width: 100%;

  background: #ffffff;

  border-bottom: 1px solid rgba(23, 59, 43, 0.1);
}

.header-inner {
  width: 100%;

  max-width: 1400px;

  min-height: 125px;

  margin: 0 auto;

  padding: 15px 55px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-navigation {
  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 42px;
}

.main-navigation a {
  position: relative;

  text-decoration: none;

  font-size: 17px;

  font-weight: 600;

  color: #173b2b;

  padding: 10px 0;

  transition: color 0.25s ease;
}

.main-navigation a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 2px;

  width: 0;

  height: 2px;

  background: #b28a35;

  transition: width 0.25s ease;
}

.main-navigation a:hover {
  color: #b28a35;
}

.main-navigation a:hover::after {
  width: 100%;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    width: 100%;

    min-height: 650px;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.58) 42%,
            rgba(0, 0, 0, 0.38) 70%,
            rgba(0, 0, 0, 0.48) 100%
        ),
        url("../images/hero-ceremonie-2.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    overflow: hidden;
}


.hero-overlay {
    width: 100%;

    min-height: 650px;

    display: flex;

    align-items: center;
}


.hero-inner {
    width: 100%;

    max-width: 1450px;

    margin: 0 auto;

    padding: 70px 55px;

    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(450px, 560px);

    align-items: center;

    gap: 70px;
}


/* =========================================================
   LINKER HERO-BEREICH
   ========================================================= */

.hero-left {
    max-width: 760px;
}


.hero-eyebrow {
    margin-bottom: 14px;

    color: #22d39a;

    font-size: 19px;

    font-weight: 800;

    letter-spacing: 8px;

    text-transform: uppercase;
}


.hero-left h1 {
    margin: 0;

    font-size: clamp(58px, 5vw, 88px);

    line-height: 0.98;

    font-weight: 600;

    letter-spacing: -3px;

    color: #ffffff;
}


.hero-left h1 span {
    color: #00d39a;
}


/* =========================================================
   GOLDENE LINIE + RAUTE
   ========================================================= */

.hero-title-line {
    display: flex;

    align-items: center;

    width: 440px;

    max-width: 100%;

    margin: 20px 0 12px;
}


.hero-title-line span {
    flex: 1;

    height: 2px;

    background: #c89b3c;
}


.hero-title-line b {
    margin: 0 16px;

    color: #c89b3c;

    font-size: 24px;

    font-weight: 400;

    line-height: 1;
}


/* =========================================================
   HERO TEXT
   ========================================================= */

.hero-text {
    max-width: 700px;

    margin: 0 0 24px;

    color: #ffffff;

    font-size: 21px;

    line-height: 1.75;

    font-weight: 400;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 28px;

    flex-wrap: wrap;
}


.hero-call-button,
.hero-contact-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 58px;

    padding: 0 29px;

    border-radius: 14px;

    text-decoration: none;

    font-size: 17px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.hero-call-button {
    background: #079b6e;

    color: #ffffff;
}


.hero-call-button:hover {
    background: #08b981;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}


.hero-contact-button {
    background: #ffffff;

    color: #087b5b;
}


.hero-contact-button:hover {
    background: #f2f2f2;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   RECHTE HERO-KARTE
   ========================================================= */

.hero-card {
    width: 100%;

    min-height: 430px;

    padding: 55px 45px;

    border-radius: 0 28px 28px 0;

    background:
        linear-gradient(
            135deg,
            rgba(39, 32, 30, 0.94),
            rgba(45, 17, 19, 0.94)
        );

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.30);

    color: #ffffff;
}


.hero-card h2 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 30px;

    line-height: 1.15;

    font-weight: 800;
}


.hero-card-intro {
    max-width: 470px;

    margin: 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 19px;

    line-height: 1.55;
}

/* =========================================================
   VERTRAUEN / PERSÖNLICHE BEGLEITUNG
   ========================================================= */

.trust-section {
    width: 100%;

    padding: 95px 0 85px;

    background: #f7f9f8;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.trust-container {
    width: calc(100% - 80px);

    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================================
   ÜBERSCHRIFT
   ========================================================= */

.trust-heading {
    margin-bottom: 38px;
}


.trust-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: #009b70;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 7px;

    line-height: 1.2;
}


.trust-heading h2 {
    margin: 0 0 14px;

    color: #075c45;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.trust-heading p {
    max-width: 780px;

    margin: 0;

    color: #4d5e57;

    font-size: 19px;

    line-height: 1.65;
}


/* =========================================================
   KARTEN GRID
   ========================================================= */

.trust-grid {
    display: grid;

    grid-template-columns: 1.15fr 1fr 1fr;

    grid-template-rows: 1fr 1fr;

    gap: 26px;
}


/* =========================================================
   LINKE GROSSE KARTE
   ========================================================= */

.trust-feature-card {
    position: relative;

    grid-row: span 2;

    min-height: 420px;

    overflow: hidden;

    border-radius: 0 26px 26px 26px;

    background:
        linear-gradient(
            135deg,
            #064c38 0%,
            #003d2e 55%,
            #002f25 100%
        );

    box-shadow:
        0 18px 40px rgba(10, 50, 38, 0.16);
}


/* =========================================================
   DEZENTES MUSTER NUR LINKS
   ========================================================= */

.trust-feature-pattern {
    position: absolute;

    right: -35px;

    bottom: -55px;

    width: 260px;

    height: 260px;

    opacity: 0.18;

    border: 3px solid #c89b3c;

    border-radius: 50%;

    transform: rotate(35deg);
}


.trust-feature-pattern::before,
.trust-feature-pattern::after {
    content: "";

    position: absolute;

    inset: 28px;

    border: 2px solid #c89b3c;

    border-radius: 45% 55% 45% 55%;

    transform: rotate(35deg);
}


.trust-feature-pattern::after {
    inset: 58px;

    transform: rotate(-25deg);
}


/* =========================================================
   INHALT LINKE KARTE
   ========================================================= */

.trust-feature-content {
    position: relative;

    z-index: 2;

    height: 100%;

    min-height: 420px;

    padding: 48px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.trust-feature-icon {
    width: 58px;

    height: 58px;

    margin-bottom: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #c89b3c;

    color: #ffffff;

    font-size: 27px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.18);
}


.trust-feature-content h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 43px;

    line-height: 1.1;

    font-weight: 800;
}


.trust-feature-content p {
    max-width: 430px;

    margin: 0;

    color: rgba(255, 255, 255, 0.94);

    font-size: 18px;

    line-height: 1.65;
}


/* =========================================================
   GOLDENE LINIE
   ========================================================= */

.trust-gold-line {
    width: 250px;

    max-width: 100%;

    margin-top: 38px;

    display: flex;

    align-items: center;
}


.trust-gold-line span {
    flex: 1;

    height: 2px;

    background: #c89b3c;
}


.trust-gold-line b {
    margin-left: 18px;

    color: #c89b3c;

    font-size: 25px;

    font-weight: 400;
}


/* =========================================================
   NORMALE KARTEN
   ========================================================= */

.trust-card {
    min-height: 195px;

    padding: 32px;

    display: flex;

    align-items: center;

    gap: 24px;

    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 14px 35px rgba(15, 50, 40, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.trust-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 40px rgba(15, 50, 40, 0.12);
}


/* =========================================================
   ICON
   ========================================================= */

.trust-icon {
    flex: 0 0 72px;

    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e4f1eb;

    color: #075c45;

    font-size: 34px;

    font-weight: 600;
}


.trust-icon span {
    line-height: 1;
}


/* =========================================================
   KARTEN TEXT
   ========================================================= */

.trust-card-content {
    flex: 1;
}


.trust-card h3 {
    margin: 0 0 8px;

    color: #075c45;

    font-size: 28px;

    line-height: 1.2;

    font-weight: 800;
}


.trust-card p {
    margin: 0;

    color: #4c5d56;

    font-size: 16px;

    line-height: 1.65;
}


/* =========================================================
   24/7 KARTE
   ========================================================= */

.trust-card-green {
    background:
        linear-gradient(
            135deg,
            #006b4f 0%,
            #005c45 100%
        );

    box-shadow:
        0 18px 38px rgba(0, 92, 69, 0.18);
}


.trust-card-green h3 {
    color: #ffffff;

    font-size: 32px;
}


.trust-card-green p {
    color: rgba(255, 255, 255, 0.94);
}


.trust-icon-gold {
    background: #c89b3c;

    color: #ffffff;
}


/* =========================================================
   ABSCHLUSS
   ========================================================= */

.trust-footer {
    margin-top: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 26px;
}


.trust-footer span {
    width: 65px;

    height: 2px;

    background: #c89b3c;
}


.trust-footer p {
    margin: 0;

    color: #5b6a64;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 5px;

    text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .trust-container {
        width: calc(100% - 50px);
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: auto;
    }

    .trust-feature-card {
        grid-row: span 2;
    }

    .trust-card {
        min-height: 190px;
    }

}


/* =========================================================
   HANDY
   ========================================================= */

@media (max-width: 760px) {

    .trust-section {
        padding: 65px 0 60px;
    }

    .trust-container {
        width: calc(100% - 36px);
    }

    .trust-heading {
        margin-bottom: 28px;
    }

    .trust-eyebrow {
        font-size: 12px;

        letter-spacing: 5px;
    }

    .trust-heading h2 {
        font-size: 34px;

        letter-spacing: -0.8px;
    }

    .trust-heading p {
        font-size: 16px;

        line-height: 1.6;
    }

    .trust-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .trust-feature-card {
        grid-row: auto;

        min-height: 390px;
    }

    .trust-feature-content {
        min-height: 390px;

        padding: 35px 28px;
    }

    .trust-feature-content h3 {
        font-size: 38px;
    }

    .trust-feature-content p {
        font-size: 16px;
    }

    .trust-card {
        min-height: 160px;

        padding: 25px;

        gap: 18px;
    }

    .trust-icon {
        flex-basis: 60px;

        width: 60px;

        height: 60px;

        font-size: 28px;
    }

    .trust-card h3 {
        font-size: 24px;
    }

    .trust-card p {
        font-size: 15px;
    }

    .trust-footer {
        gap: 14px;
    }

    .trust-footer span {
        width: 35px;
    }

    .trust-footer p {
        font-size: 10px;

        letter-spacing: 2.5px;
    }

}


/* =========================================================
   KLEINE HANDYS
   ========================================================= */

@media (max-width: 480px) {

    .trust-container {
        width: calc(100% - 28px);
    }

    .trust-heading h2 {
        font-size: 30px;
    }

    .trust-feature-card {
        min-height: 360px;
    }

    .trust-feature-content {
        min-height: 360px;

        padding: 30px 24px;
    }

    .trust-feature-icon {
        width: 50px;

        height: 50px;

        font-size: 23px;
    }

    .trust-feature-content h3 {
        font-size: 34px;
    }

    .trust-card {
        padding: 22px;

        align-items: flex-start;
    }

    .trust-icon {
        flex-basis: 52px;

        width: 52px;

        height: 52px;

        font-size: 24px;
    }

    .trust-card h3 {
        font-size: 22px;
    }

    .trust-card p {
        font-size: 14px;

        line-height: 1.55;
    }

}

/* =========================================================
   HOME – VERTRAUEN & ERFAHRUNG
   ========================================================= */

.home-trust-section {
    width: 100%;
    padding: 95px 0 105px;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.home-trust-container {
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 46% 54%;
    align-items: center;

    gap: 65px;
}


/* =========================================================
   LINKE BILDSEITE
   ========================================================= */

.home-trust-visual {
    position: relative;

    width: 100%;
    height: 620px;
}


/* =========================================================
   BILDER
   ========================================================= */

.home-trust-image {
    position: absolute;

    overflow: hidden;

    background: #e9efec;

    box-shadow:
        0 18px 40px rgba(10, 50, 40, 0.16);
}


.home-trust-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   OBERES BILD
   ========================================================= */

.home-trust-image-top {
    top: 0;
    left: 0;

    width: 78%;
    height: 390px;

    border-radius: 0 25px 25px 25px;

    z-index: 1;
}


/* =========================================================
   UNTERES BILD
   ========================================================= */

.home-trust-image-bottom {
    right: 0;
    bottom: 0;

    width: 72%;
    height: 390px;

    padding: 6px;

    background: #ffffff;

    border-radius: 25px;

    z-index: 2;
}


.home-trust-image-bottom img {
    border-radius: 19px;
}


/* =========================================================
   24/7 BADGE
   ========================================================= */

.home-trust-badge {
    position: absolute;

    top: 225px;
    left: 35%;

    z-index: 5;

    width: 180px;
    height: 145px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #250b0a,
            #130403
        );

    color: #ffffff;

    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.28);
}


.home-trust-badge strong {
    font-size: 38px;
    line-height: 1;

    font-weight: 800;
}


.home-trust-badge span {
    margin-top: 8px;

    font-size: 16px;
    line-height: 1.2;
}


/* =========================================================
   RECHTE SEITE
   ========================================================= */

.home-trust-content {
    width: 100%;
    max-width: 720px;
}


.home-trust-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: #009b70;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 6px;
}


.home-trust-content h2 {
    margin: 0 0 14px;

    color: #075c45;

    font-size: clamp(40px, 3.6vw, 58px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.home-trust-intro {
    max-width: 680px;

    margin: 0 0 28px;

    color: #4a5d55;

    font-size: 18px;

    line-height: 1.65;
}


/* =========================================================
   KARTEN
   ========================================================= */

.home-trust-cards {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}


.home-trust-card {
    position: relative;

    min-height: 145px;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 22px;

    overflow: hidden;

    border-radius: 19px;

    background-color: #164f3e;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 59, 44, 0.94),
            rgba(0, 59, 44, 0.70)
        ),
        var(--card-image);

    background-size: cover;

    background-position: center;

    box-shadow:
        0 12px 28px rgba(10, 50, 40, 0.14);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.home-trust-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 35px rgba(10, 50, 40, 0.20);
}


/* =========================================================
   KARTEN OVERLAY
   ========================================================= */

.home-trust-card-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 55, 41, 0.25),
            rgba(0, 55, 41, 0.04)
        );

    pointer-events: none;
}


/* =========================================================
   KARTEN ICON
   ========================================================= */

.home-trust-card-icon {
    position: relative;

    z-index: 2;

    flex: 0 0 55px;

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c89b3c;

    color: #ffffff;

    font-size: 25px;

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.18);
}


.home-trust-card-text {
    position: relative;

    z-index: 2;

    flex: 1;
}


.home-trust-card h3 {
    margin: 0 0 6px;

    color: #ffffff;

    font-size: 23px;

    line-height: 1.15;

    font-weight: 800;
}


.home-trust-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   ABSCHLUSS
   ========================================================= */

.home-trust-footer {
    margin-top: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 17px;
}


.home-trust-footer span {
    width: 55px;
    height: 2px;

    background: #c89b3c;
}


.home-trust-footer p {
    margin: 0;

    color: #68746f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;

    text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .home-trust-container {
        width: calc(100% - 50px);

        grid-template-columns: 44% 56%;

        gap: 35px;
    }

    .home-trust-visual {
        height: 540px;
    }

    .home-trust-image-top {
        height: 330px;
    }

    .home-trust-image-bottom {
        height: 330px;
    }

    .home-trust-badge {
        top: 190px;

        width: 150px;
        height: 120px;
    }

    .home-trust-badge strong {
        font-size: 32px;
    }

    .home-trust-card {
        min-height: 130px;

        padding: 18px;
    }

    .home-trust-card-icon {
        flex-basis: 48px;

        width: 48px;
        height: 48px;

        font-size: 21px;
    }

    .home-trust-card h3 {
        font-size: 20px;
    }

    .home-trust-card p {
        font-size: 12px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .home-trust-section {
        padding: 70px 0 75px;
    }

    .home-trust-container {
        width: calc(100% - 36px);

        display: flex;

        flex-direction: column;

        gap: 50px;
    }

    .home-trust-visual {
        width: 100%;

        height: 510px;
    }

    .home-trust-image-top {
        width: 82%;

        height: 300px;
    }

    .home-trust-image-bottom {
        width: 75%;

        height: 295px;
    }

    .home-trust-badge {
        top: 180px;

        left: 34%;

        width: 145px;
        height: 115px;
    }

    .home-trust-badge strong {
        font-size: 30px;
    }

    .home-trust-badge span {
        font-size: 14px;
    }

    .home-trust-eyebrow {
        font-size: 12px;

        letter-spacing: 4px;
    }

    .home-trust-content h2 {
        font-size: 37px;

        letter-spacing: -0.8px;
    }

    .home-trust-intro {
        font-size: 16px;
    }

    .home-trust-cards {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .home-trust-card {
        min-height: 125px;
    }

}


/* =========================================================
   KLEINE HANDYS
   ========================================================= */

@media (max-width: 480px) {

    .home-trust-container {
        width: calc(100% - 28px);
    }

    .home-trust-visual {
        height: 430px;
    }

    .home-trust-image-top {
        height: 255px;
    }

    .home-trust-image-bottom {
        height: 245px;
    }

    .home-trust-badge {
        top: 150px;

        left: 31%;

        width: 125px;
        height: 100px;
    }

    .home-trust-badge strong {
        font-size: 27px;
    }

    .home-trust-badge span {
        font-size: 12px;
    }

    .home-trust-content h2 {
        font-size: 31px;
    }

    .home-trust-card {
        padding: 18px;
    }

    .home-trust-card-icon {
        flex-basis: 48px;

        width: 48px;
        height: 48px;
    }

    .home-trust-card h3 {
        font-size: 20px;
    }

}
/* =========================================================
   4- AL-YAQEEN – CALL TO ACTION
   VOLLFLÄCHIGES HINTERGRUNDBILD
   ========================================================= */

.yaqeen-cta-section {
    position: relative;

    width: 100%;

    min-height: 590px;

    background-image:
        url("../images/cta-bg.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    overflow: hidden;
}


/* =========================================================
   DUNKELGRÜNES OVERLAY
   ========================================================= */

.yaqeen-cta-overlay {
    width: 100%;

    min-height: 590px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            90deg,
            rgba(0, 45, 34, 0.88) 0%,
            rgba(0, 53, 40, 0.78) 45%,
            rgba(0, 45, 34, 0.84) 100%
        );
}


/* =========================================================
   INHALT
   ========================================================= */

.yaqeen-cta-container {
    width: min(1200px, calc(100% - 60px));

    margin: 0 auto;

    padding: 75px 0;

    text-align: center;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.yaqeen-cta-eyebrow {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    margin-bottom: 18px;
}


.yaqeen-cta-eyebrow span {
    width: 55px;

    height: 2px;

    background: #c89b3c;
}


.yaqeen-cta-eyebrow strong {
    color: #c89b3c;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 6px;
}


/* =========================================================
   HAUPTÜBERSCHRIFT
   ========================================================= */

.yaqeen-cta-container h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(46px, 5vw, 72px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.8px;
}


.yaqeen-cta-container h2 span {
    color: #c89b3c;
}


/* =========================================================
   TEXT
   ========================================================= */

.yaqeen-cta-lead {
    max-width: 800px;

    margin: 24px auto 8px;

    color: #ffffff;

    font-size: 20px;

    line-height: 1.6;

    font-weight: 500;
}


.yaqeen-cta-text {
    max-width: 850px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.88);

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   24 STUNDEN ÜBERSCHRIFT
   ========================================================= */

.yaqeen-cta-heading {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin: 32px auto 22px;
}


.yaqeen-cta-heading span {
    width: 65px;

    height: 2px;

    background: #c89b3c;
}


.yaqeen-cta-heading strong {
    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 4px;
}


/* =========================================================
   KONTAKT BUTTONS
   ========================================================= */

.yaqeen-cta-buttons {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 28px;

    flex-wrap: wrap;
}


.yaqeen-cta-button {
    min-width: 300px;

    min-height: 70px;

    padding: 7px 25px 7px 7px;

    display: flex;

    align-items: center;

    gap: 17px;

    border: 1px solid rgba(255, 255, 255, 0.65);

    border-radius: 40px;

    background:
        rgba(0, 55, 42, 0.62);

    color: #ffffff;

    text-decoration: none;

    font-size: 24px;

    font-weight: 700;

    backdrop-filter: blur(5px);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


.yaqeen-cta-button:hover {
    transform: translateY(-3px);

    background:
        rgba(0, 85, 63, 0.85);

    border-color: #c89b3c;
}


/* =========================================================
   GOLDENE ICONS
   ========================================================= */

.yaqeen-cta-button-icon {
    flex: 0 0 56px;

    width: 56px;

    height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #c89b3c;

    color: #ffffff;

    font-size: 22px;

    font-weight: 700;
}


/* =========================================================
   ABSCHLUSS
   ========================================================= */

.yaqeen-cta-footer {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    margin-top: 42px;
}


.yaqeen-cta-footer span {
    width: 65px;

    height: 2px;

    background: #c89b3c;
}


.yaqeen-cta-footer strong {
    color: rgba(255, 255, 255, 0.90);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .yaqeen-cta-section,
    .yaqeen-cta-overlay {
        min-height: 560px;
    }

    .yaqeen-cta-container {
        width: calc(100% - 50px);

        padding: 65px 0;
    }

    .yaqeen-cta-container h2 {
        font-size: 52px;
    }

    .yaqeen-cta-button {
        min-width: 270px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .yaqeen-cta-section,
    .yaqeen-cta-overlay {
        min-height: auto;
    }

    .yaqeen-cta-container {
        width: calc(100% - 32px);

        padding: 65px 0;
    }

    .yaqeen-cta-eyebrow {
        gap: 10px;
    }

    .yaqeen-cta-eyebrow span {
        width: 30px;
    }

    .yaqeen-cta-eyebrow strong {
        font-size: 10px;

        letter-spacing: 3px;
    }

    .yaqeen-cta-container h2 {
        font-size: 39px;

        letter-spacing: -1px;
    }

    .yaqeen-cta-lead {
        margin-top: 20px;

        font-size: 17px;
    }

    .yaqeen-cta-text {
        font-size: 15px;

        line-height: 1.65;
    }

    .yaqeen-cta-heading {
        gap: 10px;

        margin-top: 28px;
    }

    .yaqeen-cta-heading span {
        width: 28px;
    }

    .yaqeen-cta-heading strong {
        font-size: 10px;

        letter-spacing: 2px;
    }

    .yaqeen-cta-buttons {
        flex-direction: column;

        width: 100%;

        gap: 12px;
    }

    .yaqeen-cta-button {
        width: 100%;

        min-width: 0;

        min-height: 62px;

        font-size: 16px;
    }

    .yaqeen-cta-button-icon {
        flex-basis: 48px;

        width: 48px;

        height: 48px;

        font-size: 19px;
    }

    .yaqeen-cta-footer {
        gap: 10px;

        margin-top: 32px;
    }

    .yaqeen-cta-footer span {
        width: 30px;
    }

    .yaqeen-cta-footer strong {
        font-size: 8px;

        letter-spacing: 2px;
    }

}


/* =========================================================
   KLEINE HANDYS
   ========================================================= */

@media (max-width: 480px) {

    .yaqeen-cta-container {
        width: calc(100% - 24px);

        padding: 55px 0;
    }

    .yaqeen-cta-container h2 {
        font-size: 34px;
    }

    .yaqeen-cta-lead {
        font-size: 16px;
    }

    .yaqeen-cta-button {
        min-height: 58px;

        padding-right: 18px;
    }

    .yaqeen-cta-button-icon {
        flex-basis: 44px;

        width: 44px;

        height: 44px;
    }

}

/* =========================================================
  5- AL-YAQEEN – SERVICES MOSAIC
   6 BILDER / 1 GROSS + 5 KLEIN
   ========================================================= */

.yaqeen-services-mosaic {
    width: 100%;
    padding-top: 0,
    margin: 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   HAUPT-GRID
   ========================================================= */

.yaqeen-services-grid {
    width: 100%;
    height: 560px;

    display: grid;
    padding-top: 30px;

    /*
       4 Spalten:

       1 = große linke Fläche
       2 + 3 = obere / mittlere Karten
       4 = rechter Bereich für Karte 3 / 5 / 6
    */

    grid-template-columns:
        1.2fr
        1fr
        1fr
        1fr;

    grid-template-rows:
        1fr
        1fr
        1fr;

    grid-template-areas:

        "one two two three"

        "one four five three"

        "one four five six";

    gap: 0;

    box-sizing: content-box;
}


/* =========================================================
   ALLE KARTEN
   ========================================================= */

.yaqeen-service-card {
    position: relative;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    background: #064c3a;
}


/* =========================================================
   KARTEN-POSITIONEN
   ========================================================= */

.yaqeen-service-large {
    grid-area: one;
}


.yaqeen-service-card:nth-child(2) {
    grid-area: two;
}


.yaqeen-service-card:nth-child(3) {
    grid-area: three;
}


.yaqeen-service-card:nth-child(4) {
    grid-area: four;
}


.yaqeen-service-card:nth-child(5) {
    grid-area: five;
}


.yaqeen-service-card:nth-child(6) {
    grid-area: six;
}


/* =========================================================
   BILDER
   ========================================================= */

.yaqeen-service-card img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

    transition:
        transform 0.55s ease;
}


.yaqeen-service-card:hover img {
    transform: scale(1.045);
}


/* =========================================================
   OVERLAY
   ========================================================= */

.yaqeen-service-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(0, 35, 27, 0.30) 45%,
            rgba(0, 43, 33, 0.84) 100%
        );

    transition:
        background 0.3s ease;
}


.yaqeen-service-card:hover
.yaqeen-service-overlay {

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.16) 0%,
            rgba(0, 40, 30, 0.38) 45%,
            rgba(0, 43, 33, 0.90) 100%
        );
}


/* =========================================================
   INHALT
   ========================================================= */

.yaqeen-service-content {
    position: absolute;

    inset: 0;

    z-index: 3;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 20px;

    text-align: center;
}


/* =========================================================
   TITEL
   ========================================================= */

.yaqeen-service-content h3 {
    max-width: 95%;

    margin: 0 0 17px;

    color: #ffffff;

    font-size: 21px;

    line-height: 1.15;

    font-weight: 800;

    text-shadow:
        0 3px 10px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   GROSSES BILD – TITEL
   ========================================================= */

.yaqeen-service-large
.yaqeen-service-content h3 {

    max-width: 80%;

    font-size: 31px;
}


/* =========================================================
   BUTTON
   ========================================================= */

.yaqeen-service-button {
    min-width: 155px;

    padding: 9px 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.9);

    border-radius: 3px;

    background: rgba(0, 60, 45, 0.18);

    color: #ffffff;

    font-size: 14px;

    line-height: 1.2;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.yaqeen-service-button:hover {
    background: #c89b3c;

    border-color: #c89b3c;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   GOLDENER BALKEN UNTEN BEIM HOVER
   ========================================================= */

.yaqeen-service-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    z-index: 5;

    background: #c89b3c;

    transition:
        width 0.35s ease;
}


.yaqeen-service-card:hover::after {
    width: 100%;
}


/* =========================================================
   DESKTOP – GROSSE KARTE
   ========================================================= */

@media (min-width: 1200px) {

    .yaqeen-services-grid {
        height: 560px;
    }

}


/* =========================================================
   MITTLERE BILDSCHIRME
   ========================================================= */

@media (max-width: 1199px) and (min-width: 901px) {

    .yaqeen-services-grid {
        height: 500px;

        grid-template-columns:
            1.2fr
            1fr
            1fr
            1fr;
    }


    .yaqeen-service-content h3 {
        font-size: 19px;
    }


    .yaqeen-service-large
    .yaqeen-service-content h3 {

        font-size: 27px;
    }


    .yaqeen-service-button {
        min-width: 140px;

        padding: 8px 17px;

        font-size: 13px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) and (min-width: 601px) {

    .yaqeen-services-grid {
        height: 620px;

        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            310px
            155px
            155px;

        grid-template-areas:

            "one one"

            "two three"

            "four five";
    }


    /*
       Bild 6 bekommt eigene Position
    */

    .yaqeen-service-card:nth-child(6) {
        grid-column: 1 / 3;

        grid-row: 4;
    }


    .yaqeen-service-content h3 {
        font-size: 20px;
    }


    .yaqeen-service-large
    .yaqeen-service-content h3 {

        font-size: 28px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .yaqeen-services-grid {

        width: 100%;

        height: auto;

        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows:
            repeat(6, 250px);

        grid-template-areas:

            "one"
            "two"
            "three"
            "four"
            "five"
            "six";
    }


    .yaqeen-service-card,
    .yaqeen-service-large {

        grid-column: auto;
        grid-row: auto;
    }


    .yaqeen-service-content {

        padding: 20px;
    }


    .yaqeen-service-content h3 {

        font-size: 22px;

        margin-bottom: 17px;
    }


    .yaqeen-service-large
    .yaqeen-service-content h3 {

        font-size: 29px;
    }


    .yaqeen-service-button {

        min-width: 155px;

        padding: 10px 20px;

        font-size: 14px;
    }

}


/* =========================================================
   KLEINE HANDYS
   ========================================================= */

@media (max-width: 400px) {

    .yaqeen-services-grid {

        grid-template-rows:
            repeat(6, 220px);
    }


    .yaqeen-service-content h3 {

        font-size: 20px;
    }


    .yaqeen-service-large
    .yaqeen-service-content h3 {

        font-size: 26px;
    }


    .yaqeen-service-button {

        min-width: 140px;

        padding: 9px 17px;

        font-size: 13px;
    }

}

/* =========================================================
   6- AL-YAQEEN – ERSTE SCHRITTE SLIDER
   ========================================================= */

.yaqeen-first-steps {
    width: 100%;
    padding: 90px 0 95px;
    background: #f7f9f8;
    overflow: hidden;
}


.yaqeen-first-steps-container {
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   ÜBERSCHRIFT
   ========================================================= */

.yaqeen-first-steps-heading {
    margin-bottom: 38px;
    text-align: center;
}


.yaqeen-first-steps-heading span {
    display: block;
    margin-bottom: 8px;

    color: #009b70;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 6px;
}


.yaqeen-first-steps-heading h2 {
    margin: 0 0 10px;

    color: #075c45;

    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.1;
    font-weight: 800;
}


.yaqeen-first-steps-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #53645d;

    font-size: 17px;
    line-height: 1.6;
}


/* =========================================================
   SLIDER
   ========================================================= */

.yaqeen-steps-slider {
    position: relative;

    display: flex;
    align-items: center;

    gap: 20px;
}


.yaqeen-steps-window {
    width: 100%;

    overflow: hidden;
}


.yaqeen-steps-track {
    display: flex;

    gap: 35px;

    width: 100%;

    transform: translate3d(0, 0, 0);

    transition:
        transform 0.55s cubic-bezier(.22,.61,.36,1);

    will-change: transform;
}

/* =========================================================
   KARTE
   ========================================================= */

.yaqeen-step-card {
    flex: 0 0 calc((100% - 70px) / 3);

    width: calc((100% - 70px) / 3);

    box-sizing: border-box;

    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border-radius: 0 26px 26px 26px;

    box-shadow:
        0 15px 35px rgba(12, 55, 43, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.yaqeen-step-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 24px 45px rgba(12, 55, 43, 0.16);
}


/* =========================================================
   BILD
   ========================================================= */

.yaqeen-step-image {
    position: relative;

    width: 100%;
    height: 255px;

    overflow: hidden;
}


.yaqeen-step-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.55s ease;
}


.yaqeen-step-card:hover
.yaqeen-step-image img {
    transform: scale(1.05);
}


/* Overlay */

.yaqeen-step-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.02),
            rgba(0,55,40,0.45)
        );

    pointer-events: none;
}


/* =========================================================
   NUMMER
   ========================================================= */

.yaqeen-step-number {
    position: absolute;

    left: 22px;
    bottom: 20px;

    z-index: 3;

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #075c45;

    border: 3px solid #ffffff;

    color: #ffffff;

    font-size: 16px;
    font-weight: 800;

    box-shadow:
        0 7px 18px rgba(0,0,0,0.20);
}


/* =========================================================
   KARTEN-INHALT
   ========================================================= */

.yaqeen-step-content {
    padding: 28px 30px 30px;
}


.yaqeen-step-content h3 {
    margin: 0 0 11px;

    color: #075c45;

    font-size: 25px;
    line-height: 1.2;

    font-weight: 800;
}


.yaqeen-step-content p {
    min-height: 78px;

    margin: 0;

    color: #53645d;

    font-size: 15.5px;
    line-height: 1.65;
}


/* =========================================================
   BUTTON
   ========================================================= */

.yaqeen-step-button {
    margin-top: 20px;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: #008866;

    font-size: 15px;
    font-weight: 800;

    text-decoration: none;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}


.yaqeen-step-button span {
    color: #c89b3c;

    font-size: 20px;
}


.yaqeen-step-button:hover {
    color: #c89b3c;

    gap: 16px;
}


/* =========================================================
   PFEILE
   ========================================================= */

.yaqeen-steps-arrow {
    flex: 0 0 auto;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: #075c45;

    color: #ffffff;

    font-size: 32px;
    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(7, 92, 69, 0.20);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.yaqeen-steps-arrow:hover {
    background: #009b70;

    transform: scale(1.08);
}

nano /var/www/al-yaqeen/static/css/style.css
.yaqeen-steps-arrow:disabled {
    opacity: 0.35;

    cursor: default;

    transform: none;
}


/* =========================================================
   PUNKTE
   ========================================================= */

.yaqeen-steps-dots {
    margin-top: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;
}


.yaqeen-step-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: #c6d1cc;

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease;
}


.yaqeen-step-dot.active {
    width: 28px;

    border-radius: 10px;

    background: #075c45;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .yaqeen-first-steps-container {
        width: calc(100% - 50px);
    }


    .yaqeen-step-card {
        flex: 0 0 calc((100% - 35px) / 2);
    }


    .yaqeen-step-image {
        height: 240px;
    }


    .yaqeen-step-content h3 {
        font-size: 23px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .yaqeen-first-steps {
        padding: 70px 0 75px;
    }


    .yaqeen-first-steps-container {
        width: calc(100% - 30px);
    }


    .yaqeen-first-steps-heading {
        margin-bottom: 30px;
    }


    .yaqeen-first-steps-heading span {
        font-size: 11px;
        letter-spacing: 4px;
    }


    .yaqeen-first-steps-heading h2 {
        font-size: 34px;
    }


    .yaqeen-first-steps-heading p {
        font-size: 15px;
    }


    .yaqeen-steps-slider {
        gap: 8px;
    }


    .yaqeen-step-card {
        flex: 0 0 100%;
    }


    .yaqeen-step-image {
        height: 260px;
    }


    .yaqeen-step-content {
        padding: 25px;
    }


    .yaqeen-step-content h3 {
        font-size: 24px;
    }


    .yaqeen-step-content p {
        min-height: auto;
    }


    .yaqeen-steps-arrow {
        position: absolute;

        z-index: 10;

        width: 42px;
        height: 42px;

        font-size: 28px;
    }


    .yaqeen-steps-prev {
        left: 12px;
    }


    .yaqeen-steps-next {
        right: 12px;
    }

}

/*=================== 7 ==========================================*/
/* =========================================================
  8-  AL-YAQEEN – UNSERE LEISTUNGEN
========================================================= */

.yaqeen-leistungen-section {
    position: relative;
    width: 100%;
    padding: 95px 0 105px;

    background-image:
        
 linear-gradient(90deg, rgba(0, 45, 34, 0.88) 0%, 
 rgba(0, 53, 40, 0.78) 45%,
  rgba(0, 45, 34, 0.84) 100%),

        url("../images/gold-1.jpg");
background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

.yaqeen-leistungen-container {
    width: min(1380px, 92%);
    margin: 0 auto;
}


/* ---------- Überschrift ---------- */

.yaqeen-leistungen-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.yaqeen-leistungen-eyebrow {
    display: inline-block;
    margin-bottom: 15px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #c89b3c;
}

.yaqeen-leistungen-heading h2 {
    margin: 0;

    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 700;
    color: #ffffff;
}

.yaqeen-leistungen-heading h2 span {
    color: #c89b3c;
}

.yaqeen-leistungen-heading p {
    max-width: 650px;
    margin: 22px auto 0;

    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

/* ---------- Karten Grid ---------- */

.yaqeen-leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* ---------- Karte ---------- */

.yaqeen-leistung-card {
    overflow: hidden;

    background: #ffffff;

    border-radius: 0 24px 24px 24px;

    box-shadow:
        0 12px 35px rgba(20, 50, 40, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.yaqeen-leistung-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(20, 50, 40, 0.14);
}


/* ---------- Bild ---------- */

.yaqeen-leistung-image {
    position: relative;

    height: 245px;

    overflow: hidden;
}

.yaqeen-leistung-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.yaqeen-leistung-card:hover
.yaqeen-leistung-image img {
    transform: scale(1.06);
}


/* ---------- Nummer ---------- */

.yaqeen-leistung-number {
    position: absolute;
    left: 20px;
    bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #075c45;
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.18);
}


/* ---------- Karten Inhalt ---------- */

.yaqeen-leistung-content {
    padding: 27px 28px 30px;
}

.yaqeen-leistung-content h3 {
    margin: 0 0 12px;

    font-size: 23px;
    line-height: 1.25;

    color: #173b2b;
}

.yaqeen-leistung-content p {
    margin: 0;

    min-height: 76px;

    font-size: 15px;
    line-height: 1.65;

    color: #68736d;
}


/* ---------- Link ---------- */

.yaqeen-leistung-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 21px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;

    color: #075c45;
}

.yaqeen-leistung-link span {
    font-size: 19px;
    line-height: 1;

    color: #b28a35;

    transition: transform 0.25s ease;
}

.yaqeen-leistung-card:hover
.yaqeen-leistung-link span {
    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .yaqeen-leistungen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .yaqeen-leistungen-section {
        padding: 70px 0 75px;
    }

    .yaqeen-leistungen-container {
        width: 90%;
    }

    .yaqeen-leistungen-heading {
        margin-bottom: 38px;
    }

    .yaqeen-leistungen-heading h2 {
        font-size: 36px;
    }

    .yaqeen-leistungen-heading p {
        font-size: 15px;
    }

    .yaqeen-leistungen-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .yaqeen-leistung-image {
        height: 220px;
    }

    .yaqeen-leistung-content {
        padding: 24px;
    }

    .yaqeen-leistung-content p {
        min-height: auto;
    }

}
/********************************************************************************************************************/
/* =========================================================
   STATISTIK
   ========================================================= */

.hero-stats {
    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 55px;

    row-gap: 38px;

    margin-top: 28px;
}


.hero-stat {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.hero-stat strong {
    color: #00d39a;

    font-size: 38px;

    line-height: 1.05;

    font-weight: 800;
}


.hero-stat span {
    color: rgba(255, 255, 255, 0.84);

    font-size: 17px;

    line-height: 1.4;
}


/* =========================================================
   HERO – TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .hero-inner {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 60px 40px;
    }

    .hero-left {
        max-width: 850px;
    }

    .hero-card {
        max-width: 650px;
    }

}


/* =========================================================
   HERO – MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .hero,
    .hero-overlay {
        min-height: auto;
    }

    .hero-inner {
        padding: 55px 22px 45px;

        gap: 35px;
    }

    .hero-eyebrow {
        font-size: 12px;

        letter-spacing: 5px;
    }

    .hero-left h1 {
        font-size: clamp(48px, 14vw, 68px);

        letter-spacing: -2px;
    }

    .hero-title-line {
        width: 100%;
    }

    .hero-text {
        font-size: 17px;

        line-height: 1.6;
    }

    .hero-actions {
        gap: 12px;
    }

    .hero-call-button,
    .hero-contact-button {
        width: 100%;
    }

    .hero-card {
        min-height: auto;

        padding: 35px 27px;

        border-radius: 18px;
    }

    .hero-card h2 {
        font-size: 29px;
    }

    .hero-card-intro {
        font-size: 17px;
    }

    .hero-stats {
        column-gap: 25px;

        row-gap: 28px;
    }

    .hero-stat strong {
        font-size: 30px;
    }

    .hero-stat span {
        font-size: 15px;
    }

}
/* =========================================================
   BILD
   ========================================================= */


/* =========================================================
   INFORMATIONEN
   ========================================================= */


/* =========================================================
   KONTAKT
   ========================================================= */


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {
  .header-inner {
    padding: 15px 30px;

    gap: 30px;
  }

  .brand-logo {
    width: 120px;
  }

  .main-navigation {
    gap: 22px;
  }

  .main-navigation a {
    font-size: 15px;
  }

  .hero-content {
    padding: 60px 30px;
  }

  .hero-content h1 {
    font-size: 40px;
  }


}

/* =========================================================
   HANDY
   ========================================================= */

@media (max-width: 760px) {
  .header-inner {
    min-height: auto;

    padding: 20px 22px;

    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }

  .brand-logo {
    width: 120px;
  }

  .main-navigation {
    width: 100%;

    display: flex;

    flex-wrap: wrap;

    justify-content: flex-start;

    gap: 10px 24px;
  }

  .main-navigation a {
    font-size: 14px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-overlay {
    min-height: 520px;
  }

  .hero-content {
    padding: 50px 22px;
  }

  .hero-location {
    font-size: 15px;
  }

  .hero-content h1 {
    max-width: 100%;

    font-size: 36px;

    line-height: 1.12;
  }

  .hero-content p {
    max-width: 100%;

    font-size: 16px;

    line-height: 1.6;
  }

  /* INFO */


}

/* =========================================================
   KLEINE HANDYS
   ========================================================= */

@media (max-width: 480px) {
  .header-inner {
    padding: 18px;
  }

  .brand-logo {
    width: 115px;
  }

  .main-navigation {
    gap: 8px 18px;
  }

  .main-navigation a {
    font-size: 13px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-overlay {
    min-height: 500px;
  }

  .hero-content {
    padding: 40px 18px;
  }

  .hero-location {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-button {
    padding: 13px 23px;

    font-size: 14px;
  }


}

/* =========================================================
   TEXTBEREICH
   ========================================================= */

.support-content {
  padding: 70px 8%;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: #ffffff;
}

.support-content h2 {
  max-width: 650px;

  margin-bottom: 28px;

  font-size: 38px;

  line-height: 1.18;

  font-weight: 700;

  color: #173b2b;
}

.support-content p {
  max-width: 650px;

  margin-bottom: 20px;

  font-size: 17px;

  line-height: 1.75;

  color: #34483e;
}

.support-content h3 {
  margin-top: 8px;

  margin-bottom: 14px;

  font-size: 23px;

  line-height: 1.3;

  font-weight: 600;

  color: #b28a35;
}

/* =========================================================
   BILD
   ========================================================= */

.support-image {
  width: 100%;

  min-height: 560px;

  overflow: hidden;
}

.support-image img {
  width: 100%;

  height: 100%;

  min-height: 560px;

  display: block;

  object-fit: cover;

  object-position: center;
}

/* =========================================================
   BUTTON
   ========================================================= */

.support-button {
  display: inline-block;

  width: fit-content;

  margin-top: 12px;

  padding: 14px 27px;

  background: #b28a35;

  border: 1px solid #b28a35;

  color: #ffffff;

  text-decoration: none;

  font-size: 15px;

  font-weight: 600;

  border-radius: 2px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.support-button:hover {
  background: #173b2b;

  border-color: #173b2b;

  color: #ffffff;

  transform: translateY(-2px);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {
  .support-content {
    padding: 55px 40px;
  }

  .support-content h2 {
    font-size: 32px;
  }

  .support-content p {
    font-size: 16px;
  }

  .support-image,
  .support-image img {
    min-height: 500px;
  }
}

/* =========================================================
   HANDY
   ========================================================= */

@media (max-width: 760px) {
  .support-section {
    grid-template-columns: 1fr;

    min-height: auto;
  }

  .support-content {
    padding: 50px 22px;

    order: 1;
  }

  .support-image {
    min-height: 380px;

    order: 2;
  }

  .support-image img {
    height: 380px;

    min-height: 380px;
  }

  .support-content h2 {
    font-size: 30px;
  }

  .support-content p {
    font-size: 16px;

    line-height: 1.65;
  }

  .support-content h3 {
    font-size: 21px;
  }
}

/* =========================================================
   KLEINE HANDYS
   ========================================================= */

@media (max-width: 480px) {
  .support-content {
    padding: 40px 18px;
  }

  .support-content h2 {
    font-size: 27px;
  }

  .support-content p {
    font-size: 15px;
  }

  .support-content h3 {
    font-size: 20px;
  }

  .support-image {
    min-height: 320px;
  }

  .support-image img {
    height: 320px;

    min-height: 320px;
  }

  .support-button {
    padding: 13px 23px;

    font-size: 14px;
  }
}

/* =========================================================
   GRID
   ========================================================= */

.services-grid {
  width: 100%;

  display: grid;

  grid-template-columns: repeat(3, 1fr);
}

/* =========================================================
   KACHEL
   ========================================================= */

.service-card {
  position: relative;

  width: 100%;

  height: 330px;

  overflow: hidden;

  background: #173b2b;
}

.service-card img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  transition: transform 0.5s ease;
}

/* =========================================================
   DUNKLER VERLAUF ÜBER DEM BILD
   ========================================================= */

.service-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(10, 35, 25, 0.4) 45%,
    rgba(10, 35, 25, 0.78) 100%
  );

  pointer-events: none;
}

/* =========================================================
   INHALT
   ========================================================= */

.service-overlay {
  position: absolute;

  inset: 0;

  z-index: 2;

  padding: 35px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;
}

/* =========================================================
   ÜBERSCHRIFT
   ========================================================= */

.service-overlay h3 {
  max-width: 420px;

  margin-bottom: 28px;

  color: #ffffff;

  font-size: 22px;

  line-height: 1.3;

  font-weight: 700;

  text-transform: none;
}

/* =========================================================
   BUTTON
   ========================================================= */

.service-button {
  display: inline-block;

  padding: 11px 24px;

  border: 1px solid #ffffff;

  background: transparent;

  color: #ffffff;

  text-decoration: none;

  font-size: 15px;

  font-weight: 600;

  border-radius: 2px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.service-button:hover {
  background: #b28a35;

  border-color: #b28a35;

  color: #ffffff;
}

/* =========================================================
   HOVER
   ========================================================= */

.service-card:hover img {
  transform: scale(1.05);
}

.service-card:hover::after {
  background: linear-gradient(
    180deg,
    rgba(10, 55, 38, 0.25) 0%,
    rgba(10, 55, 38, 0.55) 50%,
    rgba(10, 55, 38, 0.86) 100%
  );
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    height: 300px;
  }

  .service-overlay h3 {
    font-size: 20px;
  }
}

/* =========================================================
   HANDY
   ========================================================= */

@media (max-width: 760px) {
  .services-section {
    margin-top: 25px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 300px;
  }

  .service-overlay {
    padding: 25px;
  }

  .service-overlay h3 {
    font-size: 21px;
  }
}

/* =========================================================
   KLEINE HANDYS
   ========================================================= */

@media (max-width: 480px) {
  .service-card {
    height: 280px;
  }

  .service-overlay h3 {
    font-size: 19px;

    margin-bottom: 22px;
  }

  .service-button {
    padding: 10px 21px;

    font-size: 14px;
  }
}
/* =========================================================
   BEISETZUNG / INTERNATIONALE ÜBERFÜHRUNG
   ========================================================= */

.burial-section {
  width: 100%;

  margin-top: 45px;

  background: #ffffff;
}

/* =========================================================
   ZWEI BEREICHE
   ========================================================= */

.burial-grid {
  width: 100%;

  display: grid;

  grid-template-columns: repeat(2, 1fr);
}

/* =========================================================
   KARTEN
   ========================================================= */

.burial-card {
  position: relative;

  min-height: 390px;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  background: #123f2f;
}

.burial-card:first-child {
  background:
    linear-gradient(rgba(18, 63, 47, 0.62), rgba(18, 63, 47, 0.62)),
    url("../images/service-islamisch.jpg") center / cover no-repeat;
}

.burial-card:last-child {
  background:
    linear-gradient(rgba(18, 63, 47, 0.62), rgba(18, 63, 47, 0.62)),
    url("../images/service-ueberfuehrung.jpg") center / cover no-repeat;
}

/* =========================================================
   TEXT
   ========================================================= */

.burial-content {
  width: 100%;

  max-width: 560px;

  padding: 55px;

  text-align: center;

  color: #ffffff;
}

.burial-label {
  display: block;

  margin-bottom: 15px;

  color: #d2a13a;

  font-size: 20px;

  font-weight: 700;

  letter-spacing: 2px;
}

.burial-content h2 {
  margin: 0 0 22px 0;

  color: #ffffff;

  font-size: 32px;

  line-height: 1.2;

  font-weight: 700;
}

.burial-content p {
  margin: 0 auto 30px auto;

  max-width: 500px;

  color: #ffffff;

  font-size: 17px;

  line-height: 1.7;
}

/* =========================================================
   BUTTON
   ========================================================= */

.burial-button {
  display: inline-block;

  padding: 12px 25px;

  border: 1px solid #d2a13a;

  background: #d2a13a;

  color: #ffffff;

  text-decoration: none;

  font-size: 15px;

  font-weight: 600;

  transition: all 0.25s ease;
}

.burial-button:hover {
  background: #ffffff;

  border-color: #ffffff;

  color: #123f2f;
}

/* =========================================================
   ABSCHLUSS-BEREICH
   ========================================================= */

.burial-intro {
  max-width: 900px;

  margin: 0 auto;

  padding: 75px 30px;

  text-align: center;
}

.burial-intro h2 {
  margin: 0 0 18px 0;

  color: #123f2f;

  font-size: 32px;

  line-height: 1.25;

  font-weight: 700;
}

.burial-intro p {
  max-width: 760px;

  margin: 0 auto;

  color: #333333;

  font-size: 17px;

  line-height: 1.8;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .burial-grid {
    grid-template-columns: 1fr;
  }

  .burial-card {
    min-height: 350px;
  }
}

/* =========================================================
   HANDY
   ========================================================= */

@media (max-width: 600px) {
  .burial-section {
    margin-top: 30px;
  }

  .burial-card {
    min-height: 320px;
  }

  .burial-content {
    padding: 35px 25px;
  }

  .burial-content h2 {
    font-size: 27px;
  }

  .burial-content p {
    font-size: 16px;
  }

  .burial-intro {
    padding: 55px 22px;
  }

  .burial-intro h2 {
    font-size: 27px;
  }
}

/* =========================================================
   WAS TUN IM TRAUERFALL?
   ========================================================= */

/* =========================================================
   TRAUERFALL – CAROUSEL
   ========================================================= */

.bereavement-section {
  width: 100%;

  margin-top: 20px;

  padding: 85px 30px 90px;

  background: #f7f7f4;
}

.bereavement-container {
  width: 100%;

  max-width: 1250px;

  margin: 0 auto;
}

/* =========================================================
   ÜBERSCHRIFT
   ========================================================= */

.bereavement-heading {
  max-width: 850px;

  margin: 0 auto 55px;

  text-align: center;
}

.bereavement-heading > span {
  display: block;

  margin-bottom: 14px;

  color: #c99a32;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 2px;
}

.bereavement-heading h2 {
  margin: 0 0 18px;

  color: #123f2f;

  font-size: 38px;

  line-height: 1.2;

  font-weight: 700;
}

.bereavement-heading p {
  max-width: 760px;

  margin: 0 auto;

  color: #444444;

  font-size: 17px;

  line-height: 1.75;
}

/* =========================================================
   CAROUSEL
   ========================================================= */

.bereavement-carousel {
  position: relative;

  display: flex;

  align-items: center;

  gap: 20px;
}

.carousel-window {
  width: 100%;

  overflow: hidden;
}

.carousel-track {
  display: flex;

  gap: 22px;

  transition: transform 0.45s ease;
}

/* =========================================================
   KARTE
   ========================================================= */

.bereavement-card {
  flex: 0 0 calc((100% - 44px) / 3);

  min-height: 310px;

  padding: 32px;

  background: #ffffff;

  border: 1px solid #e3e3df;

  box-sizing: border-box;

  text-align: center;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.bereavement-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   NUMMER
   ========================================================= */

.card-number {
  margin-bottom: 18px;

  color: #c99a32;

  font-size: 15px;

  font-weight: 700;

  letter-spacing: 2px;
}

/* =========================================================
   ICON
   ========================================================= */

.card-icon {
  width: 54px;

  height: 54px;

  margin: 0 auto 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid #c99a32;

  border-radius: 50%;

  color: #c99a32;

  font-size: 24px;

  font-weight: 400;
}

/* =========================================================
   TEXT
   ========================================================= */

.bereavement-card h3 {
  margin: 0 0 15px;

  color: #123f2f;

  font-size: 21px;

  line-height: 1.35;

  font-weight: 700;
}

.bereavement-card p {
  max-width: 330px;

  margin: 0 auto;

  color: #444444;

  font-size: 15.5px;

  line-height: 1.7;
}

/* =========================================================
   PFEILE
   ========================================================= */

.carousel-arrow {
  flex: 0 0 46px;

  width: 46px;

  height: 46px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid #c99a32;

  background: #ffffff;

  color: #123f2f;

  font-size: 20px;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.carousel-arrow:hover {
  background: #c99a32;

  color: #ffffff;
}

.carousel-arrow:disabled {
  opacity: 0.35;

  cursor: default;
}

.carousel-arrow:disabled:hover {
  background: #ffffff;

  color: #123f2f;
}

/* =========================================================
   PUNKTE
   ========================================================= */

.carousel-navigation {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 9px;

  margin-top: 30px;
}

.carousel-dot {
  width: 9px;

  height: 9px;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background: #cfcfc9;

  cursor: pointer;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.carousel-dot.active {
  background: #c99a32;

  transform: scale(1.35);
}

/* =========================================================
   BUTTON
   ========================================================= */

.bereavement-action {
  margin-top: 42px;

  text-align: center;
}

.bereavement-button {
  display: inline-block;

  padding: 13px 30px;

  background: #c99a32;

  color: #ffffff;

  text-decoration: none;

  font-size: 15px;

  font-weight: 600;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.bereavement-button:hover {
  background: #123f2f;

  transform: translateY(-2px);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {
  .bereavement-card {
    flex: 0 0 calc((100% - 22px) / 2);
  }
}

/* =========================================================
   HANDY
   ========================================================= */

@media (max-width: 650px) {
  .bereavement-section {
    padding: 60px 18px 70px;
  }

  .bereavement-heading {
    margin-bottom: 40px;
  }

  .bereavement-heading h2 {
    font-size: 29px;
  }

  .bereavement-heading p {
    font-size: 16px;
  }

  .bereavement-carousel {
    gap: 10px;
  }

  .carousel-arrow {
    flex: 0 0 38px;

    width: 38px;

    height: 38px;

    font-size: 17px;
  }

  .bereavement-card {
    flex: 0 0 100%;

    min-height: 300px;

    padding: 30px 22px;
  }

  .bereavement-card h3 {
    font-size: 20px;
  }

  .bereavement-card p {
    font-size: 15px;
  }
}

/* =========================================================
   AL-YAQEEN – IMPRESSUM / RECHTLICHE SEITEN
   ========================================================= */

.legal-page {
  background: #ffffff;
  min-height: 700px;
  padding: 90px 20px 110px;
}

.legal-container {
  max-width: 1050px;
  margin: 0 auto;
}

/* Kleine goldene Überschrift */

.legal-label {
  text-align: center;
  color: #c9982b;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Hauptüberschrift */

.legal-container h1 {
  margin: 0;
  text-align: center;
  color: #064936;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

/* Goldene Linie */

.gold-line {
  width: 75px;
  height: 3px;
  background: #c9982b;
  margin: 25px auto 65px;
}

/* Bereiche */

.legal-section {
  margin-bottom: 48px;
}

/* Abschnittsüberschrift */

.legal-section h2 {
  position: relative;
  margin: 0 0 22px;
  padding-left: 20px;

  color: #064936;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
}

/* Goldener Balken links */

.legal-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;

  width: 4px;
  height: calc(100% - 6px);

  background: #c9982b;
  border-radius: 2px;
}

/* Text */

.legal-section p {
  margin: 0 0 15px;

  color: #303b38;
  font-size: 17px;
  line-height: 1.8;
}

/* Firmenname */

.legal-section strong {
  color: #064936;
  font-weight: 700;
}

/* Links innerhalb rechtlicher Seiten */

.legal-section a {
  color: #064936;
  text-decoration: none;
}

.legal-section a:hover {
  color: #c9982b;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  position: relative;
  z-index: 10;
}

.header-container {
  max-width: 1400px;
  min-height: 105px;

  margin: 0 auto;
  padding: 12px 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo {
  display: block;
  width: 120px;
  height: auto;
}
.header-logo img {
    display: block;
    width: 120px;
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

/* Navigation */

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.main-nav a {
  position: relative;

  color: #064936;
  text-decoration: none;

  font-size: 16px;
  font-weight: 500;

  padding: 12px 0;

  transition: color 0.25s ease;
}

/* Goldene Linie beim Hover */

.main-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 3px;

  width: 0;
  height: 2px;

  background: #c9982b;

  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: #c9982b;
}

.main-nav a:hover::after {
  width: 100%;
}


/* =========================================================
   RESPONSIVE – TABLET
   ========================================================= */

@media (max-width: 1000px) {
  .header-container {
    padding: 12px 25px;
  }

  .main-nav {
    gap: 22px;
  }

  .main-nav a {
    font-size: 15px;
  }

  .legal-page {
    padding: 70px 25px 90px;
  }

  .legal-container h1 {
    font-size: 42px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

/* =========================================================
   RESPONSIVE – MOBILE
   ========================================================= */

@media (max-width: 700px) {
  /* Header */

  .header-container {
    min-height: auto;

    padding: 18px 20px;

    flex-direction: column;
    gap: 20px;
  }

  .header-logo {
    width: 155px;
  }

  .main-nav {
    width: 100%;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px 20px;
  }

  .main-nav a {
    font-size: 14px;
  }
}

/* =========================================================
   AL-YAQEEN – IMPRESSUM
   ========================================================= */

.legal-page {
  background: #f7f8f6;
  padding: 80px 20px 100px;
  min-height: 70vh;
}

.legal-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px 70px;
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 0 8px 35px rgba(8, 63, 43, 0.08);
}

/* =========================================================
   LABEL
   ========================================================= */

.legal-label {
  color: #c89b3c;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* =========================================================
   HAUPTTITEL
   ========================================================= */

.legal-container h1 {
  margin: 0;
  color: #083f2b;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
}

/* =========================================================
   GOLDENE LINIE
   ========================================================= */

.gold-line {
  width: 75px;
  height: 4px;
  background: #c89b3c;
  margin: 22px 0 45px;
}

/* =========================================================
   ABSCHNITTE
   ========================================================= */

.legal-section {
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e1e6e2;
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* =========================================================
   ÜBERSCHRIFTEN
   ========================================================= */

.legal-section h2 {
  margin: 0 0 17px;
  color: #083f2b;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
}

/* kleine goldene Linie unter Abschnittsüberschrift */

.legal-section h2::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  background: #c89b3c;
  margin-top: 9px;
}

/* =========================================================
   TEXT
   ========================================================= */

.legal-section p {
  margin: 0 0 15px;
  color: #34423c;
  font-size: 16px;
  line-height: 1.75;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section strong {
  color: #083f2b;
  font-weight: 700;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e9e6;
}

.header-container {
  width: 100%;
  max-width: 1200px;
  min-height: 92px;
  margin: 0 auto;
  padding: 0 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-sizing: border-box;
}

/* =========================================================
   LOGO
   ========================================================= */

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo {
  display: block;
  width: 120px;
  height: auto;
  min-height: 120px;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;

  color: #083f2b;
  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  padding: 35px 0;

  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 25px;

  width: 0;
  height: 2px;

  background: #c89b3c;

  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: #c89b3c;
}

.main-nav a:hover::after {
  width: 100%;
}

/* =========================================================
   FOOTER – EINZIGE VERSION
   ========================================================= */

.site-footer {
  width: 100%;
  background: linear-gradient(135deg, #052f21 0%, #083f2b 100%);
  color: #ffffff;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 35px 30px 25px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1fr;
  gap: 50px;
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-logo {
  display: block;
  width: 155px;
  height: auto;
  margin: 0 0 22px;
}

.footer-brand p {
  max-width: 390px;
  margin: 0 0 18px;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.65;
}

.footer-column h3 {
  margin: 0 0 20px;
  color: #e0bb68;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.footer-column > a {
  display: block;
  margin: 0 0 12px;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45;
  transition: color .2s ease, transform .2s ease;
}

.footer-column > a:hover {
  color: #e0bb68;
  transform: translateX(4px);
}

/* Kontakt: Icon IMMER neben Text */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 20px;
}

.footer-icon {
  flex: 0 0 22px;
  width: 22px;
  margin-top: 1px;
  color: #e0bb68;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
}

.footer-contact-item > div {
  min-width: 0;
}

.footer-contact-item strong {
  display: block;
  margin: 0 0 4px;
  color: #e0bb68;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .6px;
}

.footer-contact-item p {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  line-height: 1.55;
}

.footer-bottom {
  width: min(1140px, 92%);
  min-height: 58px;
  margin: 0 auto;
  padding: 12px 0;
  box-sizing: border-box;
  border-top: 1px solid rgba(200,155,60,.65);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: color .2s ease;
}

.footer-bottom a:hover {
  color: #e0bb68;
}

.footer-bottom span {
  color: rgba(255,255,255,.7);
}

@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 700px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 35px 25px 25px;
  }

  .footer-logo {
    width: 145px;
    margin-bottom: 18px;
  }

  .footer-column h3 {
    margin-bottom: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 15px 20px;
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* =========================================================
   KONTAKT
   ========================================================= */

.contact-section {
  width: 100%;
  margin-top: 30px;
  padding: 85px 30px 20px;
  background: #ffffff;
  box-sizing: border-box;
}

.contact-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* =========================================================
   LINKER BEREICH
   ========================================================= */

.contact-label {
  display: block;

  margin-bottom: 15px;

  color: #c9982b;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 2px;
}

.contact-intro h2 {
  margin: 0 0 22px;

  color: #083f2b;

  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
}

.contact-lead {
  max-width: 560px;

  margin: 0 0 35px;

  color: #394842;

  font-size: 17px;
  line-height: 1.8;
}

/* =========================================================
   24 STUNDEN
   ========================================================= */

.contact-emergency {
  margin-bottom: 35px;

  padding: 25px 28px;

  background: #083f2b;

  border-left: 4px solid #c9982b;
}

.contact-emergency strong {
  display: block;

  margin-bottom: 8px;

  color: #ffffff;

  font-size: 18px;
  font-weight: 800;
}

.contact-emergency p {
  margin: 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 15px;
  line-height: 1.6;
}

/* =========================================================
   KONTAKTDATEN
   ========================================================= */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 17px;
}

.contact-detail-icon {
  width: 46px;
  height: 46px;

  flex: 0 0 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #c9982b;
  border-radius: 50%;

  color: #c9982b;

  font-size: 19px;
}

.contact-detail strong {
  display: block;

  margin-bottom: 3px;

  color: #083f2b;

  font-size: 14px;
  font-weight: 800;
}

.contact-detail a {
  color: #3b4943;

  text-decoration: none;

  font-size: 16px;
}

.contact-detail a:hover {
  color: #c9982b;
}

/* =========================================================
   FORMULAR
   ========================================================= */

.contact-form-box {
  padding: 45px;

  background: #f6f7f4;

  border: 1px solid #e2e6e2;

  box-sizing: border-box;
}

.contact-form-box h3 {
  margin: 0 0 8px;

  color: #083f2b;

  font-size: 28px;
  font-weight: 800;
}

.contact-form-box > p {
  margin: 0 0 30px;

  color: #59635e;

  font-size: 15px;
}

/* =========================================================
   FORM ZEILEN
   ========================================================= */

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;

  margin-bottom: 8px;

  color: #083f2b;

  font-size: 14px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  box-sizing: border-box;

  padding: 13px 14px;

  border: 1px solid #d5dbd7;

  border-radius: 0;

  background: #ffffff;

  color: #26332e;

  font-family: inherit;

  font-size: 15px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group textarea {
  min-height: 130px;

  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c9982b;

  box-shadow: 0 0 0 2px rgba(201, 152, 43, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9aa29e;
}

/* =========================================================
   DATENSCHUTZ CHECKBOX
   ========================================================= */

.form-consent {
  margin: 5px 0 25px;
}

.form-consent label {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  color: #59635e;

  font-size: 13px;

  line-height: 1.6;

  cursor: pointer;
}

.form-consent input {
  margin-top: 3px;

  accent-color: #083f2b;
}

.form-consent a {
  color: #083f2b;

  font-weight: 700;

  text-decoration: underline;
}

/* =========================================================
   ABSENDEBUTTON
   ========================================================= */

.contact-submit {
  width: 100%;

  padding: 15px 25px;

  border: 1px solid #c9982b;

  background: #c9982b;

  color: #ffffff;

  font-family: inherit;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.contact-submit:hover {
  background: #083f2b;

  border-color: #083f2b;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .contact-intro {
    max-width: 750px;
    margin: 0 auto;
  }

  .contact-form-box {
    width: 100%;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .contact-section {
    margin-top: 20px;

    padding: 60px 18px 70px;
  }

  .contact-intro h2 {
    font-size: 32px;
  }

  .contact-lead {
    font-size: 16px;
  }

  .contact-emergency {
    padding: 22px;
  }

  .contact-form-box {
    padding: 30px 20px;
  }

  .contact-form-box h3 {
    font-size: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .contact-detail a {
    font-size: 15px;
  }
}

/* =========================================================
   AL-YAQEEN – ERSTE SCHRITTE / CHECKLISTE
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.erste-checklist-hero {
    position: relative;

    min-height: 500px;

    background:
        url("../images/erste-schritte.jpg")
        center center / cover no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}


.erste-checklist-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 47, 33, 0.96) 0%,
            rgba(5, 63, 43, 0.88) 42%,
            rgba(5, 63, 43, 0.45) 72%,
            rgba(5, 63, 43, 0.18) 100%
        );
}


.erste-checklist-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 90px 40px;

    box-sizing: border-box;
}


.erste-checklist-label {
    display: block;

    margin-bottom: 16px;

    color: #c9982b;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.erste-checklist-hero h1 {
    max-width: 760px;

    margin: 0;

    color: #ffffff;

    font-size: 54px;

    line-height: 1.12;

    font-weight: 800;
}


.erste-checklist-line {
    width: 75px;
    height: 4px;

    margin: 25px 0 28px;

    background: #c9982b;
}


.erste-checklist-hero p {
    max-width: 720px;

    margin: 0;

    color: rgba(255,255,255,0.92);

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   EINLEITUNG
   ========================================================= */

.erste-checklist-intro {
    background: #ffffff;

    padding: 90px 30px;
}


.erste-checklist-container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
}


.erste-checklist-intro-label {
    display: block;

    margin-bottom: 15px;

    color: #c9982b;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.erste-checklist-intro h2 {
    max-width: 850px;

    margin: 0 0 28px;

    color: #083f2b;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 800;
}


.erste-checklist-intro p {
    max-width: 850px;

    margin: 0 0 18px;

    color: #43514b;

    font-size: 18px;

    line-height: 1.8;
}


.erste-checklist-intro p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ALLGEMEINE SCHRITT-SEKTION
   ========================================================= */

.erste-checklist-section {
    padding: 85px 30px;

    background: #ffffff;
}


.erste-checklist-section-light {
    background: #f7f8f6;
}


.erste-checklist-container {
    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 45px;

    align-items: start;
}


.erste-checklist-number {
    color: #c9982b;

    font-size: 42px;

    font-weight: 800;

    line-height: 1;

    padding-top: 5px;

    letter-spacing: 1px;
}


.erste-checklist-content {
    max-width: 900px;
}


.erste-checklist-small-title {
    display: block;

    margin-bottom: 12px;

    color: #c9982b;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.erste-checklist-content h2 {
    max-width: 800px;

    margin: 0 0 22px;

    color: #083f2b;

    font-size: 36px;

    line-height: 1.25;

    font-weight: 800;
}


.erste-checklist-content > p {
    max-width: 820px;

    margin: 0 0 18px;

    color: #43514b;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   INFO BOX
   ========================================================= */

.erste-checklist-info {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    max-width: 800px;

    margin-top: 30px;

    padding: 22px 25px;

    background: #f7f8f6;

    border-left: 4px solid #c9982b;
}


.erste-checklist-section-light
.erste-checklist-info {
    background: #ffffff;
}


.erste-checklist-info strong {
    flex-shrink: 0;

    color: #083f2b;

    font-size: 15px;

    font-weight: 800;
}


.erste-checklist-info span {
    color: #4b5852;

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================================
   ZWEI BEREICHE
   ========================================================= */

.erste-checklist-two-columns {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    margin-top: 35px;
}


.erste-checklist-two-columns > div {
    padding: 28px;

    background: #ffffff;

    border: 1px solid #e0e5e1;

    box-sizing: border-box;
}


.erste-checklist-section:not(.erste-checklist-section-light)
.erste-checklist-two-columns > div {
    background: #f7f8f6;
}


.erste-checklist-two-columns strong {
    display: block;

    margin-bottom: 12px;

    color: #083f2b;

    font-size: 19px;

    font-weight: 800;
}


.erste-checklist-two-columns p {
    margin: 0;

    color: #4a5751;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   DOKUMENTE
   ========================================================= */

.erste-document-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px 25px;

    max-width: 850px;

    margin: 30px 0;
}


.erste-document-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 0;

    border-bottom: 1px solid #e2e6e3;
}


.erste-document-item span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    border-radius: 50%;

    background: #083f2b;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;
}


.erste-document-item p {
    margin: 0;

    color: #35433d;

    font-size: 15px;

    line-height: 1.5;
}


.erste-checklist-note {
    margin-top: 25px !important;

    font-size: 15px !important;

    color: #68736e !important;
}


/* =========================================================
   AUSWAHL BEISETZUNG / ÜBERFÜHRUNG
   ========================================================= */

.erste-choice-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    margin-top: 35px;
}


.erste-choice-card {
    padding: 35px;

    background: #ffffff;

    border-top: 3px solid #c9982b;

    box-shadow:
        0 8px 25px rgba(8, 63, 43, 0.06);

    box-sizing: border-box;
}


.erste-choice-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    margin-bottom: 22px;

    border: 1px solid #c9982b;

    border-radius: 50%;

    color: #c9982b;

    font-size: 13px;

    font-weight: 800;
}


.erste-choice-card h3 {
    margin: 0 0 15px;

    color: #083f2b;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 800;
}


.erste-choice-card p {
    margin: 0 0 22px;

    color: #4a5751;

    font-size: 15px;

    line-height: 1.7;
}


.erste-choice-card a {
    color: #083f2b;

    font-size: 14px;

    font-weight: 800;

    text-decoration: none;
}


.erste-choice-card a:hover {
    color: #c9982b;
}


/* =========================================================
   UNSERE LEISTUNGEN
   ========================================================= */

.erste-service-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 0;

    max-width: 900px;

    margin-top: 35px;

    border-top: 1px solid #dfe5e1;
}


.erste-service-list > div {
    display: flex;

    align-items: center;

    gap: 16px;

    min-height: 70px;

    padding: 15px 20px 15px 0;

    border-bottom: 1px solid #dfe5e1;
}


.erste-service-list span {
    color: #c9982b;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}


.erste-service-list strong {
    color: #083f2b;

    font-size: 15px;

    font-weight: 700;
}


/* =========================================================
   INTERNATIONALE SEKTION
   ========================================================= */

.erste-international-section {
    position: relative;

    min-height: 440px;

    background:
        url("../images/ueberfuehrung.jpg")
        center center / cover no-repeat;

    display: flex;

    align-items: center;

    overflow: hidden;
}


.erste-international-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,47,33,0.94) 0%,
            rgba(5,63,43,0.82) 55%,
            rgba(5,63,43,0.35) 100%
        );
}


.erste-international-content {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    padding: 75px 30px;

    box-sizing: border-box;
}


.erste-international-content h2 {
    max-width: 700px;

    margin: 0 0 22px;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 800;
}


.erste-international-content p {
    max-width: 700px;

    margin: 0 0 30px;

    color: rgba(255,255,255,0.92);

    font-size: 17px;

    line-height: 1.75;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.erste-gold-button {
    display: inline-block;

    padding: 15px 28px;

    background: #c9982b;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.erste-gold-button:hover {
    background: #b48622;

    transform: translateY(-2px);
}


.erste-outline-button {
    display: inline-block;

    padding: 14px 27px;

    border: 1px solid #c9982b;

    color: #083f2b;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.erste-outline-button:hover {
    background: #c9982b;

    color: #ffffff;
}


/* =========================================================
   KONTAKT
   ========================================================= */

.erste-checklist-contact {
    padding: 90px 30px;

    background: #ffffff;
}


.erste-checklist-contact-inner {
    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}


.erste-checklist-contact-inner h2 {
    margin: 0 0 20px;

    color: #083f2b;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 800;
}


.erste-checklist-contact-inner p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #43514b;

    font-size: 18px;

    line-height: 1.75;
}


.erste-contact-actions {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .erste-checklist-hero-content {
        padding: 80px 30px;
    }


    .erste-checklist-hero h1 {
        font-size: 46px;
    }


    .erste-checklist-container {
        grid-template-columns: 65px 1fr;

        gap: 30px;
    }


    .erste-checklist-content h2 {
        font-size: 32px;
    }


    .erste-document-list,
    .erste-service-list {
        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .erste-checklist-hero {
        min-height: 440px;
    }


    .erste-checklist-hero-content {
        padding: 70px 22px;
    }


    .erste-checklist-hero h1 {
        font-size: 36px;
    }


    .erste-checklist-hero p {
        font-size: 16px;

        line-height: 1.65;
    }


    .erste-checklist-intro {
        padding: 65px 22px;
    }


    .erste-checklist-intro h2 {
        font-size: 32px;
    }


    .erste-checklist-intro p {
        font-size: 16px;
    }


    .erste-checklist-section {
        padding: 65px 22px;
    }


    .erste-checklist-container {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .erste-checklist-number {
        font-size: 32px;
    }


    .erste-checklist-content h2 {
        font-size: 29px;
    }


    .erste-checklist-content > p {
        font-size: 16px;
    }


    .erste-checklist-two-columns {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .erste-document-list {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .erste-choice-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .erste-service-list {
        grid-template-columns: 1fr;
    }


    .erste-international-section {
        min-height: 420px;
    }


    .erste-international-content {
        padding: 65px 22px;
    }


    .erste-international-content h2 {
        font-size: 32px;
    }


    .erste-international-content p {
        font-size: 16px;
    }


    .erste-checklist-contact {
        padding: 70px 22px;
    }


    .erste-checklist-contact-inner h2 {
        font-size: 32px;
    }


    .erste-checklist-contact-inner p {
        font-size: 16px;
    }

}


/* =========================================================
   KLEINE HANDYS
   ========================================================= */

@media (max-width: 430px) {

    .erste-checklist-hero h1 {
        font-size: 31px;
    }


    .erste-checklist-intro h2,
    .erste-checklist-content h2,
    .erste-checklist-contact-inner h2 {
        font-size: 28px;
    }


    .erste-checklist-info {
        flex-direction: column;

        gap: 8px;
    }


    .erste-choice-card {
        padding: 28px 24px;
    }


    .erste-contact-actions {
        flex-direction: column;
    }


    .erste-gold-button,
    .erste-outline-button {
        width: 100%;

        box-sizing: border-box;

        text-align: center;
    }

}

/* =========================================================
   ERSTE SCHRITTE – PERSÖNLICHE BEGLEITUNG
   FEINSCHLIFF
   ========================================================= */

.erste-checklist-intro {
    padding: 90px 30px 100px;
    background: #ffffff;
}


.erste-checklist-intro .erste-checklist-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 220px minmax(0, 1fr);

    column-gap: 70px;

    row-gap: 55px;

    align-items: start;
}


/* =========================================================
   GOLDENE ÜBERSCHRIFT LINKS
   ========================================================= */

.erste-checklist-intro-label {
    grid-column: 1;

    margin: 0;

    padding-top: 8px;

    color: #c9982b;

    font-size: 15px;

    line-height: 1.5;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   GROSSE HAUPTÜBERSCHRIFT
   ========================================================= */

.erste-checklist-intro h2 {
    grid-column: 2;

    max-width: 1000px;

    margin: 0;

    color: #083f2b;

    font-size: 48px;

    line-height: 1.18;

    font-weight: 800;
}


/* =========================================================
   LINKER TEXT
   ========================================================= */

.erste-checklist-intro .intro-side-text {
    grid-column: 1;

    width: 220px;

    max-width: 220px;

    margin: 0;

    color: #35433d;

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   RECHTER TEXT
   ========================================================= */

.erste-checklist-intro .intro-main-text {
    grid-column: 2;

    width: 100%;

    max-width: 950px;

    margin: 0;

    color: #35433d;

    font-size: 20px;

    line-height: 1.8;
}


/* =========================================================
   NORMALE ABSÄTZE
   ========================================================= */

.erste-checklist-intro p {
    color: #35433d;

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .erste-checklist-intro .erste-checklist-container {
        grid-template-columns: 190px minmax(0, 1fr);

        column-gap: 40px;
    }


    .erste-checklist-intro .intro-side-text {
        width: 190px;

        max-width: 190px;
    }


    .erste-checklist-intro h2 {
        font-size: 42px;
    }


    .erste-checklist-intro .intro-main-text {
        font-size: 18px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .erste-checklist-intro {
        padding: 65px 22px 75px;
    }


    .erste-checklist-intro .erste-checklist-container {
        display: block;

        max-width: 100%;
    }


    .erste-checklist-intro-label {
        margin-bottom: 18px;

        padding-top: 0;
    }


    .erste-checklist-intro h2 {
        margin-bottom: 30px;

        font-size: 34px;

        line-height: 1.2;
    }


    .erste-checklist-intro .intro-side-text {
        width: 100%;

        max-width: 100%;

        margin-bottom: 25px;

        font-size: 17px;

        line-height: 1.7;
    }


    .erste-checklist-intro .intro-main-text {
        width: 100%;

        max-width: 100%;

        font-size: 17px;

        line-height: 1.7;
    }

}

/* =====================================================
   PERSÖNLICHE BEGLEITUNG
   TEXT + BILD
===================================================== */

.erste-begleitung {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}


.erste-begleitung-container {
    width: min(1500px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 58% 42%;

    min-height: 680px;
}


/* =====================================================
   TEXTBEREICH
===================================================== */

.erste-begleitung-text {
    padding: 90px 70px 90px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
    z-index: 2;
}


.erste-begleitung-label {
    margin-bottom: 28px;

    color: #c89b3c;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 3px;
    line-height: 1.5;

    text-transform: uppercase;
}


.erste-begleitung-text h2 {
    max-width: 900px;

    margin: 0;

    color: #063f2b;

    font-size: clamp(42px, 4vw, 68px);
    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -1.5px;
}


/* =====================================================
   GOLDENE TRENNLINIE
===================================================== */

.erste-begleitung-divider {
    width: 100%;
    max-width: 760px;

    height: 1px;

    margin: 42px 0 45px;

    background: #d8c79f;
}


/* =====================================================
   ZWEI TEXTSPALTEN
===================================================== */

.erste-begleitung-columns {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 55px;

    max-width: 900px;
}


.erste-begleitung-column {
    position: relative;
}


.erste-begleitung-column + .erste-begleitung-column {
    padding-left: 45px;

    border-left: 1px solid #e1e5e1;
}


.erste-begleitung-column p {
    margin: 0;

    color: #34443e;

    font-size: 19px;
    line-height: 2;
}


/* =====================================================
   BILDBEREICH
===================================================== */

.erste-begleitung-image {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
     margin-top: 55px;
}


.erste-begleitung-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/* =====================================================
   KEIN ÜBERGANG ÜBER DEN TEXT
===================================================== */

.erste-begleitung-image::before {
    display: none;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .erste-begleitung-image {
        height: 420px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .erste-begleitung-container {
        grid-template-columns: 55% 45%;
    }

    .erste-begleitung-text {
        padding: 70px 45px 70px 25px;
    }

    .erste-begleitung-columns {
        gap: 30px;
    }

    .erste-begleitung-column + .erste-begleitung-column {
        padding-left: 30px;
    }

    .erste-begleitung-column p {
        font-size: 17px;
        line-height: 1.8;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .erste-begleitung-container {
        display: flex;
        flex-direction: column;
    }


    .erste-begleitung-text {
        padding: 70px 25px 55px;
    }


    .erste-begleitung-text h2 {
        font-size: 42px;
        line-height: 1.1;
    }


    .erste-begleitung-divider {
        margin: 32px 0 35px;
    }


    .erste-begleitung-columns {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .erste-begleitung-column + .erste-begleitung-column {
        padding-left: 0;

        padding-top: 30px;

        border-left: none;
        border-top: 1px solid #e1e5e1;
    }


    .erste-begleitung-column p {
        font-size: 17px;
        line-height: 1.8;
    }


    .erste-begleitung-image {
        min-height: 420px;
    }


    .erste-begleitung-image::before {
        width: 100%;
        height: 100px;

        top: 0;
        left: 0;

        background: linear-gradient(
            to bottom,
            #ffffff 0%,
            rgba(255, 255, 255, 0) 100%
        );
    }

}

/* =========================================================
   MITARBEITER ANMELDUNG
   ========================================================= */
/*
.header-login {
    display: none;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-left: 18px;

    flex-shrink: 0;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
} */

.header-login img {
    display: none;

    width: 42px;
    height: 42px;

    object-fit: contain;
}

.header-login:hover {
    transform: translateY(-2px);

    opacity: 0.85;
}

@media (max-width: 768px) {

    .header-login {
        width: 36px;
        height: 36px;

        margin-left: 10px;
    }

    .header-login img {
        width: 36px;
        height: 36px;
    }

}
/* =========================================================
   AL-YAQEEN – LEISTUNGEN ÜBERSCHRIFT
   ========================================================= */

.yaqeen-services-heading {
    width: 100%;
    text-align: center;
    margin: 0 auto 35px;
    padding: 0 20px;
}

.yaqeen-services-eyebrow {
    display: block;

    color: #c89b3c;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2.5px;

    margin-bottom: 10px;
}

.yaqeen-services-heading h2 {
    margin: 0;

    color: #173b2b;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 42px;
    line-height: 1.15;

    font-weight: 700;
}

.yaqeen-services-heading-line {
    width: 105px;
    height: 3px;

    margin: 18px auto 17px;

    background: #c89b3c;

    border-radius: 5px;
}

.yaqeen-services-heading p {
    margin: 0 auto;

    max-width: 760px;

    color: #68736d;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   GOLDENER BORDER FÜR ALLE LEISTUNGS-BILDER
   ========================================================= */

.yaqeen-service-card {
    border: 3px solid #c89b3c;

    border-radius: 0 20px 20px 20px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(23, 59, 43, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Hover */

.yaqeen-service-card:hover {
    border-color: #d5ad55;

    transform: translateY(-4px);

    box-shadow:
        0 16px 35px rgba(23, 59, 43, 0.18);
}


/* =========================================================
   BILD IMMER INNERHALB DES GOLDENEN RAHMENS
   ========================================================= */

.yaqeen-service-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   BUTTON IM BILD
   ========================================================= */

.yaqeen-service-button {
    border: 1px solid #ffffff;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.yaqeen-service-button:hover {
    background: #c89b3c;

    color: #173b2b;

    border-color: #c89b3c;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .yaqeen-services-heading {
        margin-bottom: 25px;
    }

    .yaqeen-services-heading h2 {
        font-size: 32px;
    }

    .yaqeen-services-heading p {
        font-size: 15px;
    }

    .yaqeen-service-card {
        border-width: 2px;
    }
}

/* =========================================================
   LEISTUNGEN – NUR HAUPTÜBERSCHRIFT
   ========================================================= */

.yaqeen-services-heading {
    margin: 0 auto 30px !important;
    padding: 0 20px !important;
    text-align: left;
}

.yaqeen-services-heading h2 {
    margin: 0 !important;

    color: #173b2b !important;

    font-size: 42px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
}

/* =========================================================
   AL-YAQEEN – SERVICES MOSAIC
   ABSTAND ÜBERSCHRIFT → BILDER
   ========================================================= */

.yaqeen-services-mosaic {
    padding-top: 50px !important;
    padding-bottom: 70px !important;
}

.yaqeen-services-mosaic .yaqeen-services-heading {
    margin-bottom: 25px !important;
}

/* =========================================================
   AL-YAQEEN – SERVICES MOSAIC
   EINHEITLICHER GOLDENER RAHMEN
   ========================================================= */

.yaqeen-services-mosaic .yaqeen-service-card {
    border: 3px solid #c89b3c !important;

    border-radius: 22px !important;

    overflow: hidden !important;

    box-sizing: border-box !important;
}


/* Bild bleibt innerhalb des Rahmens */

.yaqeen-services-mosaic .yaqeen-service-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .yaqeen-services-mosaic .yaqeen-service-card {
        border-width: 2px !important;
        border-radius: 18px !important;
    }

}

/* =====================================================
   SPRACHWECHSEL
   ===================================================== */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 25px;
    white-space: nowrap;
}

.language-switcher a {
    color: #173b2b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.language-switcher a:hover {
    color: #c89b3c;
}

.language-switcher a.active {
    color: #c89b3c;
}

.language-switcher span {
    color: #c89b3c;
    font-size: 14px;
}


/* MOBILE */

@media (max-width: 900px) {

    .language-switcher {
        margin-left: 10px;
        gap: 5px;
    }

    .language-switcher a {
        font-size: 13px;
    }

}

/* ==========================================================
   ARABISCHE SEITE – IMPRESSUM
   ========================================================== */

.arabic-legal-hero {
    position: relative;
    min-height: 430px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(24, 24, 24, 0.82),
            rgba(93, 23, 33, 0.62)
        ),
        url("../images/infos.jpg")
        center center / cover no-repeat;
}

.arabic-legal-hero-content {
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;

    direction: rtl;
    text-align: right;
}

.arabic-legal-hero-content span {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--ar-gold-light);

    font-size: 17px;
    font-weight: 700;
}

.arabic-legal-hero-content h1 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 48px;
    line-height: 1.5;
    font-weight: 700;
}

.arabic-legal-hero-content p {
    max-width: 700px;

    margin: 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 17px;
    line-height: 2;
}


/* ==========================================================
   IMPRESSUM – HAUPTBEREICH
   ========================================================== */

.arabic-legal-page {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fcfaf4 50%,
            #ffffff 100%
        );
}

.arabic-legal-container {
    width: 88%;
    max-width: 1100px;
    margin: 0 auto;

    direction: rtl;
}


/* ==========================================================
   EINZELNE INFORMATIONSBLOCKS
   ========================================================== */

.arabic-legal-block {
    position: relative;

    margin-bottom: 30px;
    padding: 35px 40px 35px 35px;

    background: #ffffff;

    border: 1px solid rgba(200, 155, 60, 0.55);

    box-shadow:
        0 8px 25px rgba(24, 24, 24, 0.06);

    text-align: right;
}

.arabic-legal-block::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 5px;
    height: 65px;

    background: var(--ar-red);
}


/* ==========================================================
   NUMMER
   ========================================================== */

.arabic-legal-number {
    display: block;

    margin-bottom: 8px;

    color: var(--ar-gold);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* ==========================================================
   ÜBERSCHRIFT
   ========================================================== */

.arabic-legal-block h2 {
    margin: 0 0 18px;

    color: var(--ar-red);

    font-size: 25px;
    line-height: 1.6;
}


/* ==========================================================
   TEXT
   ========================================================== */

.arabic-legal-block p {
    margin: 0 0 12px;

    color: var(--ar-gray);

    font-size: 16px;
    line-height: 2;
}

.arabic-legal-block p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   E-MAIL / TELEFON
   ========================================================== */

.arabic-legal-block span[dir="ltr"] {
    color: var(--ar-black);
    font-weight: 600;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {

    .arabic-legal-hero {
        min-height: 380px;
    }

    .arabic-legal-hero-content {
        width: 92%;
    }

    .arabic-legal-hero-content h1 {
        font-size: 34px;
    }

    .arabic-legal-hero-content p {
        font-size: 15px;
        line-height: 1.9;
    }

    .arabic-legal-page {
        padding: 65px 0;
    }

    .arabic-legal-container {
        width: 92%;
    }

    .arabic-legal-block {
        padding: 28px 25px 28px 22px;
    }

    .arabic-legal-block h2 {
        font-size: 21px;
    }

    .arabic-legal-block p {
        font-size: 15px;
    }

}
/* =====================================================
   DEUTSCHER HEADER – SPRACHWECHSEL
   ===================================================== */

.language-switcher {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
    margin-left: 25px !important;
    white-space: nowrap;
    height: 100%;
}

.language-switcher a {
    display: inline-block !important;
    color: #173b2b !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    padding: 4px 6px !important;
    margin: 0 !important;
}

.language-switcher a:hover {
    color: #c89b3c !important;
}
/* =====================================================
   DEUTSCHER HEADER – ARABISCHER SPRACHWECHSEL
   ===================================================== */

.site-header .header-container .language-switcher {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 auto !important;
    width: auto !important;
    height: auto !important;

    margin: 0 0 0 25px !important;
    padding: 0 !important;

    visibility: visible !important;
    opacity: 1 !important;

    position: relative !important;
    z-index: 50 !important;

    white-space: nowrap !important;
}

.site-header .header-container .language-switcher a {
    display: inline-block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 5px 6px !important;

    color: #173b2b !important;
    background: transparent !important;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;

    text-decoration: none !important;

    visibility: visible !important;
    opacity: 1 !important;
}

.site-header .header-container .language-switcher a:hover {
    color: #c89b3c !important;
}

/* ================================
   ARABISCHER SPRACHLINK
   ================================ */

.main-nav .language-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #173b2b !important;
    background: transparent !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    margin-left: 25px !important;
    padding: 5px 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.main-nav .language-link:hover {
    color: #c89b3c !important;
}
