@import "tailwindcss";

:root {
    --bg: #070c14;
    --bg2: #0a1019;
    --card: #101826;
    --card2: #0d1521;
    --border: #202d3e;
    --text: #f5f7fa;
    --muted: #8b9aad;
    --cyan: #13c8e8;
    --cyan-dark: #0b2b3a;
    --red: #ff3b43;
    --yellow: #ffd400;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    min-width: 320px;
    background:
        radial-gradient(circle at 65% 50%, rgba(0, 80, 110, .06), transparent 35%),
        var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
}

.site-container,
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section.alt {
    background: #080d15;
}

.muted {
    color: var(--muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 700;
}

.section-head {
    margin-bottom: 42px;
}

.section-head .eyebrow {
    margin-bottom: 10px;
}

.section-head h2 {
    color: #fff;
    font-size: 40px;
    line-height: 1.12;
    font-weight: 800;
}

.section-head p {
    max-width: 680px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 17px;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid #334052;
    border-radius: 11px;
    background: rgba(10, 16, 25, .7);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: .2s ease;
}

.btn:hover {
    border-color: #536174;
    background: #111a27;
    transform: translateY(-1px);
}

.btn.red {
    border-color: transparent;
    background: var(--red);
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 59, 67, .18);
}

.btn.red:hover {
    background: #ff4d55;
    box-shadow: 0 10px 30px rgba(255, 59, 67, .28);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(7, 12, 20, .97);
    border-bottom: 1px solid rgba(255, 255, 255, .055);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.caution-tape {
    width: 100%;
    height: 24px;
    overflow: hidden;
    background:
        repeating-linear-gradient(
            -45deg,
            #ffd000 0,
            #ffd000 24px,
            #111820 24px,
            #111820 48px,
            #f32c35 48px,
            #f32c35 72px
        );
    border-bottom: 1px solid rgba(0, 0, 0, .5);
}

.caution-track {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 72px;
    width: max-content;
    animation: tapeMove 28s linear infinite;
}

.caution-track span {
    display: block;
    color: #111;
    font-size: 10px;
    line-height: 24px;
    font-weight: 900;
    letter-spacing: 3px;
    white-space: nowrap;
    transform: skew(-12deg);
}

@keyframes tapeMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.header-main {
    width: 100%;
    height: 88px;
}

.header-inner {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    width: 220px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    display: block;
    width: 215px;
    height: auto;
    object-fit: contain;
}

.desktop-nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    margin-left: auto;
    margin-right: 46px;
}

.desktop-nav a {
    position: relative;
    color: #c6ccd5;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 35px 0;
    transition: color .2s ease;
}

.desktop-nav a:hover {
    color: #fff;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    height: 2px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.language-switcher {
    height: 42px;
    display: flex;
    align-items: stretch;
    background: #111a27;
    border: 1px solid rgba(255, 255, 255, .035);
}

.language-item {
    min-width: 48px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 10px;
    color: #94a0af;
    font-size: 13px;
    font-weight: 600;
    transition: background .2s ease, color .2s ease;
}

.language-item:hover {
    color: #fff;
    background: #182331;
}

.language-item.active {
    color: #fff;
    background: var(--cyan);
}

.language-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 14px;
    font-size: 15px;
    line-height: 1;
}

.header-book-btn {
    height: 42px;
    min-width: 126px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    background: var(--red);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(255, 59, 67, .18);
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.header-book-btn:hover {
    background: #ff4d55;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(255, 59, 67, .3);
}

.mobile-menu-button,
.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    min-height: calc(100vh - 112px);
    padding-top: 150px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.car-outline {
    position: absolute;
    width: 930px;
    height: 430px;
    right: -80px;
    top: 330px;
    opacity: .5;
}

.car-outline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 105px;
    width: 100%;
    height: 220px;
    border: 1px solid rgba(0, 150, 205, .14);
    border-radius: 48% 35% 20% 25%;
    transform: skewX(-18deg);
}

.car-outline::after {
    content: "";
    position: absolute;
    left: 135px;
    top: 190px;
    width: 770px;
    height: 1px;
    background: rgba(0, 150, 205, .12);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 70px;
    align-items: start;
}

.hero-content {
    padding-top: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 15px;
    border-radius: 22px;
    background: rgba(0, 100, 130, .14);
    border: 1px solid rgba(0, 210, 245, .3);
    color: var(--cyan);
    font-size: 14px;
    font-weight: 600;
}

.hero-badge span {
    font-size: 20px;
    line-height: 1;
}

.hero h1 {
    margin-top: 25px;
    width: 650px;
    color: #f7f8fa;
    font-size: 56px;
    line-height: .99;
    letter-spacing: -2px;
    font-weight: 800;
}

.hero h1 span {
    color: var(--cyan);
}

.hero-description {
    width: 560px;
    margin-top: 22px;
    color: #91a0b2;
    font-size: 19px;
    line-height: 1.43;
}

.hero-stats {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 135px 135px 190px 135px;
    gap: 12px;
}

.hero-stat {
    min-height: 78px;
    padding: 12px 16px 10px;
    background: rgba(16, 24, 38, .88);
    border: 1px solid #202d3e;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-stat strong {
    color: var(--cyan);
    font-size: 23px;
    line-height: 1;
    font-weight: 800;
}

.hero-stat span {
    margin-top: 7px;
    color: #617187;
    font-size: 13px;
    line-height: 1.1;
}

.hero-actions {
    margin-top: 31px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-btn {
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    padding: 0 22px;
    font-size: 16px;
    font-weight: 700;
    transition: .2s ease;
}

.hero-btn-primary {
    min-width: 171px;
    background: var(--cyan);
    color: #041017;
    box-shadow: 0 8px 22px rgba(0, 205, 235, .18);
}

.hero-btn-primary:hover {
    background: #25d7f2;
    transform: translateY(-1px);
}

.hero-btn-primary span {
    margin-right: 8px;
    font-size: 20px;
}

.hero-btn-secondary {
    min-width: 140px;
    border: 1px solid #334052;
    background: rgba(10, 16, 25, .7);
    color: #f3f5f7;
}

.hero-btn-secondary:hover {
    background: #111a27;
    border-color: #536174;
}

.hero-side {
    width: 450px;
    padding-top: 26px;
}

.reviews-card {
    width: 450px;
    min-height: 502px;
    padding: 24px 23px 21px;
    background: #111927;
    border: 1px solid #263244;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.reviews-top {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.google-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f5f6f8;
    font-size: 17px;
    font-weight: 600;
}

.google-g {
    font-size: 20px;
    font-weight: 800;
    color: #4285f4;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-rating span {
    color: #ffd400;
    font-size: 17px;
    letter-spacing: 2px;
}

.google-rating b {
    color: #f3f5f8;
    font-size: 14px;
}

.reviews-line {
    height: 1px;
    background: #253143;
    margin: 14px 0 7px;
}

.review-service {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.service-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #102d3b;
    color: var(--cyan);
    font-size: 21px;
}

.review-service > div:last-child {
    display: flex;
    flex-direction: column;
}

.review-service strong {
    color: #f4f6f8;
    font-size: 15px;
    font-weight: 700;
}

.review-service span {
    margin-top: 4px;
    color: #65758a;
    font-size: 13px;
}

.reviews-card .reviews-line:last-of-type {
    margin-top: 9px;
    margin-bottom: 14px;
}

.reviews-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.review-btn {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #334154;
    border-radius: 10px;
    color: #f3f5f8;
    font-size: 15px;
    font-weight: 700;
    background: rgba(12, 18, 28, .65);
    transition: .2s ease;
}

.review-btn:hover {
    border-color: #536276;
    background: #162131;
}

.review-btn-primary {
    border-color: transparent;
    background: #0c3042;
    color: var(--cyan);
}

.contact-buttons {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-btn {
    height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111927;
    border: 1px solid #202d3e;
    border-radius: 10px;
    color: #e6eaf0;
    font-size: 14px;
    font-weight: 600;
    transition: .2s ease;
}

.contact-btn:hover {
    background: #172232;
    border-color: #334258;
}

.telegram span {
    color: #08a9e7;
}

.whatsapp span {
    color: #00d978;
}

.viber span {
    color: #8b6cff;
}

.route span {
    color: #ff5960;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card {
    min-height: 220px;
    padding: 25px;
    border: 1px solid #202d3e;
    border-radius: 16px;
    background: #101722;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.card:hover {
    transform: translateY(-3px);
    border-color: #34465c;
    background: #121b28;
}

.card .icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #102d3b;
    color: var(--cyan);
    font-size: 21px;
}

.card h3 {
    color: #fff;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}

.card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.feature {
    min-height: 90px;
    padding: 17px;
    border: 1px solid #202d3e;
    border-radius: 13px;
    background: #101722;
}

.feature b {
    display: block;
    color: var(--cyan);
    font-size: 23px;
    line-height: 1.1;
}

.feature p {
    margin-top: 7px;
    color: #697990;
    font-size: 13px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    border: 1px solid #202d3e;
    border-radius: 15px;
    background: #101722;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .85));
}

.gallery-item figcaption b {
    color: #fff;
    font-size: 15px;
}

.gallery-item figcaption small {
    color: #a8b3c1;
    font-size: 12px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 25px;
}

.contact-card {
    padding: 20px;
    margin-bottom: 12px;
    border: 1px solid #202d3e;
    border-radius: 13px;
    background: #101722;
}

.contact-card h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.contact-card p {
    margin-top: 7px;
    font-size: 14px;
}

.contact-card a {
    color: var(--cyan);
}

.map {
    min-height: 450px;
    overflow: hidden;
    border: 1px solid #202d3e;
    border-radius: 15px;
    background: #101722;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: block;
    border: 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 25px;
}

.form-box {
    padding: 25px;
    border: 1px solid #202d3e;
    border-radius: 16px;
    background: #101722;
}

.form-box form {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.form-box input,
.form-box textarea,
.form-box select {
    width: 100%;
    border: 1px solid #29374a;
    border-radius: 10px;
    outline: none;
    background: #0b111b;
    color: #fff;
    padding: 13px 15px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-box input {
    min-height: 48px;
}

.form-box textarea {
    min-height: 130px;
    resize: vertical;
}

.form-box input:focus,
.form-box textarea:focus,
.form-box select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(19, 200, 232, .1);
}

.form-box input::placeholder,
.form-box textarea::placeholder {
    color: #627086;
}

.service-select {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.service-select label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 11px;
    border: 1px solid #253246;
    border-radius: 9px;
    background: #0c131e;
    color: #cbd4df;
    font-size: 13px;
    cursor: pointer;
}

.service-select input {
    width: auto;
    min-height: auto;
    accent-color: var(--cyan);
}

.notice {
    margin-bottom: 15px;
    padding: 13px 15px;
    border: 1px solid rgba(19, 200, 232, .3);
    border-radius: 10px;
    background: rgba(19, 200, 232, .07);
    color: #bcecf5;
    font-size: 14px;
}

.reviews-section {
    position: relative;
    width: 100%;
    padding: 96px 0 110px;
    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(19, 200, 232, .055),
            transparent 40%
        ),
        #080c14;
    overflow: hidden;
}

.reviews-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reviews-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    margin-bottom: 15px;
    color: var(--cyan);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
}

.reviews-header h2 {
    margin: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.8px;
}

.reviews-average {
    margin: 13px 0 0;
    color: #91a0b2;
    font-size: 16px;
    line-height: 1.45;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 9px;
}

.reviews-rating .stars {
    display: inline-flex;
    align-items: center;
    color: #ffd21a;
    font-size: 27px;
    line-height: 1;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 0 12px rgba(255, 210, 26, .1);
}

.reviews-rating strong {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
}

.reviews-count {
    margin-top: 9px;
    color: #667792;
    font-size: 13px;
    line-height: 1.4;
}

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    margin-top: 23px;
    padding: 0 23px;
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius: 11px;
    background: var(--red);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 750;
    box-shadow: 0 9px 25px rgba(255, 59, 67, .17);
    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.google-reviews-btn:hover {
    background: #ff4d55;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 59, 67, .25);
}

.google-reviews-btn span {
    font-size: 16px;
    line-height: 1;
}

.reviews-slider {
    position: relative;
    width: 100%;
    margin-top: 48px;
}

.reviews-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 4px 1px 8px;
}

.reviews-track {
    display: flex;
    align-items: stretch;
    gap: 18px;
    width: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform .55s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.review-card {
    position: relative;
    flex: 0 0 calc((100% - 36px) / 3);
    width: calc((100% - 36px) / 3);
    min-width: 0;
    min-height: 255px;
    padding: 23px 22px 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid #273243;
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(19, 200, 232, .025),
            transparent 48%
        ),
        #11161f;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    overflow: hidden;
    box-sizing: border-box;
    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(19, 200, 232, .65),
        transparent
    );
    opacity: 0;
    transition: opacity .25s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: #35465c;
    background:
        linear-gradient(
            145deg,
            rgba(19, 200, 232, .045),
            transparent 52%
        ),
        #121923;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .16);
}

.review-card:hover::before {
    opacity: 1;
}

.review-quote {
    width: 30px;
    height: 26px;
    margin-bottom: 11px;
    color: var(--cyan);
    font-size: 34px;
    line-height: 24px;
    font-weight: 800;
    flex: 0 0 auto;
}

.review-text {
    margin: 0;
    color: #e2e8f0;
    font-size: 15px;
    line-height: 1.58;
    font-weight: 400;
    overflow-wrap: anywhere;
    word-break: normal;
    flex: 1 1 auto;
}

.review-author {
    display: flex;
    flex-direction: column;
    margin-top: 21px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .055);
    flex: 0 0 auto;
}

.review-author strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.review-author span {
    margin-top: 4px;
    color: #667792;
    font-size: 12px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.reviews-arrow {
    position: absolute;
    top: 50%;
    z-index: 20;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #29374a;
    border-radius: 50%;
    background: linear-gradient(
        145deg,
        #151f2c,
        #0f1722
    );
    color: #fff;
    font-size: 27px;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        box-shadow .2s ease;
}

.reviews-arrow:hover {
    background: #172333;
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 8px 25px rgba(19, 200, 232, .12);
    transform: scale(1.07);
}

.reviews-arrow:active {
    transform: scale(.97);
}

.reviews-prev {
    left: -60px;
}

.reviews-next {
    right: -60px;
}

.reviews-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 22px;
}

.reviews-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #344154;
    cursor: pointer;
    transition:
        width .25s ease,
        background .25s ease,
        transform .2s ease;
}

.reviews-dots button:hover {
    background: #65748a;
}

.reviews-dots button.active {
    width: 23px;
    border-radius: 10px;
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(19, 200, 232, .22);
}

@media (max-width: 1240px) {
    .reviews-container {
        max-width: calc(100% - 100px);
    }

    .reviews-prev {
        left: -48px;
    }

    .reviews-next {
        right: -48px;
    }
}

@media (max-width: 1050px) {
    .reviews-container {
        max-width: calc(100% - 80px);
    }

    .reviews-prev {
        left: -42px;
    }

    .reviews-next {
        right: -42px;
    }
}

@media (max-width: 900px) {
    .review-card {
        flex: 0 0 calc((100% - 18px) / 2);
        width: calc((100% - 18px) / 2);
    }

    .reviews-prev {
        left: -45px;
    }

    .reviews-next {
        right: -45px;
    }

    .reviews-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 760px) {
    .reviews-section {
        padding: 72px 0 90px;
    }

    .reviews-container {
        max-width: calc(100% - 32px);
    }

    .reviews-header h2 {
        font-size: 32px;
    }

    .reviews-average {
        font-size: 15px;
    }

    .reviews-slider {
        margin-top: 38px;
    }

    .reviews-track {
        gap: 0;
    }

    .review-card {
        flex: 0 0 100%;
        width: 100%;
        min-height: 235px;
    }

    .reviews-prev {
        left: 8px;
    }

    .reviews-next {
        right: 8px;
    }

    .reviews-arrow {
        width: 38px;
        height: 38px;
        margin-top: -19px;
        font-size: 23px;
        background: rgba(17, 25, 35, .96);
    }
}

@media (max-width: 600px) {
    .reviews-header h2 {
        font-size: 28px;
        letter-spacing: -.4px;
    }

    .reviews-rating {
        gap: 9px;
    }

    .reviews-rating .stars {
        font-size: 24px;
        letter-spacing: 0;
    }

    .reviews-rating strong {
        font-size: 23px;
    }

    .google-reviews-btn {
        width: 100%;
        max-width: 360px;
        padding: 0 18px;
        font-size: 13px;
    }

    .review-card {
        padding: 21px 19px 19px;
    }

    .review-text {
        font-size: 14px;
        line-height: 1.55;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 62px 0 80px;
    }

    .reviews-container {
        max-width: calc(100% - 24px);
    }

    .reviews-header h2 {
        font-size: 25px;
    }

    .reviews-eyebrow {
        font-size: 12px;
    }

    .reviews-rating .stars {
        font-size: 22px;
    }

    .reviews-rating strong {
        font-size: 21px;
    }

    .reviews-count {
        font-size: 12px;
    }

    .review-card {
        min-height: 225px;
        padding: 19px 17px 17px;
    }

    .review-quote {
        font-size: 31px;
    }

    .review-text {
        font-size: 14px;
    }

    .reviews-arrow {
        width: 36px;
        height: 36px;
    }
}


@media (max-width: 1250px) {
    .reviews-container {
        max-width: calc(100% - 100px);
    }

    .reviews-prev {
        left: -45px;
    }

    .reviews-next {
        right: -45px;
    }
}

@media (max-width: 1200px) {
    .site-container,
    .container {
        max-width: 1040px;
    }

    .hero-container {
        grid-template-columns: minmax(0, 1fr) 430px;
        gap: 45px;
    }

    .hero h1 {
        width: auto;
        font-size: 52px;
    }

    .hero-description {
        width: auto;
        max-width: 550px;
    }

    .reviews-card,
    .hero-side {
        width: 430px;
    }

    .desktop-nav {
        margin-right: 25px;
        gap: 28px;
    }
}

@media (max-width: 1100px) {
    .reviews-container {
        max-width: calc(100% - 80px);
    }

    .reviews-prev {
        left: -42px;
    }

    .reviews-next {
        right: -42px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.4fr;
    }
}

@media (max-width: 1000px) {
    .site-container,
    .container {
        max-width: calc(100% - 48px);
    }

    .desktop-nav {
        gap: 20px;
        margin-right: 20px;
    }

    .desktop-nav a {
        font-size: 14px;
    }

    .language-item {
        min-width: 42px;
        padding: 0 7px;
    }

    .header-book-btn {
        min-width: 110px;
        padding: 0 15px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-side {
        width: 100%;
        max-width: 450px;
        margin-top: 40px;
    }

    .reviews-card {
        width: 100%;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .review-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }

    .reviews-prev {
        left: -45px;
    }

    .reviews-next {
        right: -45px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .header-main,
    .header-inner {
        height: 72px;
    }

    .site-logo {
        width: 170px;
    }

    .site-logo img {
        width: 170px;
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1px solid #263244;
        border-radius: 8px;
        background: #111927;
        color: #fff;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 96px;
        left: 0;
        right: 0;
        padding: 18px 24px 24px;
        background: #0a1019;
        border-bottom: 1px solid #202d3e;
    }

    body.menu-open .mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-menu > a:not(.header-book-btn) {
        padding: 14px 8px;
        color: #dce1e8;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
        font-size: 15px;
        font-weight: 600;
    }

    .mobile-languages {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        margin: 15px 0;
    }

    .mobile-languages a {
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: #111927;
        border: 1px solid #202d3e;
        color: #aeb8c5;
    }

    .mobile-languages a.active {
        background: var(--cyan);
        color: #041017;
    }

    .mobile-menu .header-book-btn {
        width: 100%;
        height: 46px;
    }

    .hero {
        padding-top: 112px;
    }

    .hero-content {
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1;
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stat-wide {
        width: auto;
    }

    .hero-side {
        width: 100%;
    }

    

    .section {
        padding: 75px 0;
    }

    .section-head h2 {
        font-size: 34px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 260px;
    }
}

@media (max-width: 600px) {
    .reviews-header {
        width: 100%;
    }

    .reviews-header h2 {
        font-size: 24px;
    }

    .reviews-rating .stars {
        font-size: 27px;
    }

    .google-reviews-btn {
        width: 100%;
        max-width: 360px;
        font-size: 14px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr 1fr;
    }

    .service-select {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .contact-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-container,
    .container {
        max-width: calc(100% - 32px);
    }

    .site-logo,
    .site-logo img {
        width: 150px;
    }

    .hero h1 {
        font-size: 35px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .hero-stat {
        min-height: 72px;
        padding: 10px 12px;
    }

    .hero-stat strong {
        font-size: 21px;
    }

    .hero-stat span {
        font-size: 12px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn {
        width: 100%;
    }

    .reviews-card {
        padding: 18px 16px;
    }

    .google-title {
        font-size: 15px;
    }

    .google-rating span {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .review-service {
        min-height: 70px;
    }

    .reviews-buttons {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .section-head h2 {
        font-size: 29px;
    }

    .section-head p {
        font-size: 15px;
    }

    .form-box {
        padding: 18px;
    }
}

.service-card {
    position: relative;
    cursor: pointer;
    min-height: 235px;
    overflow: hidden;
    user-select: none;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(19, 200, 232, .5);
    background: #121c2a;
    box-shadow: 0 16px 32px rgba(0,0,0,.2);
}

.service-card.selected {
    border-color: var(--cyan);
    background:
        linear-gradient(145deg, rgba(19,200,232,.12), rgba(16,23,34,.98) 58%),
        #101722;
    box-shadow: 0 0 0 1px rgba(19,200,232,.12), 0 16px 36px rgba(0,0,0,.22);
}

.service-card-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid #334052;
    border-radius: 50%;
    background: #0b111b;
    color: transparent;
    font-size: 15px;
    font-weight: 900;
    transition: .2s ease;
}

.service-card.selected .service-card-check {
    border-color: var(--cyan);
    background: var(--cyan);
    color: #071019;
}

.service-card:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}

.booking-services-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 2px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.booking-services-head b {
    min-width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(19,200,232,.12);
    color: var(--cyan);
    font-size: 12px;
}

.booking-service-option {
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.booking-service-option:has(input:checked) {
    border-color: rgba(19,200,232,.65);
    background: rgba(19,200,232,.08);
    color: #fff;
}

.booking-service-option:hover {
    border-color: #3c526b;
    transform: translateY(-1px);
}

.selected-services-box {
    padding: 14px;
    border: 1px solid #202d3e;
    border-radius: 12px;
    background: #0b111b;
}

.selected-services-empty {
    color: #66758a;
    font-size: 13px;
    line-height: 1.5;
}

.selected-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.selected-service-item {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    padding: 6px 10px;
    border: 1px solid rgba(19,200,232,.35);
    border-radius: 8px;
    background: rgba(19,200,232,.08);
    color: #dff8fc;
    text-align: left;
    font-size: 12px;
    line-height: 1.35;
}

.selected-service-item span {
    overflow-wrap: anywhere;
}

.selected-service-item b {
    color: var(--cyan);
    font-size: 17px;
    line-height: 1;
}

.site-footer {
    position: relative;
    padding: 62px 0 0;
    background: #050910;
    border-top: 1px solid #182332;
}

.footer-inner {
    width: min(1100px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(240px, 1.45fr) repeat(2, minmax(150px, .8fr)) minmax(180px, .9fr);
    gap: 42px;
    align-items: start;
}

.footer-brand {
    min-width: 0;
}

.footer-logo {
    display: inline-flex;
    width: 190px;
    margin-bottom: 18px;
}

.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-brand p {
    max-width: 340px;
    color: #738196;
    font-size: 13px;
    line-height: 1.7;
}

.footer-nav,
.footer-contact,
.footer-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-nav strong,
.footer-contact strong {
    margin-bottom: 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
    margin-bottom: 10px;
    color: #7e8da2;
    font-size: 13px;
    line-height: 1.45;
    transition: color .2s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--cyan);
}

.footer-action .btn {
    width: 100%;
    min-width: 170px;
}

.footer-bottom {
    width: min(1100px, calc(100% - 48px));
    margin: 42px auto 0;
    padding: 18px 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #182332;
    color: #4f5d70;
    font-size: 11px;
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    max-width: 760px;
}

.hero-description {
    max-width: 690px;
}

.hero-actions {
    margin-top: 30px;
}

.reviews-card {
    box-shadow: 0 22px 50px rgba(0,0,0,.28);
}

.reviews-track {
    transition-duration: .4s;
}

.review-card {
    box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

@media (max-width: 1000px) {
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-side {
        width: min(100%, 520px);
        margin: 0 auto;
    }

    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-container,
    .container {
        width: calc(100% - 32px);
        max-width: none;
    }

    .hero {
        padding-top: 125px;
        padding-bottom: 55px;
    }

    .hero h1 {
        font-size: clamp(32px, 9vw, 46px);
        line-height: 1.08;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.55;
    }

    .hero-stats {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .hero-stat {
        min-height: 82px;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        min-height: 205px;
    }

    .section {
        padding: 72px 0;
    }

    .section-head {
        margin-bottom: 30px;
        text-align: center;
    }

    .section-head h2 {
        font-size: 32px;
    }

    .section-head p {
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }

    .features,
    .contact-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 240px;
    }

    .map,
    .map iframe {
        min-height: 330px;
    }

    .form-box {
        padding: 18px;
    }

    .service-select {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        width: calc(100% - 32px);
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .footer-brand,
    .footer-action {
        grid-column: 1 / -1;
    }

    .footer-action .btn {
        width: 100%;
    }

    .footer-bottom {
        width: calc(100% - 32px);
        margin-top: 30px;
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .site-container,
    .container {
        width: calc(100% - 24px);
    }

    .hero {
        padding-top: 112px;
    }

    .hero-side {
        width: 100%;
    }

    .reviews-card {
        padding: 18px;
    }

    .contact-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-inner,
    .footer-bottom {
        width: calc(100% - 24px);
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-nav,
    .footer-contact,
    .footer-action {
        width: 100%;
    }

    .footer-nav a,
    .footer-contact a,
    .footer-contact span {
        margin-bottom: 8px;
    }

    .selected-services-box {
        padding: 12px;
    }
}

.site-container,
.container {
    width: min(1180px, calc(100% - 48px));
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.hero-container {
    grid-template-columns: minmax(0, 1fr) 480px;
    gap: 50px;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.hero-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 {
    width: 100%;
    max-width: 620px;
    overflow-wrap: normal;
    word-break: normal;
}

.hero-description {
    width: 100%;
    max-width: 590px;
}

.hero-stats {
    width: 100%;
    max-width: 650px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-side,
.reviews-card {
    width: 100%;
}

.reviews-card {
    max-width: 480px;
    margin-left: auto;
}

.section-head {
    width: 100%;
    text-align: center;
}

.section-head p {
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-grid > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.contact-grid > div:first-child > .btn {
    align-self: flex-start;
}

.site-footer {
    padding-top: 72px;
}

.footer-inner {
    width: min(1180px, calc(100% - 48px));
    max-width: 1180px;
    grid-template-columns: minmax(250px, 1.55fr) minmax(150px, .8fr) minmax(160px, .8fr) minmax(190px, 1fr) minmax(150px, .65fr);
    gap: 34px;
}

.footer-bottom {
    width: min(1180px, calc(100% - 48px));
    max-width: 1180px;
}

.footer-nav,
.footer-contact,
.footer-action {
    min-width: 0;
}

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: minmax(0, 1fr) 440px;
        gap: 36px;
    }

    .hero h1 {
        max-width: 600px;
        font-size: 52px;
    }

    .hero-stats {
        max-width: 620px;
    }

    .footer-inner {
        grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(140px, 1fr));
    }

    .footer-action {
        grid-column: 2 / -1;
        align-items: flex-start;
    }

    .footer-action .btn {
        width: auto;
    }
}

@media (max-width: 1000px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero h1,
    .hero-description,
    .hero-stats {
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        max-width: 760px;
    }

    .hero-description {
        max-width: 680px;
    }

    .hero-stats {
        max-width: 700px;
    }

    .hero-side {
        max-width: 480px;
        margin: 0 auto;
        padding-top: 0;
    }

    .reviews-card {
        max-width: 480px;
        margin: 0 auto;
    }

    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-action {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .site-container,
    .container,
    .footer-inner,
    .footer-bottom {
        width: calc(100% - 32px);
        max-width: none;
    }

    .hero {
        padding-top: 125px;
        padding-bottom: 64px;
    }

    .hero-container {
        width: 100%;
    }

    .hero-content {
        padding-top: 8px;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        max-width: 680px;
        font-size: clamp(34px, 8vw, 48px);
        line-height: 1.04;
        letter-spacing: -1.2px;
    }

    .hero-description {
        max-width: 620px;
        font-size: 16px;
    }

    .hero-stats {
        max-width: 620px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-actions {
        width: 100%;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-side {
        width: 100%;
        max-width: 520px;
    }

    .reviews-card {
        width: 100%;
        max-width: 520px;
        padding: 22px 18px 18px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .contact-grid > div:first-child > .btn {
        align-self: center;
        min-width: 190px;
    }

    .contact-card {
        width: 100%;
        text-align: left;
        padding: 20px 18px;
    }

    .map,
    .map iframe {
        min-height: 320px;
    }

    .section-head {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-brand,
    .footer-nav,
    .footer-contact,
    .footer-action {
        width: 100%;
        align-items: center;
        grid-column: auto;
    }

    .footer-logo {
        width: 180px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
        max-width: 420px;
    }

    .footer-nav strong,
    .footer-contact strong {
        margin-bottom: 12px;
    }

    .footer-nav a,
    .footer-contact a,
    .footer-contact span {
        margin-bottom: 8px;
    }

    .footer-action .btn {
        width: 100%;
        max-width: 360px;
    }

    .footer-bottom {
        margin-top: 36px;
        padding: 18px 0 22px;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-container,
    .container,
    .footer-inner,
    .footer-bottom {
        width: calc(100% - 24px);
    }

    .hero {
        padding-top: 112px;
        padding-bottom: 54px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: 34px;
        line-height: 1.06;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-stats {
        width: 100%;
        gap: 9px;
    }

    .hero-stat {
        min-width: 0;
        padding: 11px 10px;
    }

    .hero-stat strong {
        font-size: 22px;
    }

    .hero-stat span {
        font-size: 11px;
    }

    .reviews-card {
        border-radius: 14px;
        padding: 18px 14px 16px;
    }

    .reviews-top {
        gap: 8px;
    }

    .google-title {
        font-size: 15px;
    }

    .google-rating {
        gap: 6px;
    }

    .google-rating span {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .google-rating b {
        font-size: 13px;
    }

    .review-service {
        min-height: 70px;
        gap: 10px;
    }

    .service-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .review-service strong {
        font-size: 14px;
    }

    .review-service span {
        font-size: 12px;
    }

    .reviews-buttons {
        gap: 8px;
    }

    .review-btn {
        min-width: 0;
        font-size: 13px;
    }

    .contact-card {
        padding: 18px 16px;
        margin-bottom: 10px;
    }

    .contact-grid > div:first-child > .btn {
        width: 100%;
        max-width: 280px;
    }

    .map,
    .map iframe {
        min-height: 280px;
    }

    .site-footer {
        padding-top: 54px;
    }

    .footer-logo {
        width: 165px;
    }

    .footer-brand p {
        font-size: 12px;
        line-height: 1.6;
    }
}

.features {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.feature {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 26px 20px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(16,24,38,.96), rgba(13,21,33,.96));
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

.feature b,
.feature p {
    width: 100%;
    text-align: center;
}

.feature b {
    color: var(--cyan);
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.feature p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.selectable-services .service-card {
    text-align: center;
}

.selectable-services .service-card .icon {
    margin-left: auto;
    margin-right: auto;
}

.gallery-slider {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
}

.gallery-viewport {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 18px;
}

.gallery-track {
    display: flex;
    gap: 18px;
    will-change: transform;
}

.gallery-item {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card);
}

.gallery-image-button {
    position: relative;
    display: block;
    width: 100%;
    height: 300px;
    padding: 0;
    border: 0;
    background: #060a10;
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-image-button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease, opacity .25s ease;
}

.gallery-image-button:hover img {
    transform: scale(1.045);
}

.gallery-zoom-icon {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: rgba(5,10,16,.78);
    color: #fff;
    font-size: 23px;
    opacity: .9;
}

.gallery-item figcaption {
    min-height: 78px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 13px 14px 15px;
}

.gallery-item figcaption b {
    color: #fff;
    font-size: 15px;
    line-height: 1.3;
}

.gallery-item figcaption small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.gallery-arrow,
.image-lightbox-arrow {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #101826;
    color: #fff;
    font-size: 31px;
    line-height: 1;
    transition: .2s ease;
    z-index: 3;
}

.gallery-arrow:hover,
.image-lightbox-arrow:hover {
    border-color: var(--cyan);
    background: #122235;
    color: var(--cyan);
    transform: scale(1.04);
}

.gallery-hint {
    margin-top: 16px;
    color: var(--muted);
    text-align: center;
    font-size: 13px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
}

.gallery-dot,
.reviews-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #344155;
    transition: .2s ease;
}

.gallery-dot.active,
.reviews-dots button.active {
    width: 22px;
    border-radius: 999px;
    background: var(--cyan);
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 80px;
    background: rgba(3,7,12,.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}

.image-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.image-lightbox-content {
    position: relative;
    width: min(1500px, 100%);
    height: min(92vh, 900px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-lightbox img {
    display: block;
    max-width: 100%;
    max-height: calc(100% - 55px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 90px rgba(0,0,0,.65);
    user-select: none;
}

.image-lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(15,22,32,.9);
    color: #fff;
    font-size: 31px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
}

.image-lightbox-close:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.image-lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15,22,32,.88);
}

.image-lightbox-arrow:hover {
    transform: translateY(-50%) scale(1.04);
}

.image-lightbox-prev { left: 22px; }
.image-lightbox-next { right: 22px; }

.image-lightbox-caption {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(700px, 80%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(6,11,18,.78);
    backdrop-filter: blur(8px);
}

.image-lightbox-caption strong {
    color: #fff;
    font-size: 15px;
}

.image-lightbox-caption span {
    color: var(--muted);
    font-size: 12px;
}

.image-lightbox-caption small {
    color: #c8d2df;
    font-size: 11px;
}

body.lightbox-open {
    overflow: hidden;
}

.contact-card p,
.contact-card a,
.footer-contact a {
    font-variant-numeric: tabular-nums;
    letter-spacing: .1px;
}

@media (max-width: 1000px) {
    .features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 720px;
    }

    .gallery-item {
        flex-basis: calc((100% - 18px) / 2);
    }

    .gallery-image-button {
        height: 280px;
    }
}

@media (max-width: 650px) {
    .features {
        grid-template-columns: 1fr;
        max-width: 430px;
        gap: 12px;
    }

    .feature {
        min-height: 128px;
        padding: 22px 18px;
    }

    .feature b {
        font-size: 19px;
    }

    .gallery-slider {
        gap: 7px;
    }

    .gallery-item {
        flex-basis: 100%;
    }

    .gallery-image-button {
        height: min(68vw, 330px);
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 27px;
    }

    .image-lightbox {
        padding: 18px 12px 76px;
    }

    .image-lightbox-content {
        height: 100%;
    }

    .image-lightbox img {
        max-width: 100%;
        max-height: calc(100% - 70px);
        border-radius: 5px;
    }

    .image-lightbox-close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
        font-size: 27px;
    }

    .image-lightbox-arrow {
        position: absolute;
        top: auto;
        bottom: 10px;
        width: 42px;
        height: 42px;
        transform: none;
        font-size: 27px;
    }

    .image-lightbox-arrow:hover {
        transform: scale(1.04);
    }

    .image-lightbox-prev { left: 18px; }
    .image-lightbox-next { right: 18px; }

    .image-lightbox-caption {
        bottom: 10px;
        width: calc(100% - 120px);
        padding: 6px 8px;
    }

    .image-lightbox-caption span {
        display: none;
    }
}

/* FINAL HEADER / HERO POSITIONING FIX */

.site-header {
    top: 0;
    z-index: 1000;
}

.header-main,
.header-inner {
    height: 78px;
}

.header-inner {
    display: flex;
    align-items: center;
}

.caution-tape {
    height: 24px;
}

.site-logo {
    width: 205px;
}

.site-logo img {
    width: 200px;
}

.desktop-nav {
    gap: 30px;
    margin-right: 28px;
}

.desktop-nav a {
    padding-top: 30px;
    padding-bottom: 30px;
}

.header-actions {
    gap: 10px;
}

.language-switcher {
    height: 42px;
    border-radius: 10px;
    overflow: hidden;
}

.header-book-btn {
    height: 42px;
    border-radius: 11px;
}

/* Main hero is intentionally closer to the header */
.hero {
    padding-top: 118px;
}

.hero-content {
    padding-top: 8px;
}

.hero-side {
    padding-top: 14px;
}

/* Keep the two main hero columns aligned */
.hero-container {
    align-items: start;
}

.hero h1 {
    margin-top: 21px;
}

/* Desktop/tablet header */
@media (max-width: 1200px) {
    .header-main,
    .header-inner {
        height: 78px;
    }

    .site-logo,
    .site-logo img {
        width: 190px;
    }

    .desktop-nav {
        gap: 22px;
        margin-right: 18px;
    }

    .hero {
        padding-top: 112px;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .caution-tape {
        height: 22px;
    }

    .header-main,
    .header-inner {
        height: 64px;
    }

    .site-container,
    .container {
        width: calc(100% - 28px);
    }

    .site-logo,
    .site-logo img {
        width: 150px;
    }

    .mobile-menu-button {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .mobile-menu {
        top: 86px;
    }

    .hero {
        padding-top: 94px;
        padding-bottom: 52px;
    }

    .hero-content {
        padding-top: 4px;
    }

    .hero-side {
        padding-top: 0;
        margin-top: 28px;
    }

    .hero h1 {
        margin-top: 18px;
    }
}

@media (max-width: 480px) {
    .site-container,
    .container {
        width: calc(100% - 24px);
    }

    .site-logo,
    .site-logo img {
        width: 145px;
    }

    .hero {
        padding-top: 88px;
    }

    .hero-side {
        margin-top: 24px;
    }
}

.header-actions .btn,
.header-actions .btn *,
.header-actions .btn span,
.header-actions .btn svg,
.header-actions .btn i {
    color: #fff !important;
    fill: #fff !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-shrink: 0 !important;
}

.header-actions > .btn {
    min-height: 42px !important;
    height: 42px !important;
    border-radius: 11px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    padding: 0 20px !important;
    white-space: nowrap !important;
}

.header-actions > .btn:not(.header-book-btn) {
    background: #16a34a !important;
    border: 1px solid #16a34a !important;
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(22,163,74,.18) !important;
}

.header-actions > .btn:not(.header-book-btn):hover {
    background: #15803d !important;
    border-color: #15803d !important;
    color: #fff !important;
}

.header-actions > .btn:not(.header-book-btn) *,
.header-actions > .btn:not(.header-book-btn) span,
.header-actions > .btn:not(.header-book-btn) svg,
.header-actions > .btn:not(.header-book-btn) i {
    color: #fff !important;
    fill: #fff !important;
}

.header-actions .header-book-btn,
.header-actions .header-book-btn *,
.header-actions .header-book-btn span,
.header-actions .header-book-btn svg,
.header-actions .header-book-btn i {
    color: #fff !important;
    fill: #fff !important;
}

.header-actions .header-book-btn {
    min-width: 145px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 20px !important;
    border-radius: 11px !important;
    background: #ff3b43 !important;
    border: 1px solid #ff3b43 !important;
    color: #fff !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    white-space: nowrap !important;
    box-shadow: 0 8px 22px rgba(255,59,67,.18) !important;
}

.header-actions .header-book-btn:hover {
    background: #df2933 !important;
    border-color: #df2933 !important;
    color: #fff !important;
}

.header-actions .header-book-btn:hover *,
.header-actions .header-book-btn:hover span,
.header-actions .header-book-btn:hover svg,
.header-actions .header-book-btn:hover i {
    color: #fff !important;
    fill: #fff !important;
}

.header-actions .btn svg,
.header-actions .btn i {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    fill: #fff !important;
}

.hero-actions .hero-btn,
.hero-actions .hero-btn *,
.hero-actions .hero-btn span,
.hero-actions .hero-btn svg,
.hero-actions .hero-btn i {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.hero-actions .hero-btn-primary {
    color: #fff !important;
    background: #13c8e8 !important;
    border-color: #13c8e8 !important;
}

.hero-actions .hero-btn-primary *,
.hero-actions .hero-btn-primary span,
.hero-actions .hero-btn-primary svg,
.hero-actions .hero-btn-primary i {
    color: #fff !important;
    fill: #fff !important;
}

.hero-actions .hero-btn-primary:hover {
    color: #fff !important;
    background: #19b9d6 !important;
    border-color: #19b9d6 !important;
}

.hero-actions .hero-btn-secondary {
    color: #fff !important;
}

.hero-actions .hero-btn-secondary *,
.hero-actions .hero-btn-secondary span,
.hero-actions .hero-btn-secondary svg,
.hero-actions .hero-btn-secondary i {
    color: #fff !important;
    fill: #fff !important;
}

@media (min-width: 1201px) {
    .header-main,
    .header-inner {
        height: 72px !important;
    }

    .site-logo {
        width: 200px !important;
    }

    .site-logo img {
        width: 195px !important;
    }

    .desktop-nav {
        gap: 28px !important;
        margin-right: 24px !important;
    }

    .desktop-nav a {
        padding-top: 26px !important;
        padding-bottom: 26px !important;
    }

    .hero {
        padding-top: 98px !important;
    }

    .hero-content {
        padding-top: 0 !important;
    }

    .hero-side {
        padding-top: 0 !important;
    }

    .hero h1 {
        margin-top: 16px !important;
    }
}

@media (max-width: 1200px) and (min-width: 761px) {
    .header-main,
    .header-inner {
        height: 72px !important;
    }

    .hero {
        padding-top: 96px !important;
    }

    .site-logo,
    .site-logo img {
        width: 185px !important;
    }

    .desktop-nav {
        gap: 20px !important;
        margin-right: 16px !important;
    }

    .header-actions {
        gap: 8px !important;
    }

    .header-actions > .btn {
        padding: 0 16px !important;
    }
}

@media (max-width: 760px) {
    .header-main,
    .header-inner {
        height: 62px !important;
    }

    .caution-tape {
        height: 22px !important;
    }

    .hero {
        padding-top: 82px !important;
    }

    .hero-content {
        padding-top: 0 !important;
    }

    .hero-side {
        padding-top: 0 !important;
        margin-top: 24px !important;
    }

    .hero h1 {
        margin-top: 16px !important;
    }

    .header-actions {
        gap: 8px !important;
    }

    .header-actions > .btn {
        min-height: 42px !important;
        height: 42px !important;
        padding: 0 16px !important;
        font-size: 15px !important;
    }

    .header-actions .header-book-btn {
        min-width: 0 !important;
        padding: 0 16px !important;
        font-size: 15px !important;
    }

    .hero-actions {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    .hero-actions .hero-btn {
        width: 100% !important;
        min-width: 0 !important;
        height: 48px !important;
        min-height: 48px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 78px !important;
    }

    .header-main,
    .header-inner {
        height: 60px !important;
    }

    .header-actions > .btn {
        font-size: 14px !important;
        padding: 0 13px !important;
    }

    .hero-actions .hero-btn {
        font-size: 16px !important;
    }
}



/* Final responsive reviews-card fix */
.reviews-card {
    box-sizing: border-box !important;
}

.reviews-top {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: left !important;
    gap: 12px !important;
}

.google-title {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    white-space: nowrap !important;
}

.google-rating {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

.review-service {
    width: 100% !important;
    min-height: 76px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    text-align: left !important;
}

.service-icon {
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
}

.review-service > div:last-child {
    min-width: 0 !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    text-align: left !important;
}

.review-service strong,
.review-service span {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
}

.review-service strong {
    line-height: 1.25 !important;
}

.review-service span {
    line-height: 1.35 !important;
}

.reviews-buttons {
    width: 100% !important;
}

@media (max-width: 760px) {
    .hero-side {
        width: 100% !important;
        max-width: none !important;
    }

    .reviews-card {
        width: 100% !important;
        min-height: 0 !important;
        padding: 18px 14px 16px !important;
        border-radius: 15px !important;
    }

    .reviews-top {
        min-height: 34px !important;
        gap: 8px !important;
    }

    .google-title {
        font-size: 15px !important;
        gap: 7px !important;
    }

    .google-g {
        font-size: 19px !important;
    }

    .google-rating {
        gap: 7px !important;
    }

    .google-rating span {
        font-size: 13px !important;
        letter-spacing: 1px !important;
    }

    .google-rating b {
        font-size: 12px !important;
    }

    .review-service {
        min-height: 68px !important;
        gap: 14px !important;
    }

    .service-icon {
        flex-basis: 38px !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 19px !important;
    }

    .review-service strong {
        font-size: 14px !important;
    }

    .review-service span {
        margin-top: 3px !important;
        font-size: 11px !important;
    }

    .reviews-buttons {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .review-btn {
        width: 100% !important;
        height: 44px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .reviews-card {
        padding: 16px 11px 14px !important;
    }

    .reviews-top {
        gap: 5px !important;
    }

    .google-title {
        font-size: 14px !important;
    }

    .google-rating span {
        font-size: 11px !important;
    }

    .google-rating b {
        font-size: 11px !important;
    }

    .review-service {
        min-height: 64px !important;
        gap: 12px !important;
    }

    .service-icon {
        flex-basis: 36px !important;
        width: 36px !important;
        height: 36px !important;
    }

    .review-service strong {
        font-size: 13px !important;
    }

    .review-service span {
        font-size: 10px !important;
    }
}
