.city-hero-trust {
    width: 100%;
    float: left;
    box-sizing: border-box;
    background: linear-gradient(135deg, #003b75 0%, #0a68b1 100%);
    padding: 55px 0 50px;
    overflow: hidden;
    position: relative;
}
.city-hero-trust__grid {
    display: flex;
    align-items: center;
    gap: 50px;
}
.city-hero-trust__content {
    flex: 1 1 50%;
}
.city-hero-trust__heading {
    color: #fff;
    font-weight: 700;
    margin: 0 0 14px;
}
.city-hero-trust__subheading {
    color: #d9ecfb;
    margin: 0 0 26px;
    max-width: 480px;
}
.city-hero-trust__cta {
    margin-bottom: 32px;
}
.city-hero-trust__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f6a818;
    color: #1a1a1a !important;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(246, 168, 24, 0.35);
    transition: 0.25s ease;
}
.city-hero-trust__cta-btn:hover {
    background-color: #ff9800;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(246, 168, 24, 0.45);
}
.city-hero-trust__stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 22px 30px;
}
.city-hero-trust__stats li {
    display: flex;
    flex-direction: column;
}
.city-hero-trust__stat-number {
    display: block;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}
.city-hero-trust__stat-label {
    display: block;
    color: #aed4f2;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: 4px;
}

/* Media side - real photography with organic depth */
.city-hero-trust__media {
    flex: 1 1 50%;
    position: relative;
    display: flex;
    justify-content: center;
}
.city-hero-trust__media-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 115%;
    height: 115%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(246, 168, 24, 0.25) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
    z-index: 0;
}
.city-hero-trust__media-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 20, 50, 0.35);
    display: block;
}
.city-hero-trust__media-badge {
    position: absolute;
    z-index: 2;
    bottom: -18px;
    left: -10px;
    background-color: #fff;
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}
.city-hero-trust__media-badge-icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #fde9c8;
    color: #f6a818;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.city-hero-trust__media-badge strong {
    display: block;
    color: #0a3d62;
    font-size: 18px;
    line-height: 1.2;
}
.city-hero-trust__media-badge span {
    display: block;
    color: #5a7184;
    font-size: 12px;
    font-weight: 600;
}

/* Entrance animation */
.city-hero-trust__content,
.city-hero-trust__media {
    animation: cityHeroFadeUp 0.7s ease both;
}
.city-hero-trust__media {
    animation-delay: 0.15s;
}
@keyframes cityHeroFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .city-hero-trust__grid {
        gap: 30px;
    }
    .city-hero-trust__stat-number {
        font-size: 24px;
    }
}

@media screen and (min-width: 320px) and (max-width: 767px) {
    .city-hero-trust {
        padding: 35px 0 45px;
    }
    .city-hero-trust__grid {
        flex-direction: column;
    }
    .city-hero-trust__content {
        text-align: center;
        order: 1;
    }
    .city-hero-trust__subheading {
        margin: 0 auto 22px;
    }
    .city-hero-trust__stats {
        justify-content: center;
    }
    .city-hero-trust__media {
        order: 0;
        margin-bottom: 45px;
    }
    .city-hero-trust__media-img {
        max-width: 320px;
    }
    .city-hero-trust__media-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        white-space: nowrap;
    }
}

@media screen and (min-width: 320px) and (max-width: 480px) {
    .city-hero-trust__media-img {
        max-width: 260px;
    }
    .city-hero-trust__stat-number {
        font-size: 22px;
    }
}
