/* style.css - Минималистичный дизайн */
/* ===== БАЗОВЫЕ СТИЛИ (без изменений) ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif; background: #f8fafd; color: #1e293b; line-height: 1.5; }
p { margin-bottom: 20px; }
a { color: #007bff; text-decoration: none; transition: color 0.3s; }
a:hover { color: #0056b3; text-decoration: underline; }
ul, ol { display: block; margin-block-start: 1em; margin-block-end: 1em; padding-inline-start: 40px; unicode-bidi: isolate; }
.site-header-inner, #content, .site-footer-inner { margin: 0 auto; max-width: 1280px; padding: 0 10px; display: flow-root; }
.section-box { background: #fff; padding: 25px; border-radius: 10px; margin: 30px 0; box-shadow: 0 3px 15px rgba(0,0,0,0.05); }
.h1-svatovo { font-size: 3em; font-weight: 700; line-height: 1.2; margin-bottom: 25px; }
.h2-svatovo { text-align: center; font-size: 2.5em; margin-bottom: 30px; color: #0b1e33; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 10px; }
/* ===== ШАПКА САЙТА (без изменений) ===== */
.site-header { background: #fff; padding: 0; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); }
.logo { display: flex; align-items: center; }
.cont-logotip { padding: 15px 0; }
.logotip { display: flex; align-items: center; color: white; text-decoration: none; transition: opacity 0.3s; }
.logotip img { width: 50px; height: 50px; margin-right: 15px; }
.logotip div { display: flex; flex-direction: column; font-size: 24px; font-weight: 900; color: #282828; }
.logotip div:first-child { font-size: 20px; font-weight: 700; line-height: 1.2; }
.logotip small { display: block; font-size: 14px; font-weight: 400; opacity: 0.8; margin-top: -8px; }
.menu-flex { display: flex; justify-content: space-between; align-items: center; }
.menu-items { display: flex; align-items: center; gap: 20px; }
.menu-item-element { display: flex; align-items: center; }
.menu-btn { position: relative; }
.menu-btn a { display: inline-block; padding: 10px 20px; background: #1068c7; color: white; text-decoration: none; border-radius: 6px; font-weight: 500; font-size: 18px; line-height: 20px; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.2); }
.menu-btn a:hover { background: #007bff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); text-decoration: none; }
.menu-btn span { display: inline-block; padding: 10px 20px; background: #007bff; color: white; text-decoration: none; border-radius: 6px; font-weight: 500; font-size: 18px; line-height: 20px; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.2); }
.mobile-menu-open { display: none; cursor: pointer; padding: 8px; margin-left: 10px; border-radius: 6px; background: rgba(255, 255, 255, 0.1); transition: background 0.3s; }
.mobile-menu-open:hover { background: rgba(255, 255, 255, 0.2); }
.mobile-menu-open svg { width: 24px; height: 24px; fill: white; }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: #fff; padding: 20px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); z-index: 999; animation: slideDown 0.3s ease-out; }
.menutitle { display: block; font-size: 1.17em; font-weight: bold; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.mobile-menu.active { display: block; }
.mobile-menu-items { display: flex; flex-direction: column; gap: 15px; }
.mobile-menu-item { display: block; padding: 15px 20px; background: rgba(255, 255, 255, 0.1); color: #007bff; text-decoration: none; border-radius: 8px; font-weight: 500; font-size: 16px; text-align: center; transition: all 0.3s; border: 1px solid #e9ecef; }
.mobile-menu-item:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); text-decoration: none; }
.menu-img { background: #ffc107; border-radius: 20px; padding: 5px; }
.m-d-none { display: flex; }
@media (max-width: 768px) {
    .site-header { padding: 0; }
    .site-header-inner { padding: 0 15px; }
    .logotip img { width: 45px; height: 45px; margin-right: 10px; }
    .logotip div:first-child { font-size: 18px; }
    .m-d-none { display: none; }
    .mobile-menu-open { display: block; }
    .menu-items { gap: 10px; }
    .menu-btn a { padding: 8px 15px; font-size: 14px; }
}
@media (max-width: 480px) {
    .cont-logotip { padding: 12px 0; }
    .logotip img { width: 45px; height: 45px; margin-right: 10px; }
    .logotip div:first-child { font-size: 16px; }
    .mobile-menu-open { padding: 6px; }
    .mobile-menu-open svg { width: 20px; height: 20px; }
}
@media (prefers-color-scheme: dark) {
    .site-header { background: linear-gradient(135deg, #121858 0%, #1a237e 100%); }
    .mobile-menu { background: #1a237e; }
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.1); } 70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }

/* ===== ХЛЕБНЫЕ КРОШКИ ===== */
.breadcrumb { font-size: 14px; line-height: 1; color: #6c757d; margin-bottom: 20px; display: flex; align-items: center; flex-wrap: wrap; row-gap: 10px; list-style: none; padding: 0; }
.breadcrumb li:not(:last-child) { padding-right: 10px; margin-right: 10px; position: relative; }
.breadcrumb li:not(:last-child)::after { content: ""; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; background: url(/img/right-arrow.png) 0 0 no-repeat; background-size: contain; }

/* ===== СТИЛИ ДЛЯ ГЛАВНОЙ СТРАНИЦЫ (СВАТОВО) ===== */
.hero-svatovo { background: linear-gradient(135deg, #0b1e33 0%, #1a3a5c 100%); color: white; padding: 80px 0; margin-bottom: 60px; }
.hero-svatovo .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.features-svatovo { list-style: none; margin: 30px 0; }
.features-svatovo li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-size: 1.1em; }
.features-svatovo i { color: #ffd83b; font-size: 1.3em; width: 30px; }
.quick-order-svatovo { background: white; border-radius: 30px; padding: 40px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.quick-order-svatovo h3 { font-size: 1.8em; margin-bottom: 25px; color: #0b1e33; }
.order-form { display: flex; flex-direction: column; gap: 20px; }
.order-input { padding: 18px 25px; border: 2px solid #e2e8f0; border-radius: 60px; font-size: 1em; transition: 0.2s; width: 100%; }
.order-input:focus { border-color: #0055b7; outline: none; }
.order-btn { background: #ffd83b; color: #0b1e33; border: none; padding: 18px 35px; border-radius: 60px; font-weight: 700; font-size: 1.2em; cursor: pointer; transition: 0.2s; text-align: center; display: inline-block; text-decoration: none; }
.order-btn:hover { background: #ffcd1a; transform: scale(1.02); }
.phone-numbers { display: flex; gap: 30px; flex-wrap: wrap; }
.phone-numbers a { color: #0056b3; text-decoration: none; font-size: 1.3em; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.phone-numbers a:hover { color: #007bff; }
.work-hours-svatovo { color: #94a3b8; font-size: 0.9em; }

.advantages-svatovo { padding: 60px 0; }
.advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.advantage-card { background: white; border-radius: 30px; padding: 35px 25px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.03); border: 1px solid #edf2f7; }
.advantage-icon { font-size: 3em; color: #0055b7; margin-bottom: 20px; }
.advantage-card h3 { font-size: 1.3em; margin-bottom: 15px; }
.advantage-card p { color: #475569; }

.popular-routes-svatovo { padding: 60px 0; background: white; }
.routes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 40px; }
.route-card-svatovo { background: #f8fafd; border-radius: 25px; padding: 25px; transition: 0.2s; border: 1px solid #e2e8f0; }
.route-card-svatovo:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,85,183,0.1); }
.route-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.route-city { font-size: 1.5em; font-weight: 700; }
.route-city a { color: #0055b7; text-decoration: none; }
.route-city a:hover { text-decoration: underline; }
.route-price { font-size: 1.4em; font-weight: 700; color: #0b1e33; }
.route-details { display: flex; gap: 20px; color: #475569; margin: 15px 0; padding: 15px 0; border-top: 1px dashed #cbd5e1; border-bottom: 1px dashed #cbd5e1; }
.route-detail { display: flex; align-items: center; gap: 8px; }
.route-detail i { color: #0055b7; width: 20px; }
.route-region { color: #64748b; font-size: 0.9em; }

.region-routes-svatovo { padding: 60px 0; }
.region-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; justify-content: center; }
.region-tab { padding: 12px 25px; background: white; border: 1px solid #e2e8f0; border-radius: 60px; cursor: pointer; font-weight: 600; transition: 0.2s; }
.region-tab:hover, .region-tab.active { background: #0055b7; color: white; border-color: #0055b7; }
.region-routes-grid { display: none; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.region-routes-grid.active { display: grid; }
.region-route-item { background: white; border-radius: 20px; padding: 20px; border: 1px solid #e2e8f0; }
.region-route-item .city-name { font-size: 1.2em; font-weight: 600; margin-bottom: 10px; }
.region-route-item .city-name a { color: #0055b7; text-decoration: none; }
.region-route-item .route-meta { display: flex; gap: 15px; color: #475569; font-size: 0.9em; margin: 10px 0; }
.route-price-small { font-weight: 600; color: #0b1e33; }

.reviews-svatovo { padding: 60px 0; background: white; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.review-card { background: #f8fafd; border-radius: 25px; padding: 30px; position: relative; }
.review-card::before { content: '"'; position: absolute; top: 20px; right: 30px; font-size: 5em; color: #e2e8f0; font-family: serif; }
.review-header { display: flex; justify-content: space-between; margin-bottom: 20px; }
.review-name { font-weight: 700; font-size: 1.1em; }
.review-date { color: #64748b; }
.review-text { color: #334155; line-height: 1.6; position: relative; z-index: 1; }
.review-rating { color: #ffd83b; margin-top: 15px; font-size: 1.2em; }

.contacts-svatovo { padding: 60px 0; background: linear-gradient(135deg, #0b1e33 0%, #1a3a5c 100%); color: white; }
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contacts-svatovo h2 { font-size: 2.2em; margin-bottom: 30px; text-align: center; }
.contacts-list { list-style: none; }
.contacts-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-size: 1.2em; }
.contacts-list i { width: 30px; color: #ffd83b; }
.social-links { display: flex; gap: 20px; margin-top: 30px; }
.social-link { width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: 0.2s; }
.social-link:hover { background: #ffd83b; color: #0b1e33; transform: scale(1.1); }
.btn { display: inline-block; padding: 15px 35px; border-radius: 60px; text-decoration: none; font-weight: 600; transition: 0.2s; }
.btn-primary { background: #ffd83b; color: #0b1e33; }
.btn-primary:hover { background: #ffcd1a; transform: scale(1.05); }
.btn-outline { border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: #0b1e33; }
.contacts-svatovo h3 { font-size: 1.8em; margin-bottom: 20px; }

.about-svatovo {padding: 60px 0; background: white; }

@media (max-width: 900px) {
.hero-svatovo .container { grid-template-columns: 1fr; }
.contacts-grid { grid-template-columns: 1fr; }
.h1-svatovo { font-size: 2.2em; }
.hero-features {padding: 0;}
.quick-order {padding: 15px;}
.advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.routes-grid {grid-template-columns: 1fr;}
.route-header {flex-direction: column;}
.route-card {padding: 10px;}
.reviews-grid { grid-template-columns: 1fr; }
}

/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ МАРШРУТА (СВАТОВО) ===== */
.route-header-svatovo { background: white; border-radius: 30px; padding: 30px 15px; margin: 30px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.route-title { font-size: 2.2em; font-weight: 700; margin-bottom: 30px; color: #0b1a2a; line-height: 1.2; }
.route-title.bold-city { font-weight: 800; color: #000; }
.route-title.large-city { font-size: 1.8em; }
.city-badge { display: inline-block; padding: 5px 15px; border-radius: 20px; font-size: 0.6em; margin: 5px 0 5px 15px; vertical-align: middle; font-weight: 600; }
.badge-bold- { background: #ffd700; color: #000; }
.badge-large { background: #0055b7; color: white; }
.route-stats { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
.stat-item { display: flex; align-items: center; gap: 15px; background: #f0f4fb; padding: 5px 20px; border-radius: 20px; }
.stat-icon { font-size: 2em; line-height: 1; }
.stat-value { font-weight: 600; font-size: 1.3em; line-height: 1.3; color: #0055b7; }
.stat-label { color: #5a6f84; line-height: 1; }
.price-badge { background: linear-gradient(135deg, #1b5cb8, #0a3c7a); color: white; padding: 5px 30px; border-radius: 60px; font-weight: 600; font-size: 1.5em; margin-left: auto; }
.loading { opacity: 0.5; position: relative; }
.loading::after { content: "..."; animation: loadingDotsSvatovo 1.5s infinite; }
@keyframes loadingDotsSvatovo { 0%,20% { content: "."; } 40% { content: ".."; } 60%,100% { content: "..."; } }

.tariff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin: 50px 0; }
.tariff-card { background: white; border-radius: 30px; padding: 30px 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); transition: all 0.2s; border: 1px solid #eef2f6;text-align: center; }
.tariff-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,80,200,0.1); }
.tariff-name { font-size: 1.8em; font-weight: 600; margin-bottom: 15px; color: #003b7a; }
.tariff-price { font-size: 2.2em; font-weight: 700; color: #1f2b3a; margin-bottom: 20px; }
.tariff-features { list-style: none; margin: 20px 0; color: #3f5067; }
.tariff-features li { padding: 8px 0; border-bottom: 1px dashed #dde3ed; display: flex; align-items: center; gap: 10px; }
.tariff-features li::before { content: "✓"; color: #17b45a; font-weight: 700; }
.btn-order { display: inline-block; background: #ffd83b; color: #1d2b3a; text-decoration: none; padding: 14px 35px; border-radius: 60px; font-weight: 600; font-size: 1.1em; transition: all 0.2s; border: none; cursor: pointer; box-shadow: 0 5px 15px rgba(255,216,59,0.3); }
.btn-order:hover { background: #ffcd1a; transform: scale(1.02); }

.city-info-section-svatovo { background: white; border-radius: 40px; padding: 50px 30px; margin: 50px 0; }
.city-title-svatovo { font-size: 2.2em; font-weight: 700; margin-bottom: 20px; color: #0b1a2a; }
.city-title-svatovo.bold-city { font-weight: 800; }
.city-title-svatovo.large-city { font-size: 2.5em; }
.city-subtitle-svatovo { font-size: 1.3em; color: #2c3e50; margin-bottom: 30px; font-weight: 400; }
.info-grid-svatovo { display: grid; gap: 25px; margin: 30px 0; }
.info-card-svatovo { background: #f0f4fb; border-radius: 25px; padding: 25px; transition: 0.2s; }
.info-card-svatovo:hover { background: #e8f0fe; }
.info-card-title-svatovo { font-size: 1.3em; font-weight: 600; color: #003b7a; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.info-card-content-svatovo { color: #2c3e50; line-height: 1.6; }
.info-list-svatovo { list-style: none; padding: 0; }
.info-list-svatovo li { padding: 8px 0; border-bottom: 1px solid #d0ddee; display: flex; align-items: center; gap: 10px; }
.info-list-svatovo li:last-child { border-bottom: none; }
.info-list-svatovo strong { color: #003b7a; min-width: 120px; }
.badge-svatovo { background: #0055b7; color: white; padding: 5px 15px; border-radius: 30px; font-size: 0.9em; display: inline-block; margin-right: 10px; }
.facts-grid-svatovo { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 20px 0; }
.fact-item-svatovo { background: linear-gradient(135deg, #f5f9ff, #eaf2ff); padding: 20px; border-radius: 20px; border-left: 5px solid #0055b7; }
.attraction-card-svatovo, .hotel-card-svatovo { background: white; border-radius: 20px; padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid #eef2f6; }
.features-grid-svatovo { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 30px; }
.feature-item-svatovo { display: flex; align-items: center; gap: 15px; font-size: 1.1em; }
.feature-icon-svatovo { font-size: 2.5em; }
.order-section-svatovo { background: white; border-radius: 40px; padding: 40px; margin: 50px 0; background: linear-gradient(135deg, #0b1e33 0%, #1a3a5c 100%); color: white; }
.form-row-svatovo { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 25px; }
.form-group-svatovo { flex: 1 1 200px; }
.form-control-svatovo { width: 100%; padding: 18px 25px; border: 2px solid #dbe1ec; border-radius: 60px; font-size: 1em; transition: 0.2s; }
.form-control-svatovo:focus { border-color: #0055b7; outline: none; }
.map-container-svatovo { height: 450px; border-radius: 40px; overflow: hidden; margin: 50px 0; background: #e9ecf0; z-index: 1; }
.cities-grid-svatovo { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; margin: 20px 0; }
.city-link-svatovo { display: block; padding: 12px 20px; background: #f0f4fb; border-radius: 30px; color: #1a2b3c; text-decoration: none; transition: all 0.2s; border: 1px solid #dde3ed; }
.city-link-svatovo:hover { background: #0055b7; color: white; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,85,183,0.2); }
.city-link-svatovo.bold-city { font-weight: 700; background: #ffd83b; color: #000; border-color: #e5c020; }
.city-link-svatovo.bold-city:hover { background: #e5c020; }
.city-link-svatovo.large-city { font-size: 1.1em; border-left: 5px solid #0055b7; }
.section-title-svatovo { font-size: 1.6em; margin: 40px 0 20px; color: #0b1a2a; display: flex; align-items: center; gap: 10px; }
.section-title-icon-svatovo { font-size: 1.5em; }
.city-tag-svatovo { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.8em; margin-left: 10px; background: #eef2f6; color: #5a6f84; }

/* ===== АДАПТИВНОСТЬ ДЛЯ НОВЫХ СТИЛЕЙ ===== */
@media (max-width: 900px) {
    .hero-svatovo .container { grid-template-columns: 1fr; }
    .contacts-grid-svatovo { grid-template-columns: 1fr; }
    .h1-svatovo { font-size: 2.2em; }
    .hero-features-svatovo { padding: 0; }
    .quick-order-svatovo { padding: 15px; }
    .advantages-grid-svatovo { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .routes-grid-svatovo { grid-template-columns: 1fr; }
    .route-header-svatovo { flex-direction: column; }
    .route-card-svatovo { padding: 10px; }
    .reviews-grid-svatovo { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .route-stats-svatovo { flex-direction: column; align-items: start; }
    .price-badge-svatovo { margin-left: 0; }
    .info-list-svatovo { padding: 0; }
    .city-info-section-svatovo, .features-section { padding: 50px 10px; }
    .order-section-svatovo .contacts-grid-svatovo { grid-template-columns: 1fr; }
    .route-stats { flex-direction: column; align-items: start; } 
    .price-badge { margin-left: 0; }
    .info-list {padding: 0;}
    .city-info-section, .features-section {padding: 50px 10px;}
    .contacts-grid { grid-template-columns: 1fr; }
}

.row-wrap-header {
    margin: 30px 0 10px;
}
.row-wrap-title {
    font-size: 22px;
    color: #0b1a2a;
    border-left: 5px solid #0055b7;
    padding-left: 10px;
    line-height: 1.3;
}

/* ===== ФУТЕР (без изменений) ===== */
.footer { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); color: #fff; position: relative; padding-top: 60px; margin-top: 80px; overflow: hidden; }
.footer__container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 992px) { .footer__top { grid-template-columns: 1fr; gap: 40px; } }
.footer__column--logo { display: flex; flex-direction: column; align-items: flex-start; }
.footer__logo { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; text-decoration: none; transition: opacity 0.3s; }
.footer__logo:hover { opacity: 0.9; }
.footer__logo img { width: 50px; height: 50px; border-radius: 10px; object-fit: cover; }
.footer__logo span { font-size: 24px; font-weight: 700; color: #fff; line-height: 1.2; }
.footer__descr { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; margin-bottom: 30px; max-width: 320px; }
.footer__social { display: flex; gap: 15px; list-style: none; margin: 0; padding: 0; }
.social__item a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 8px; transition: all 0.3s ease; }
.social__item a:hover { background: #007bff; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,123,255,0.3); }
.social__item img { width: 20px; height: 20px; }
.footer__menu { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 768px) { .footer__menu { grid-template-columns: 1fr; gap: 30px; } }
.menu-footer__col { display: flex; flex-direction: column; }
.menu-footer__label { display: flex; justify-content: space-between; align-items: center; margin: 0 0 20px 0; font-size: 18px; font-weight: 600; color: #fff; cursor: pointer; user-select: none; }
.menu-footer__arrow { display: none; transition: transform 0.3s ease; }
@media (max-width: 768px) { .menu-footer__arrow { display: block; } .menu-footer__col.active .menu-footer__arrow { transform: rotate(180deg); } }
.menu-footer__links { list-style: none; margin: 0; padding: 0; display: block; animation: slideDown 0.3s ease-out forwards; }
@media (max-width: 768px) { .menu-footer__links { display: none; } .menu-footer__col.active .menu-footer__links { display: block; } }
.menu-footer__link { margin-bottom: 12px; }
.menu-footer__link:last-child { margin-bottom: 0; }
.menu-footer__link a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 15px; line-height: 1.5; transition: all 0.3s; display: inline-block; }
.menu-footer__link a:hover { color: #fff; transform: translateX(5px); }
.footer__bottom { padding: 25px 0; background: rgba(0,0,0,0.2); }
.footer__inner-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
@media (max-width: 768px) { .footer__inner-bottom { flex-direction: column; align-items: flex-start; gap: 15px; } }
.footer__copyright { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer__policy { color: rgba(255,255,255,0.7); font-size: 14px; text-decoration: none; transition: color 0.3s; }
.footer__policy:hover { color: #fff; text-decoration: underline; }
.footer__contact-us { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer__contact-us a { color: #007bff; text-decoration: none; transition: color 0.3s; }
.footer__contact-us a:hover { color: #fff; text-decoration: underline; }
.footer__decor { position: absolute; bottom: 0; right: 0; opacity: 0.1; pointer-events: none; z-index: 1; max-width: 50%; }
@media (max-width: 768px) { .footer__decor { display: none; } }
@keyframes slideDown { from { opacity: 0; max-height: 0; transform: translateY(-10px); } to { opacity: 1; max-height: 500px; transform: translateY(0); } }
.menu-footer__link a::before { content: '→'; margin-right: 8px; opacity: 0; transition: opacity 0.3s, transform 0.3s; display: inline-block; }
.menu-footer__link a:hover::before { opacity: 1; transform: translateX(-3px); }
.footer__social .social__item:nth-child(1) a:hover { background: #0077ff; }
.footer__social .social__item:nth-child(2) a:hover { background: #0088cc; }
.footer__social .social__item:nth-child(3) a:hover { background: #25D366; }
.menu-footer__col:hover .menu-footer__label { color: #007bff; }
@media (max-width: 480px) {
    .footer { padding-top: 40px; margin-top: 60px; }
    .footer__top { padding-bottom: 30px; }
    .footer__logo { flex-direction: column; align-items: flex-start; gap: 10px; }
    .footer__logo span { font-size: 20px; }
    .footer__descr { font-size: 14px; }
    .menu-footer__label { font-size: 16px; margin-bottom: 15px; }
    .menu-footer__link a { font-size: 14px; }
    .footer__inner-bottom { font-size: 13px; }
}
@media (prefers-color-scheme: dark) {
    .footer { background: linear-gradient(135deg, #0d1117 0%, #161b22 100%); }
    .footer__bottom { background: rgba(0,0,0,0.3); }
}
@keyframes fadeInFooter { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.footer { animation: fadeInFooter 0.6s ease-out; }

/* ===== ОБЩИЕ КОМПОНЕНТЫ (без изменений) ===== */
.entry-header { background: #fff; padding: 30px; margin-bottom: 30px; border-radius: 8px; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.entry-title { font-size: 28px; margin-bottom: 20px; color: #2c3e50; }
.searchbar { margin: 20px 0; position: relative; }
.query { width: 100%; padding: 12px 20px; border: 2px solid #e9ecef; border-radius: 8px; font-size: 16px; transition: border-color 0.3s; }
.query:focus { outline: none; border-color: #007bff; }
.btn_submit { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); background: #007bff; color: white; border: none; padding: 10px 20px; border-radius: 6px; cursor: pointer; }
#content { margin-top: 20px; }

/* ===== КАРТА ===== */
#map { width: 100%; height: 400px; border-radius: 10px; margin: 20px 0; box-shadow: 0 3px 15px rgba(0,0,0,0.08); }

/* ===== УТИЛИТЫ ===== */
.clearfix::after { content: ""; display: table; clear: both; }
.text-muted { color: #6c757d !important; }
.text-center { text-align: center; }

.ya-share2 { margin: 20px 0 10px; }

/* ===== СТИЛИ ДЛЯ ЛОАДЕРА ===== */
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.loader { border: 3px solid #f3f3f3; border-top: 3px solid #007bff; border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; margin: 20px auto; }
.map-icon { vertical-align: middle; height: 18px; }
.fire-rout { margin-left: 5px; height: 16px; animation: pulse 1.5s infinite; }