        body {
            background: #f7f8fc;
            margin: 0;
        }

.country-hero {
    padding: 20px;
    width: 70%;
    height: 420px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;

    /* CENTRARE */
    margin: 0 auto 35px auto;
}


        .country-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.7));
        }

        .country-hero-title {
            position: absolute;
            bottom: 40px;
            left: 35px;
            font-size: 45px;
            font-weight: 800;
            color: #fff;
            z-index: 2;
            text-shadow: 0 4px 12px rgba(0,0,0,0.4);
        }

        h1, h2 {
            font-weight: 700;
            color: #111827;
        }

        .country-info {
            background: white;
            padding: 25px;
            border-radius: 14px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            margin-bottom: 30px;
            line-height: 1.7;
            font-size: 17px;
        }

        .city-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 22px;
            margin-top: 20px;
        }

        .city-card {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            position: relative;
            height: 180px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            cursor: pointer;
            transition: 0.3s;
        }

        .city-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.18);
        }

        .city-img {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: absolute;
            inset: 0;
        }

        .city-img::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.7));
        }

        .city-name {
            position: absolute;
            bottom: 14px;
            left: 14px;
            color: white;
            font-size: 20px;
            font-weight: 700;
            z-index: 3;
            text-shadow: 0 3px 8px rgba(0,0,0,0.4);
        }

        .back-btn {
            margin-top: 35px;
            display: inline-block;
            padding: 12px 20px;
            background: linear-gradient(135deg, #38bdf8, #6366f1);
            color: #fff;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.25s ease;
        }

        .back-btn:hover {
            opacity: 0.85;
            transform: translateY(-3px);
        }

        /* Modern updated grid */
        .city-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 26px;
            margin-top: 25px;
        }

        .city-card {
            position: relative;
            height: 200px;
            border-radius: 18px;
            overflow: hidden;
            background: #000;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(0,0,0,0.10);
            transition: .3s ease;
        }

        .city-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 10px 25px rgba(0,0,0,0.20);
        }

        .city-img {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: .5s ease;
            filter: brightness(0.85);
        }

        .city-card:hover .city-img {
            transform: scale(1.12);
            filter: brightness(0.70) blur(1px);
        }

        .city-img::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.75));
            z-index: 1;
        }

        .city-name {
            position: absolute;
            bottom: 16px;
            left: 16px;
            z-index: 2;
            padding: 6px 14px;
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(6px);
            border-radius: 10px;
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            text-shadow: 0 3px 8px rgba(0,0,0,0.5);
            box-shadow: 0 2px 10px rgba(0,0,0,0.25);
        }
        
        .country-hero {
    width: 100%;
    height: 55vh; /* se adaptează pe telefon */
    max-height: 450px;
    min-height: 260px;
    border-radius: 18px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    margin: 0 auto 35px auto;
}

/* Gradient peste imagine */
.country-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.7));
}

/* Titlul din Hero */
.country-hero-title {
    position: absolute;
    bottom: 25px;
    left: 20px;
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    z-index: 2;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* 📱 Telefon */
@media (max-width: 600px) {
    .country-hero {
        height: 40vh;      /* mai mic pe telefon */
        min-height: 220px;
        border-radius: 0; /* full width, full bleed */
        margin-bottom: 25px;
    }

    .country-hero-title {
        font-size: 26px;
        bottom: 18px;
        left: 16px;
    }
}
