﻿/* === Modern Blue Confirmation Card (B2) === */
.fewo-confirm-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.fewo-confirm-header {
    background: #006ebe;
    padding: 25px 10px;
    color: #fff;
}

    .fewo-confirm-header i {
        font-size: 48px;
        color: #fff;
    }

.fewo-confirm-body {
    padding: 30px;
}

    .fewo-confirm-body h3 {
        color: #006ebe;
    }

    .fewo-confirm-body p {
        font-size: 15px;
        color: #555;
    }
/* HERO */
.fewo-hero {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.fewo-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.fewo-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 0 0 12px rgba(0,0,0,0.4);
}

/* ICON BOX */
.fewo-iconbox {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    transition: 0.2s;
}

    .fewo-iconbox i {
        font-size: 36px;
        color: #006ebe;
        margin-bottom: 15px;
    }

    .fewo-iconbox:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 22px rgba(0,0,0,0.11);
    }

/* SUCCESS CARD */
.fewo-success-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

    .fewo-success-card i {
        font-size: 60px;
        color: #28a745;
    }

/* Kompakte Standort-Section */
.fewo-location-small {
    max-width: 720px;
    margin: 0 auto;
}

.fewo-location-box {
    background: #fff;
    border-radius: 18px;
    padding: 30px 40px; /* kompakt */
    text-align: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* Icon kleiner + moderner */
.fewo-location-icon {
    font-size: 42px;
    color: #4e66f8;
    margin-bottom: 8px;
}

/* Kleinere Typografie */
.fewo-location-box h4 {
    font-size: 22px;
    margin-bottom: 4px;
}

.fewo-location-box p {
    font-size: 14px;
}

/* Kleinerer Button */
.fewo-location-btn {
    padding: 10px 26px;
    font-size: 14px;
    border-radius: 8px;
    background: #4e66f8;
    border: none;
}

    /* Hover */
    .fewo-location-btn:hover {
        background: #3b50d1;
    }

/* Mobile noch etwas kleiner */
@media (max-width: 768px) {
    .fewo-location-box {
        padding: 25px;
    }

    .fewo-location-icon {
        font-size: 34px;
    }
}
