body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #d0e8f6;
    color: #181818;
}

.main-header {
    background: #fff;
    box-shadow: 0 4px 24px rgba(44,116,160,0.07);
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 28px 28px 10px 28px;
    font-size: 1.07rem;
}

.header-contacts {
    flex: 1;
    color: #606060;
    font-size: 1rem;
    line-height: 1.5;
}
.header-contacts a {
    color: #2178b6;
    text-decoration: underline;
}

.header-logo img {
    width: 170px;
    height: auto;
    display: block;
}

.header-phones {
    text-align: right;
    font-size: 1.08rem;
}
.phones-list {
    margin-bottom: 3px;
}
.phones-list a {
    color: #181818;
    text-decoration: none;
    font-weight: 600;
    margin-left: 8px;
    transition: color 0.15s;
}
.phones-list a:hover {
    color: #127bc3;
}
.icon-wa, .icon-viber, .icon-tg {
    display: inline-block;
    width: 20px; height: 20px;
    vertical-align: middle;
    margin-right: 1px;
    background-size: contain;
}
.icon-wa { background-image: url('/img/ico-wa.webp'); }
.icon-viber { background-image: url('/img/ico-viber.webp'); }
.icon-tg { background-image: url('/img/ico-tg.webp'); }
.call-link {
    display: inline-block;
    margin-top: 6px;
    color: #2178b6;
    text-decoration: underline;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.13s;
}
.call-link:hover { color: #127bc3; }

.main-nav {
    background: #0890c3;
    box-shadow: 0 3px 8px rgba(30,130,200,0.06);
    margin-top: 14px;
}
.main-nav ul {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-nav li {
    margin: 0 18px;
}
.main-nav a {
    display: block;
    color: #fff;
    font-weight: 500;
    font-size: 1.18rem;
    text-decoration: none;
    padding: 16px 4px 15px 4px;
    transition: background 0.15s, color 0.13s;
    border-bottom: 2px solid transparent;
    border-radius: 2px 2px 0 0;
    letter-spacing: 0.02em;
}
.main-nav a.active,
.main-nav a:hover {
    background: #d0e8f6;
    color: #0890c3;
    border-bottom: 2.5px solid #0890c3;
}
.nav-btn {
    background: #fff;
    color: #0890c3 !important;
    border-radius: 3px;
    padding: 13px 27px !important;
    font-weight: 700;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(8,144,195,0.07);
    border-bottom: none !important;
    margin-left: 18px;
    transition: background 0.16s, color 0.14s;
}
.nav-btn:hover {
    background: #0890c3;
    color: #fff !important;
}
@media (max-width: 1100px) {
    .top-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 22px 16px 8px 16px;
    }
    .header-logo {
        align-self: center;
        margin: 6px 0 10px 0;
    }
    .header-phones {
        width: 100%;
        text-align: left;
        margin-top: 3px;
    }
}

@media (max-width: 800px) {
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 0 10px;
    }
    .main-nav li {
        margin: 0 9px 0 0;
    }
    .main-nav a,
    .nav-btn {
        font-size: 1.04rem;
        padding: 12px 2px 11px 2px;
    }
    .header-logo img {
        width: 125px;
    }
    .top-header {
        font-size: 0.99rem;
        padding: 15px 7px 5px 7px;
    }
}

@media (max-width: 570px) {
    .top-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px 2vw 4px 2vw;
        font-size: 0.92rem;
    }
    .header-logo img {
        width: 96px;
        margin: 0 auto;
    }
    .header-phones,
    .header-contacts {
        font-size: 0.93rem;
    }
    .phones-list a {
        font-size: 0.99rem;
        margin-left: 4px;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }
    .main-nav li {
        margin: 0;
        width: 100%;
    }
    .main-nav a, .nav-btn {
        padding: 11px 2px 10px 2px;
        border-radius: 0;
        font-size: 1.01rem;
        border-bottom: 1px solid #d0e8f6;
        text-align: left;
    }
    .nav-btn {
        margin-left: 0;
    }
}
.main-footer {
    background: #0890c3;
    color: #fff;
    padding: 0 0 0.5em 0;
    font-size: 1.04rem;
}

.footer-top {
    max-width: 1440px;
    margin: 0 auto;
    padding: 34px 26px 20px 26px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-logo img {
    width: 148px;
    height: auto;
    margin-bottom: 8px;
    display: block;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.13s;
}
.footer-nav a:hover {
    color: #d0e8f6;
    text-decoration: underline;
}

.footer-contacts {
    font-size: 0.98rem;
    line-height: 1.6;
}
.footer-contacts a {
    color: #d0e8f6;
    text-decoration: underline;
}

.footer-realty-hint {
    text-align: center;
    background: #eaf6fb;
    color: #186796;
    font-size: 1.08rem;
    padding: 16px 8px 16px 8px;
    margin: 0 auto 15px auto;
    border-radius: 7px;
    max-width: 700px;
    box-shadow: 0 2px 12px 0 rgba(44,116,160,0.08);
}
.footer-realty-hint .realty-link {
    color: #0890c3;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 3px;
}
.footer-realty-hint .realty-link:hover {
    color: #0b599b;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 15px 28px 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.97rem;
    gap: 15px;
    border-top: 1px solid #37b1e4;
}
.footer-copy {
    color: #fff;
    opacity: 0.87;
}
.footer-dev {
    color: #d0e8f6;
}
.footer-dev a {
    color: #d0e8f6;
    text-decoration: underline;
}
.footer-dev a:hover {
    color: #fff;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 28px;
    height: 28px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.83;
    transition: opacity 0.15s;
}
.footer-social a:hover { opacity: 1; }
.footer-vk { background-image: url('/img/vk.webp'); }
.footer-fb { background-image: url('/img/fb.webp'); }

@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 28px 12px 16px 12px;
    }
    .footer-logo img {
        width: 110px;
        margin-bottom: 7px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 10px 0 10px;
        font-size: 0.95rem;
        gap: 6px;
    }
}
@media (max-width: 550px) {
    .footer-top {
        padding: 17px 2vw 10px 2vw;
        gap: 9px;
        font-size: 0.94rem;
    }
    .footer-logo img {
        width: 82px;
    }
    .footer-realty-hint {
        padding: 10px 2vw 10px 2vw;
        font-size: 0.99rem;
    }
    .footer-bottom {
        font-size: 0.92rem;
    }
}
.hero {
    position: relative;
    background: linear-gradient(120deg, #eaf6fb 80%, #bee5f7 100%);
    padding: 48px 0 64px 0;
    text-align: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/img/hero-bg.webp') center/cover no-repeat;
    opacity: 0.16;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0890c3;
    margin-bottom: 28px;
    line-height: 1.16;
}
.hero h1 span {
    color: #222;
    font-size: 1.13em;
    font-weight: 500;
}
.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
    font-size: 1.1rem;
}
.hero-features div {
    background: #fff;
    color: #0890c3;
    padding: 9px 18px;
    border-radius: 21px;
    box-shadow: 0 1px 7px 0 rgba(44,116,160,0.11);
    font-weight: 500;
}
.hero-btn {
    background: #0890c3;
    color: #fff;
    padding: 15px 35px;
    border-radius: 4px;
    font-size: 1.14rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(8,144,195,0.09);
    display: inline-block;
    margin-top: 12px;
    transition: background 0.18s;
}
.hero-btn:hover {
    background: #0b599b;
}

.about {
    background: #fff;
    padding: 40px 0 30px 0;
}
.about h2 {
    text-align: center;
    color: #0890c3;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 22px;
}
.about-list {
    max-width: 680px;
    margin: 0 auto;
    padding: 0;
    list-style: disc inside;
    color: #1b3343;
    font-size: 1.08rem;
    line-height: 1.7;
}
.about-list li {
    margin-bottom: 10px;
}

.gallery-preview {
    background: #eaf6fb;
    padding: 38px 0 34px 0;
}
.gallery-preview h2 {
    color: #0890c3;
    text-align: center;
    margin-bottom: 22px;
    font-size: 1.97rem;
    font-weight: 600;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
    max-width: 980px;
    margin: 0 auto 18px auto;
}
.gallery-grid div {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px 0 rgba(44,116,160,0.08);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.gallery-link {
    display: block;
    text-align: right;
    margin-top: 8px;
    color: #0890c3;
    font-weight: 500;
    text-decoration: underline;
}
.gallery-link:hover {
    color: #0b599b;
}

.guest-reviews {
    background: #fff;
    padding: 38px 0 34px 0;
}
.guest-reviews h2 {
    color: #0890c3;
    text-align: center;
    margin-bottom: 22px;
    font-size: 1.97rem;
    font-weight: 600;
}
.reviews-list {
    display: flex;
    gap: 22px;
    justify-content: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.review {
    background: #eaf6fb;
    border-radius: 11px;
    box-shadow: 0 2px 10px 0 rgba(44,116,160,0.07);
    padding: 21px 22px;
    width: 295px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.review-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-bottom: 7px;
}
.review-name {
    font-weight: 600;
    margin-bottom: 4px;
    color: #2178b6;
}
.review-text {
    font-size: 1rem;
    color: #314a54;
}
.reviews-link {
    display: block;
    text-align: right;
    color: #0890c3;
    font-weight: 500;
    text-decoration: underline;
}
.reviews-link:hover {
    color: #0b599b;
}

.booking-form-section {
    background: #eaf6fb;
    padding: 42px 0 37px 0;
}
.booking-form-section h2 {
    text-align: center;
    color: #0890c3;
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 600;
}
.booking-form {
    background: #fff;
    max-width: 540px;
    margin: 0 auto;
    padding: 28px 25px 22px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px 0 rgba(44,116,160,0.10);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.booking-fields {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}
.booking-form input, .booking-form textarea {
    padding: 12px 13px;
    border: 1.2px solid #b7e2fa;
    border-radius: 6px;
    font-size: 1.06rem;
    outline: none;
    flex: 1 1 0px;
    background: #f6fcff;
    margin-bottom: 0;
    transition: border 0.14s;
}
.booking-form input:focus, .booking-form textarea:focus {
    border: 1.2px solid #0890c3;
}
.booking-fields input {
    flex: 1 1 0;
    min-width: 0; /* важно для flex! */
}
.booking-form textarea {
    resize: vertical;
    min-height: 50px;
    max-height: 150px;
    font-size: 1.06rem;
}
.booking-form button {
    background: #0890c3;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 0;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.18s;
}
.booking-form button:hover {
    background: #0b599b;
}
.booking-note {
    color: #1b3343;
    text-align: center;
    margin-top: 12px;
    font-size: 0.97rem;
    opacity: 0.85;
}

.main-realty-hint {
    background: #eaf6fb;
    color: #186796;
    text-align: center;
    font-size: 1.09rem;
    padding: 17px 6px 17px 6px;
    margin: 24px auto 18px auto;
    border-radius: 7px;
    max-width: 700px;
    box-shadow: 0 2px 12px 0 rgba(44,116,160,0.08);
}
.main-realty-hint a {
    color: #0890c3;
    font-weight: 600;
    text-decoration: underline;
}
.main-realty-hint a:hover {
    color: #0b599b;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-list {
        gap: 11px;
    }
}
@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.28rem;
        margin-bottom: 18px;
    }
    .hero-content {
        padding: 0 8px;
    }
    .hero-features {
        gap: 8px;
        font-size: 0.98rem;
        margin-bottom: 17px;
    }
    .hero-btn {
        font-size: 0.99rem;
        padding: 12px 18px;
        margin-top: 5px;
    }
    .about h2, .gallery-preview h2, .guest-reviews h2, .booking-form-section h2 {
        font-size: 1.22rem;
    }
    .gallery-grid {
        gap: 7px;
    }
    .about, .gallery-preview, .guest-reviews, .booking-form-section {
        padding: 23px 0 17px 0;
    }
    .booking-form {
        padding: 13px 5px 10px 5px;
    }
    .main-realty-hint {
        font-size: 0.99rem;
        padding: 11px 2vw 11px 2vw;
    }
    .review {
        padding: 11px 10px;
        width: 97%;
    }
    .booking-fields {
        flex-direction: column;
        gap: 6px;
    }
}
.prices-hero {
    background: #d0e8f6;
    padding: 38px 0 18px 0;
    text-align: center;
}
.prices-hero h1 {
    color: #0890c3;
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.02em;
}
.prices-hero h1 span {
    font-weight: 400;
    color: #222;
}

.room-list {
    background: #eaf6fb;
    padding: 45px 0 40px 0;
}
.room-card {
    background: #fff;
    display: flex;
    border-radius: 12px;
    box-shadow: 0 2px 18px 0 rgba(44,116,160,0.08);
    overflow: hidden;
    max-width: 960px;
    margin: 0 auto 34px auto;
}
.room-card-img {
    flex: 0 0 370px;
    min-width: 250px;
    max-width: 390px;
    background: #f3f8fb;
    display: flex;
    align-items: center;
    justify-content: center;
}
.room-card-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 0 0 0 0;
}
.room-card-info {
    flex: 1 1 0px;
    padding: 32px 30px 26px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.room-card-info h2 {
    font-size: 1.43rem;
    color: #0890c3;
    margin-bottom: 18px;
    margin-top: 0;
}
.room-card-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 12px;
}
.room-card-table td {
    padding: 7px 9px 7px 0;
    font-size: 1.05rem;
    color: #314a54;
    border: none;
}
.room-card-table tr:first-child td {
    border-top: none;
}
.room-card-desc {
    color: #1b3343;
    margin-bottom: 12px;
    font-size: 1.08rem;
    line-height: 1.6;
}
.room-card-price {
    color: #222;
    font-size: 1.14rem;
    font-weight: 500;
    margin-bottom: 17px;
}
.room-card-price span {
    font-size: 1.32em;
    color: #0890c3;
    font-weight: 700;
}
.room-card-btns {
    display: flex;
    gap: 13px;
}
.room-order-btn, .room-more-btn {
    display: inline-block;
    padding: 11px 25px;
    font-size: 1.03rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.16s, color 0.13s;
}
.room-order-btn {
    background: #0890c3;
    color: #fff;
    border: none;
}
.room-order-btn:hover {
    background: #0b599b;
}
.room-more-btn {
    background: #eaf6fb;
    color: #0890c3;
    border: 1.2px solid #0890c3;
}
.room-more-btn:hover {
    background: #d0e8f6;
    color: #0b599b;
}

@media (max-width: 900px) {
    .room-card {
        flex-direction: column;
        max-width: 98vw;
    }
    .room-card-img {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: 225px;
    }
    .room-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }
    .room-card-info {
        padding: 22px 13px 17px 13px;
    }
}
@media (max-width: 520px) {
    .prices-hero h1 {
        font-size: 1.23rem;
        padding: 0 7px;
    }
    .room-card-info h2 {
        font-size: 1.08rem;
        margin-bottom: 11px;
    }
    .room-card-desc {
        font-size: 0.96rem;
    }
    .room-card-table td {
        font-size: 0.95rem;
        padding: 4px 6px 4px 0;
    }
    .room-card-btns {
        flex-direction: column;
        gap: 6px;
    }
    .room-order-btn, .room-more-btn {
        width: 100%;
        padding: 10px 0;
        font-size: 0.99rem;
        text-align: center;
    }
    .room-card-img {
        height: 155px;
    }
}
.gallery-hero {
    background: #d0e8f6;
    padding: 36px 0 16px 0;
    text-align: center;
}
.gallery-hero h1 {
    color: #0890c3;
    font-size: 2.13rem;
    font-weight: 700;
    margin-bottom: 7px;
}
.gallery-hero-sub {
    color: #2178b6;
    font-size: 1.12rem;
    font-weight: 500;
    margin-bottom: 6px;
    opacity: 0.87;
}

.gallery-main {
    background: #eaf6fb;
    padding: 42px 0 40px 0;
}
.gallery-grid-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 19px;
    max-width: 1150px;
    margin: 0 auto;
}
.gallery-grid-main div {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px 0 rgba(44,116,160,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
}
.gallery-grid-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 950px) {
    .gallery-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 11px;
    }
}
@media (max-width: 600px) {
    .gallery-hero h1 {
        font-size: 1.19rem;
    }
    .gallery-hero-sub {
        font-size: 0.99rem;
    }
    .gallery-main {
        padding: 22px 0 17px 0;
    }
    .gallery-grid-main {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
.contacts-hero {
    background: #d0e8f6;
    padding: 36px 0 14px 0;
    text-align: center;
}
.contacts-hero h1 {
    color: #0890c3;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.contacts-hero-sub {
    color: #2178b6;
    font-size: 1.08rem;
    opacity: 0.88;
}

.contacts-main {
    background: #eaf6fb;
    padding: 40px 0 25px 0;
}
.contacts-flex {
    display: flex;
    gap: 38px;
    max-width: 1120px;
    margin: 0 auto;
    align-items: flex-start;
    flex-wrap: wrap;
}
.contacts-block {
    flex: 1 1 310px;
    min-width: 270px;
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 2px 11px 0 rgba(44,116,160,0.07);
    padding: 27px 30px 20px 28px;
    font-size: 1.05rem;
    color: #1b3343;
}
.contacts-title {
    color: #0890c3;
    font-weight: 600;
    margin-top: 13px;
    margin-bottom: 3px;
    font-size: 1.06rem;
}
.contacts-detail a {
    color: #2178b6;
    text-decoration: underline;
}
.contacts-phones a {
    color: #0890c3;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.09rem;
}
.contacts-phones a:hover {
    color: #0b599b;
    text-decoration: underline;
}
.contacts-messengers {
    margin: 10px 0 5px 0;
}
.icon-wa, .icon-viber, .icon-tg {
    display: inline-block;
    width: 22px; height: 22px;
    vertical-align: middle;
    margin-right: 3px;
    background-size: cover;
}
.icon-wa { background-image: url('/img/ico-wa.webp'); }
.icon-viber { background-image: url('/img/ico-viber.webp'); }
.icon-tg { background-image: url('/img/ico-tg.webp'); }

.contacts-map {
    flex: 1 1 340px;
    min-width: 280px;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 11px 0 rgba(44,116,160,0.09);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contacts-map iframe {
    width: 100%;
    min-height: 220px;
    border: none;
}

.contacts-form-section {
    background: #fff;
    padding: 38px 0 30px 0;
}
.contacts-form-section h2 {
    color: #0890c3;
    font-size: 1.35rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 19px;
}
.contacts-form {
    background: #eaf6fb;
    max-width: 550px;
    margin: 0 auto;
    padding: 26px 22px 20px 22px;
    border-radius: 12px;
    box-shadow: 0 2px 11px 0 rgba(44,116,160,0.07);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contacts-fields {
    display: flex;
    gap: 10px;
    margin-bottom: 6px;
}
.contacts-form input, .contacts-form textarea {
    padding: 11px 12px;
    border: 1.2px solid #b7e2fa;
    border-radius: 5px;
    font-size: 1.04rem;
    background: #fff;
    transition: border 0.14s;
    flex: 1 1 0;
    min-width: 0;
}
.contacts-form input:focus, .contacts-form textarea:focus {
    border: 1.2px solid #0890c3;
}
.contacts-form textarea {
    resize: vertical;
    min-height: 54px;
    max-height: 160px;
    font-size: 1.04rem;
}
.contacts-form button {
    background: #0890c3;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 14px 0;
    font-size: 1.07rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s;
}
.contacts-form button:hover {
    background: #0b599b;
}
.contacts-note {
    color: #314a54;
    text-align: center;
    margin-top: 8px;
    font-size: 0.99rem;
    opacity: 0.84;
}

@media (max-width: 900px) {
    .contacts-flex {
        flex-direction: column;
        gap: 20px;
        padding: 0 5vw;
    }
    .contacts-map {
        max-width: 100%;
        min-width: 0;
        margin: 0 auto;
    }
    .contacts-block {
        padding: 17px 12px 13px 12px;
    }
}
@media (max-width: 600px) {
    .contacts-hero h1 {
        font-size: 1.14rem;
    }
    .contacts-hero-sub {
        font-size: 0.98rem;
    }
    .contacts-form-section {
        padding: 18px 0 12px 0;
    }
    .contacts-form {
        padding: 10px 4vw 8px 4vw;
        font-size: 0.95rem;
    }
    .contacts-fields {
        flex-direction: column;
        gap: 7px;
    }
}
