/* ============================================
   СТИЛИ ДЛЯ ГОРОДСКИХ СТРАНИЦ
   ============================================ */

/* ---------- ХИРО-БЛОК ---------- */
.city-hero {
    padding: 32px 0;
}
.city-hero-buttons {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.city-max-btn {
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #E65476;
    color: #E65476;
    background: transparent;
    display: inline-flex;
    align-items: center;
}
.city-max-btn:hover {
    background: #E65476;
    color: #fff;
}

/* ---------- СЕКЦИЯ ИНФОРМАЦИИ ---------- */
.city-info-section {
    padding: 32px 0;
}
.city-section-title {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 20px;
    color: #1E1E1E;
}
.city-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    max-width: 800px;
    margin: 0 auto;
    gap: 16px;
}
.city-info-card {
    padding: 20px 16px;
    text-align: center;
    background: #f8f5f2;
    border-radius: 12px;
}
.city-info-icon {
    font-size: 28px;
    display: block;
}
.city-info-label {
    display: block;
    font-weight: 600;
    margin: 4px 0;
    font-size: 16px;
    color: #1E1E1E;
}
.city-info-value {
    display: block;
    font-size: 14px;
    color: #6B6B6B;
}
.city-info-value a {
    color: #E65476;
    text-decoration: none;
}
.city-info-value a:hover {
    text-decoration: underline;
}
.city-info-note {
    display: block;
    font-size: 13px;
    color: #2E7D32;
    margin-top: 4px;
}

/* ---------- СОЦИАЛЬНЫЕ СЕТИ ---------- */
.city-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}
.city-socials a {
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.city-socials a:hover {
    transform: scale(1.2);
}
.city-socials a .ph-whatsapp-logo { color: #25D366; }
.city-socials a .ph-telegram-logo { color: #26A5E4; }
.city-socials a .ph-vk-logo { color: #4C75A3; }

/* ---------- КАРТА ---------- */
.city-map-section {
    padding: 0 0 32px 0;
}
.city-map-wrapper {
    background: #f8f5f2;
    border-radius: 16px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    height: 300px;
    position: relative;
}
.city-map-wrapper iframe,
.city-map-wrapper script + div {
    width: 100% !important;
    height: 100% !important;
    border: none;
    display: block;
}
.city-map-link {
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
}
.city-map-link a {
    color: #E65476;
    text-decoration: none;
}
.city-map-link a:hover {
    text-decoration: underline;
}

/* ---------- КАТЕГОРИИ ---------- */
.city-categories {
    padding: 32px 0;
    background: #fff;
}
.city-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin: 0 auto;
}
.city-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    background: #fcf9f7;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.city-category-card:hover {
    background: #fff5f5;
    border-color: #E65476;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 84, 118, 0.1);
}
.city-category-icon {
    font-size: 28px;
}
.city-category-name {
    font-size: 14px;
    font-weight: 600;
    color: #1E1E1E;
    margin-top: 4px;
}
.city-category-count {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}
/* ---------- SEO-ТЕКСТ (ПОЛНОЦЕННЫЙ) ---------- */
.city-seo-section {
    padding: 40px 0;
}


.city-seo-content-full h2 {
    font-size: 26px;
    color: #1E1E1E;
    font-family: 'Playfair Display', serif;
    margin: 0 0 16px;
    text-align: center;
}

.city-seo-content-full h3 {
    font-size: 20px;
    color: #E65476;
    margin: 28px 0 12px;
}

.city-seo-content-full p {
    font-size: 16px;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 16px;
}

.city-seo-content-full ul,
.city-seo-content-full ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.city-seo-content-full li {
    font-size: 15px;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 8px;
}

.city-seo-content-full a {
    color: #E65476;
    text-decoration: none;
}
.city-seo-content-full a:hover {
    text-decoration: underline;
}

.city-seo-content-full .btn {
    display: inline-block;
    background: #E65476;
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
}
.city-seo-content-full .btn:hover {
    background: #d43f61;
}

/* Адаптив */
@media (max-width: 768px) {
    .city-seo-section {
        padding: 24px 0;
    }
    .city-seo-content-full h2 {
        font-size: 22px;
    }
    .city-seo-content-full h3 {
        font-size: 18px;
    }
    .city-seo-content-full p,
    .city-seo-content-full li {
        font-size: 15px;
    }
}

/* ---------- БОНУСНЫЙ БЛОК ---------- */
.city-bonus {
    padding: 32px 20px;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFF0F3 100%);
    border-radius: 24px;
    text-align: center;
}
.city-bonus-icon {
    font-size: 36px;
    display: block;
}
.city-bonus-title {
    font-size: 22px;
    color: #1E1E1E;
    margin: 8px 0;
    font-family: 'Playfair Display', serif;
}
.city-bonus-text {
    font-size: 16px;
    color: #6B6B6B;
    max-width: 600px;
    margin: 0 auto 12px;
    line-height: 1.6;
}
.city-bonus-link {
    color: #E65476;
    font-weight: 600;
    text-decoration: none;
}
.city-bonus-link:hover {
    text-decoration: underline;
}

/* ---------- АДАПТИВ ---------- */
@media (max-width: 768px) {
    .city-hero {
        padding: 20px 0;
    }
    .city-hero-buttons .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .city-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .city-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 8px;
    }
    .city-category-card {
        padding: 12px 8px;
    }
    .city-map-wrapper {
        height: 200px;
    }
    .city-bonus {
        padding: 24px 16px;
        margin: 0 0 24px;
    }
    .city-bonus-title {
        font-size: 18px;
    }
    .city-seo-content {
        max-height: 120px;
    }
}

@media (max-width: 480px) {
    .city-info-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
    .city-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .city-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .city-map-wrapper {
        height: 180px;
    }
}