/* ===== Базовый сброс ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ===== Hero-секция ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background-image: url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    pointer-events: none;
}
.hero-container {
    max-width: 1400px;
    width: 100%;
    padding: 20px 20px 0;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

/* ===== Блок заголовков вверху ===== */
.hero-header {
    text-align: center;
    color: #ffffff;
    width: 100%;
    padding-top: 10px;
}
.hero-header h1 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
}
.hero-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #7cb342;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* ===== Рамка (hero-frame) — внизу ===== */
.hero-frame {
    width: 100%;
    min-height: 387px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    border-radius: 900px 900px 0px 0px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: background 0.4s ease, transform 0.4s ease;
    margin-bottom: 0;
    border-bottom: 0;
    flex-shrink: 0;
}
.hero-frame:hover {
    background: rgba(255, 255, 255, 0.10);
}
.frame-content {
    text-align: center;
    color: #ffffff;
    max-width: 750px;
    width: 100%;
    padding: 10px 0;
}
.frame-content h3 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.frame-content h3 span {
    color: #7cb342;
}
.frame-content p {
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    font-weight: 400;
    opacity: 0.92;
    margin-bottom: 32px;
    line-height: 1.6;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}
.btn-primary {
    display: inline-block;
    padding: 22px 60px;
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    background: #7cb342;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 40px rgba(124, 179, 66, 0.5);
}
.btn-primary:hover {
    background: #9ccc65;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 56px rgba(124, 179, 66, 0.65);
}
.btn-primary:active {
    transform: translateY(0px) scale(0.97);
}

/* ===== Блок отзывов ===== */
.reviews-section {
    padding: 80px 20px;
    background: #f5f0eb;
    overflow: hidden;
}
.reviews-section>.container {
    max-width: 1140px;
    margin: 0 auto;
}
.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}
.reviews-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #2c2c2c;
}
.reviews-header .divider {
    width: 80px;
    height: 3px;
    background: #7cb342;
    margin: 16px auto 0;
    border-radius: 4px;
}

/* Scrub-контейнер */
#reviews-scrub {
    position: relative;
    width: 100%;
    overflow: visible;
}
#reviews-scrub .container {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#reviews-scrub .wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
#reviews-scrub .swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#reviews-scrub .swiper-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
#reviews-scrub .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#reviews-scrub .slide-inner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
}

/* Карточка отзыва — горизонтальная */
.review-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    text-align: left;
    min-height: 200px;
    transition: box-shadow 0.3s ease;
}
.review-card:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.10);
}
.review-image {
    width: 38%;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
    min-height: 200px;
    height: auto;
    background: #e8e0d8;
}
.review-content {
    width: 62%;
    padding: 22px 26px 26px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.review-tags {
    font-size: 0.75rem;
    font-weight: 500;
    color: #7cb342;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    line-height: 1.4;
}
.review-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}
.review-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 1rem;
    color: #f5b342;
    flex-wrap: wrap;
}
.review-stars .count {
    font-size: 0.75rem;
    font-weight: 400;
    color: #888;
    margin-left: 4px;
}
.review-comment {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #444;
    margin-top: 10px;
    font-style: italic;
    max-width: 100%;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
    .hero-header h1 {
        font-size: clamp(2.2rem, 5vw, 3.2rem);
    }
    .hero-header h2 {
        font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    }
    .hero-frame {
        min-height: 340px;
        padding: 35px 28px;
        border-radius: 600px 600px 0px 0px;
    }
    .frame-content h3 {
        font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    }
    .frame-content p {
        font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    }
    .btn-primary {
        padding: 18px 44px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 16px 16px 0;
        min-height: 100vh;
    }
    .hero-header {
        padding-top: 100px;
    }
    .hero-header h1 {
        font-size: clamp(1.8rem, 6.5vw, 2.6rem);
        margin-bottom: 6px;
    }
    .hero-header h2 {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
    .hero-frame {
        min-height: 500px;
        padding: 30px 18px;
        border-radius: 400px 400px 0px 0px;
        border-width: 1.5px;
    }
    .frame-content h3 {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 10px;
    }
    .frame-content p {
        font-size: clamp(0.9rem, 2.2vw, 1rem);
        margin-bottom: 24px;
    }
    .btn-primary {
        padding: 16px 36px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 340px;
    }
    /* отзывы */
    .reviews-section {
        padding: 60px 16px;
    }
    .reviews-header {
        margin-bottom: 14px;
    }
    #reviews-scrub .container {
        height: 700px;
    }
    .review-card {
        flex-direction: column;
        max-width: 420px;
        min-height: auto;
        border-radius: 20px;
    }
    .review-image {
        width: 100%;
        height: 200px;
        min-height: 180px;
    }
    .review-content {
        width: 100%;
        padding: 18px 20px 24px;
        text-align: center;
    }
    .review-stars {
        justify-content: center;
    }
    .review-comment {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-header h1 {
        font-size: 1.6rem;
    }
    .hero-header h2 {
        font-size: 1.2rem;
    }
    .hero-frame {
        min-height: 500px;
        padding: 24px 12px;
        border-radius: 300px 300px 0px 0px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
    .frame-content h3 {
        font-size: 1.35rem;
    }
    .frame-content p {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }
    .btn-primary {
        padding: 14px 28px;
        font-size: 0.95rem;
        max-width: 280px;
    }
    #reviews-scrub .container {
        height: 505px;
    }
    .review-image {
        height: 160px;
        min-height: 140px;
    }
    .review-content {
        padding: 14px 16px 20px;
    }
    .review-name {
        font-size: 0.95rem;
    }
    .review-comment {
        font-size: 0.85rem;
        margin-top: 8px;
    }
    .review-tags {
        font-size: 0.7rem;
    }
    .hero::before {
        background: rgba(0, 0, 0, 0.45);
    }
}

@media (max-width: 400px) {
    .hero-header h1 {
        font-size: 1.4rem;
    }
    .hero-header h2 {
        font-size: 1.1rem;
    }
    .hero-frame {
        min-height: 440px;
        padding: 24px 12px;
        border-radius: 300px 300px 0px 0px;
    }
    .frame-content h3 {
        font-size: 1.25rem;
    }
    .frame-content p {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    .btn-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
        max-width: 260px;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .hero-container {
        padding: 10px 20px 0;
        min-height: 100vh;
    }
    .hero-header h1 {
        font-size: clamp(1.4rem, 4vw, 2rem);
        margin-bottom: 4px;
    }
    .hero-header h2 {
        font-size: clamp(1rem, 2.5vw, 1.4rem);
    }
    .hero-frame {
        min-height: 200px;
        padding: 18px 20px;
        border-radius: 200px 200px 0px 0px;
    }
    .frame-content h3 {
        font-size: clamp(1.2rem, 3.5vw, 1.8rem);
        margin-bottom: 8px;
    }
    .frame-content p {
        font-size: clamp(0.75rem, 1.4vw, 0.95rem);
        margin-bottom: 14px;
    }
    .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Адаптив для горизонтальных карточек на планшетах */
@media (min-width: 769px) and (max-width: 1024px) {
    .review-card {
        max-width: 640px;
    }
    .review-image {
        width: 35%;
        min-height: 180px;
    }
    .review-content {
        width: 65%;
        padding: 18px 22px 22px 22px;
    }
    .review-comment {
        font-size: 0.88rem;
    }
}

/* ===== Секция сравнения ===== */
.comparison-section {
    padding: 80px 20px;
}

.comparison-section .container {
    max-width: 1140px;
    margin: 0 auto;
}

.comparison-header {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #2c2c2c;
}

.comparison-header .divider {
    width: 80px;
    height: 3px;
    background: #7cb342;
    margin: 16px auto 0;
    border-radius: 4px;
}

.comparison-header p {
    font-size: 1.1rem;
    color: #777;
    margin-top: 12px;
}

/* Слайдер */
.comparison-slider {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 20px;
}

#comparisonSlider {
    height: 400px;
    display: flex;
    overflow: hidden;
    position: relative;
    user-select: none;
    touch-action: none;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

#comparisonSlider .col {
    flex: 1;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    position: relative;
    touch-action: none;
}

#comparisonSlider .col-left {
    background: #e8f0fe;
}

#comparisonSlider .col-right {
    background: #fce8e6;
}

#comparisonSlider .track {
    display: block;
    will-change: transform;
}

#comparisonSlider .item {
    height: 400px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

#comparisonSlider .slide-content {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#comparisonSlider .slide-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: inherit;
}

#comparisonSlider .slide-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 12px;
}

#comparisonSlider .slide-content img {
    max-width: 80%;
    max-height: 60%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Кнопки управления */
#comparisonSlider .slider-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
    background: transparent;
    pointer-events: none;
}

#comparisonSlider .nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    flex-shrink: 0;
    pointer-events: auto;
}

#comparisonSlider .nav-btn:hover {
    background: #f8f9fa;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#comparisonSlider .nav-btn:active {
    transform: scale(0.95);
}

#comparisonSlider .nav-btn img {
    width: 28px;
    height: 28px;
    display: block;
    pointer-events: none;
}

/* ===== Адаптив для мобильных ===== */
@media (max-width: 768px) {
    .comparison-section .container {
        padding: 0;
        max-width: 100%;
    }

    .comparison-slider {
        padding: 0;
    }

    #comparisonSlider {
        border-radius: 0;
        height: 340px;
    }

    #comparisonSlider .item {
        height: 340px;
        padding: 16px;
    }

    #comparisonSlider .slide-content h3 {
        font-size: 1.3rem;
    }

    #comparisonSlider .slide-content p {
        font-size: 0.95rem;
    }

    #comparisonSlider .nav-btn {
        width: 48px;
        height: 48px;
        background: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none;
    }

    #comparisonSlider .nav-btn img {
        width: 32px;
        height: 32px;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    }

    #comparisonSlider .slider-controls {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    #comparisonSlider {
        height: 300px;
    }

    #comparisonSlider .item {
        height: 300px;
        padding: 12px;
    }

    #comparisonSlider .slide-content h3 {
        font-size: 1.1rem;
    }

    #comparisonSlider .slide-content p {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    #comparisonSlider .nav-btn {
        width: 40px;
        height: 40px;
    }

    #comparisonSlider .nav-btn img {
        width: 28px;
        height: 28px;
    }

    #comparisonSlider .slider-controls {
        gap: 10px;
    }
}

/* ===== КАРТА (map-section) ===== */
.map-section {
    padding: 80px 20px;
    background: #f5f0eb;
}

.map-section .container {
    max-width: 1140px;
    margin: 0 auto;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #2c2c2c;
}

.map-header .divider {
    width: 80px;
    height: 3px;
    background: #7cb342;
    margin: 16px auto 0;
    border-radius: 4px;
}

.map-header p {
    font-size: 1.1rem;
    color: #777;
    margin-top: 12px;
}

.map-container {
    background: #fff;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.map-container svg {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: #e9edf2;
    cursor: default;
}

.map-container .point {
    cursor: pointer;
    transition: r 0.2s;
}

.map-container .point:hover {
    r: 14;
    stroke-width: 3;
}

.map-container .point-start {
    cursor: default;
}

.map-container .tooltip-box {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    border-left: 5px solid #2e7d32;
    font-size: 14px;
    min-width: 160px;
    max-width: 280px;
    pointer-events: none;
    word-wrap: break-word;
}

.map-container .tooltip-box h4 {
    margin: 0 0 4px 0;
    color: #1e3c1f;
    font-weight: 600;
}

.map-container .tooltip-box p {
    margin: 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.map-container .tooltip-box .time-icon {
    font-size: 18px;
}

.map-container .route {
    stroke-linejoin: round;
    stroke-linecap: round;
    opacity: 0.9;
}

.map-container .route-animated {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawRoute 0.8s ease forwards;
}

@keyframes drawRoute {
    to {
        stroke-dashoffset: 0;
    }
}

/* Адаптив карты */
@media (max-width: 768px) {
    .map-section {
        padding: 60px 16px;
    }
    .map-header {
        margin-bottom: 28px;
    }
    .map-container {
        border-radius: 14px;
    }
    .map-container svg {
        border-radius: 8px;
    }
    .map-container .tooltip-box {
        font-size: 12px;
        min-width: 120px;
        max-width: 200px;
        padding: 10px 12px;
    }
    .map-container .tooltip-box h4 {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 40px 12px;
    }
    .map-container {
        border-radius: 10px;
    }
    .map-container svg {
        border-radius: 6px;
    }
    .map-container .tooltip-box {
        font-size: 11px;
        min-width: 100px;
        max-width: 160px;
        padding: 8px 10px;
    }
    .map-container .tooltip-box h4 {
        font-size: 12px;
    }
    .map-container .tooltip-box .time-icon {
        font-size: 14px;
    }
}

/* ===== Секция цен (split-prices) ===== */
.split-prices {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    background: #333;
    overflow: hidden;
}

.split-prices .container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.split-prices .split {
    position: absolute;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: width 0.8s ease-in-out;
}

.split-prices .split.left {
    left: 0;
    background: url('images/cottage-bg.jpg') center center / cover no-repeat;
}

.split-prices .split.left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(223, 39, 39, 0.7);
    z-index: 1;
    transition: background 0.8s ease;
}

.split-prices .split.right {
    right: 0;
    background: url('images/room-bg.jpg') center center / cover no-repeat;
}

.split-prices .split.right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(43, 43, 43, 0.8);
    z-index: 1;
    transition: background 0.8s ease;
}

.split-prices .split h3 {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    z-index: 2;
    white-space: nowrap;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
}

.split-prices.hover-left .left {
    width: 75%;
}

.split-prices.hover-left .right {
    width: 25%;
}

.split-prices.hover-left .right::before {
    z-index: 2;
}

.split-prices.hover-right .right {
    width: 75%;
}

.split-prices.hover-right .left {
    width: 25%;
}

.split-prices.hover-right .left::before {
    z-index: 2;
}

@media (max-width: 768px) {
    .split-prices {
        height: 70vh;
        min-height: 400px;
    }
    .split-prices .split h3 {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
        top: 15%;
    }
}

@media (max-width: 480px) {
    .split-prices {
        height: 60vh;
        min-height: 300px;
    }
    .split-prices .split h3 {
        font-size: 1.6rem;
        top: 12%;
    }
}

/* ===== Мобильная карта: увеличенные точки и плашка ===== */
@media (max-width: 768px) {
  .map-container .point {
    r: 20px !important;        /* вместо 12px */
    stroke-width: 4px !important;
  }
  .map-container .point-start {
    r: 26px !important;        /* вместо 14px */
    stroke-width: 4px !important;
  }
  .map-container .point-start + circle {
    r: 34px !important;        /* внешнее кольцо */
    stroke-width: 3px !important;
  }
  .map-container .tooltip-box {
    max-width: 320px;
    font-size: 18px;
    padding: 18px 22px;
    border-left-width: 8px;
  }
  .map-container .tooltip-box h4 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .map-container .tooltip-box p {
    font-size: 18px;
    gap: 10px;
  }
  .map-container .tooltip-box .time-icon {
    font-size: 24px;
  }
  .map-container text {
    font-size: 20px !important;  /* текст "Абхазский дворик" */
  }
  .map-container .route {
    stroke-width: 10px !important;
  }
  .map-container .route + circle { /* промежуточные точки */
    r: 8px !important;
  }
}

@media (max-width: 480px) {
  .map-container .point {
    r: 24px !important;
    stroke-width: 5px !important;
  }
  .map-container .point-start {
    r: 30px !important;
    stroke-width: 5px !important;
  }
  .map-container .point-start + circle {
    r: 40px !important;
  }
  .map-container .tooltip-box {
    max-width: 340px;
    font-size: 20px;
    padding: 20px 24px;
  }
  .map-container .tooltip-box h4 {
    font-size: 22px;
  }
  .map-container .tooltip-box p {
    font-size: 20px;
  }
  .map-container .tooltip-box .time-icon {
    font-size: 28px;
  }
  .map-container text {
    font-size: 22px !important;
  }
  .map-container .route {
    stroke-width: 12px !important;
  }
  .map-container .route + circle {
    r: 10px !important;
  }
}