/*###############################
###
###     BERATUNG STYLES
###     BASED ON: HTML, JS, CSS 
###     AUTHOR: Benjamin Benenwitz
###
###
###       ██████╗  ▀█
###       ██╔══██╗ █▄
###       ██████╦╝
###       ██╔══██╗
###       ██████╦╝
###       ╚═════╝
###
###
#################################*/

/* Inhaltsverzeichnis
   9. beratung.html
      9.1 Hero-Sektion (Full-Bleed & Content Card)
      9.2 Vorteile (XXL-Icons & Grid)
      9.3 Banner / Vertrauensblock (Pflegekasse)
      9.4 Stepper / Ablauf (Prozess-Visualisierung)
      9.5 Kontaktmöglichkeiten / CTA (Service-Cards)
      9.6 Responsive
*/

/* ==============================
   9.0 Globale Variablen & Reset
   ============================== */
:root {
    --color-primary: #17214d;
    --color-accent: #80e2ff;
    --color-dark: #17214d;
    --color-light-bg: #f8faff;
    --hero-height: 100vh;
    --transition-speed: 0.3s;
    --section-spacing: 160px;
    --radius-lg: 32px;
    --radius-md: 20px;
    --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.05);
}

body,
html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

/* ==============================
   9.1 Hero-Sektion (Full-Bleed & Content Card)
   ============================== */
.beratung-hero {
    position: relative;
    height: var(--hero-height);
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.beratung-hero-bgimg {
    width: 100%;
    height: 100%;
    background: url('/images/kranhaus-by-benjamin-bennewitz.webp') center center/cover no-repeat;
    transition: transform 10s ease-out;
}

.beratung-hero:hover .beratung-hero-bgimg {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(23, 33, 77, 0.85) 0%, rgba(23, 33, 77, 0.4) 100%);
    z-index: 2;
}

.hero-content-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5% 0;
}

.hero-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 60px;
    border-radius: var(--radius-lg);
    max-width: 650px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.beratung-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: var(--color-primary);
    font-weight: 900;
    margin: 0 0 25px 0;
    letter-spacing: -0.03em;
}

.beratung-hero-title span {
    display: block;
    color: var(--color-dark);
    font-weight: 400;
    font-size: 0.65em;
    margin-top: 5px;
}

.beratung-hero-claim {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #333;
}

.highlight-text {
    color: var(--color-primary);
    font-weight: 800;
}

.claim-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    display: block;
    border-left: 4px solid var(--color-accent);
    padding-left: 20px;
    margin-top: 20px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-modern,
.btn-glass {
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-modern {
    background: var(--color-primary);
    color: var(--color-light);
    border: none;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(23, 33, 77, 0.3);
}

.btn-glass {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-glass:hover {
    background: var(--color-primary);
    color: var(--color-light);
}

/* ==============================
   9.2 Vorteile (XXL-Icons & Grid)
   ============================== */
.beratung-benefits {
    padding: var(--section-spacing) 20px;
    background: var(--color-light);
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 120px;
    color: var(--color-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 100px 60px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-icon-large {
    font-size: 5.5rem !important;
    /* XXL Größe */
    color: var(--color-primary);
    margin-bottom: 30px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-weight: 800;
}

.benefit-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

/* ==============================
   9.3 Banner / Vertrauensblock (Pflegekasse)
   ============================== */
.beratung-banner-modern {
    background: var(--color-primary);
    padding: 140px 20px;
}

.banner-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.banner-inner p {
    color: var(--color-light);
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.6;
    margin: 0;
}

.banner-inner strong {
    color: var(--color-accent);
}

/* ==============================
   9.4 Stepper / Ablauf (Prozess-Visualisierung)
   ============================== */
.beratung-steps {
    padding: var(--section-spacing) 20px;
    background: var(--color-light-bg);
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    list-style: none;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.step-card {
    background: var(--color-light);
    padding: 50px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: transform var(--transition-speed);
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-icon {
    font-size: 3.5rem !important;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.step-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.3;
}

/* Prozess-Nummer als Badge */
.step-card::before {
    content: attr(data-step);
    /* Falls du data-step="1" im HTML nutzt */
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ==============================
   9.5 Kontaktmöglichkeiten / CTA (Service-Cards)
   ============================== */
.beratung-contact {
    padding: var(--section-spacing) 20px;
    background: var(--color-light);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: var(--color-light);
    padding: 50px 40px;
    border-radius: var(--radius-md);
    border: 1px solid #eee;
    text-align: center;
    transition: all var(--transition-speed);
}

.contact-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-soft);
}

.contact-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.contact-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-links {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 3px solid var(--color-accent);
    transition: opacity 0.2s;
}

.cta-links:hover {
    opacity: 0.7;
}

/* ==============================
   9.6 Responsive
   ============================== */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 60px 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 100px;
    }

    .beratung-hero {
        height: auto;
        padding: 140px 20px 80px;
    }

    .hero-card {
        padding: 40px 25px;
    }

    .benefit-icon-large {
        font-size: 4.5rem !important;
    }

    .section-title {
        margin-bottom: 60px;
        font-size: 2rem;
    }

    .benefits-grid,
    .steps-list,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .benefit-card,
    .contact-card {
        text-align: center;
        align-items: center;
    }
}