:root {
    --header-bg: #1a2d78;
    --footer-bg: #0f1c19;
    --text-dark: #101010;
    --text-muted: #6f796c;
    --page-gray: #f1f1f1;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--text-dark);
    background: #ffffff;
}

.site-header {
    background: var(--header-bg);
    border-top: 1px solid #e2e2e2;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header__inner,
.site-footer__inner {
    width: min(1520px, 92%);
    margin: 0 auto;
}

.site-header__inner {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 28px;
    position: relative;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo-image {
    width: clamp(88px, 8vw, 128px);
    height: auto;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 2.1vw, 46px);
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 1 1 auto;
}

.site-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: clamp(23px, 1.35vw, 30px);
    line-height: 1;
    font-weight: 400;
}

.site-nav a:hover {
    color: #eef7ff;
    text-decoration: underline;
}

.site-header__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.16);
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
    padding: 0;
}

.site-header__toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .site-header__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .site-header__toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .site-header__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1200px) {
    .site-logo-image {
        width: clamp(82px, 12vw, 112px);
    }

    .site-nav a {
        font-size: clamp(16px, 1.45vw, 20px);
    }
}

@media (max-width: 1024px) {
    body.nav-open {
        overflow: hidden;
    }

    .site-header__inner {
        min-height: auto;
        align-items: center;
        padding: 14px 0;
        gap: 14px;
    }

    .site-logo-image {
        width: clamp(76px, 20vw, 96px);
    }

    .site-header__toggle {
        display: inline-flex;
        margin-left: auto;
        border-color: rgba(255, 255, 255, 0.4);
        background: rgba(255, 255, 255, 0.16);
    }

    .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 6px);
        background: #1a2d78;
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 12px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.25s ease, opacity 0.2s ease;
    }

    .site-nav.is-open {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav a {
        font-size: 16px;
        line-height: 1.2;
        padding: 10px 12px;
        border-radius: 8px;
    }

    .site-nav a:hover {
        background: rgba(255, 255, 255, 0.12);
        text-decoration: none;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    margin: 0;
    height: 100vh;
    height: 100svh;
    min-height: 560px;
    overflow: hidden;
    border-radius: 0;
    background: #f5f8fd;
}

.hero-slider__track {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transform: scale(1.08);
    animation: heroPan 11s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroPan {
    0% {
        transform: scale(1.08) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1.14) translate3d(-1.5%, -1%, 0);
    }

    100% {
        transform: scale(1.1) translate3d(1.5%, 1%, 0);
    }
}

.overview-section {
    background: var(--page-gray);
    padding: 58px 0 46px;
}

.overview-section__container {
    width: min(1060px, 92%);
    margin: 0 auto;
}

.overview-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 32px;
    margin-bottom: 72px;
}

.overview-row:last-child {
    margin-bottom: 0;
}

.overview-row__content h2 {
    margin: 0 0 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(38px, 2.35vw, 54px);
    line-height: 1.05;
    color: #08131e;
}

.overview-row__content p {
    margin: 0 0 14px;
    color: #4d5760;
    font-size: clamp(17px, 1.02vw, 22px);
    line-height: 1.8;
}

.overview-row__content p:last-child {
    margin-bottom: 0;
}

.overview-row__media img {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.site-footer {
    background: var(--footer-bg);
}

.site-footer__inner {
    width: min(1520px, 92%);
    min-height: 320px;
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(160px, 1fr)) minmax(260px, 1.3fr);
    gap: 42px;
    align-items: start;
    padding: 78px 0 64px;
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.site-footer__logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-footer__logo {
    width: min(250px, 100%);
    height: auto;
    display: block;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.site-footer__social a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-footer__social a:hover {
    transform: translateY(-2px);
    border-color: rgba(204, 161, 86, 0.55);
    background: rgba(255, 255, 255, 0.03);
}

.site-footer__column h3 {
    margin: 0 0 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(26px, 1.8vw, 38px);
    line-height: 1.2;
    color: #ffffff;
}

.site-footer__column a,
.site-footer__column p {
    margin: 0;
    color: #a9a9a9;
    font-size: clamp(17px, 1vw, 28px);
    line-height: 1.9;
    text-decoration: none;
}

.site-footer__column a {
    display: block;
    margin-bottom: 12px;
}

.site-footer__column a:hover {
    color: #ffffff;
}

.site-footer__column p {
    margin-bottom: 22px;
}

.site-footer__column p strong {
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(18px, 1vw, 24px);
    font-weight: 700;
    line-height: 1.6;
}

.site-footer__column--contact a {
    display: inline;
    margin: 0;
}

@media (max-width: 980px) {
    .site-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: auto;
        gap: 32px;
        padding: 54px 0 46px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 42px 0 36px;
    }

    .site-footer__logo {
        width: min(210px, 70%);
    }

    .site-footer__social a {
        width: 52px;
        height: 52px;
    }

    .site-footer__column h3 {
        margin-bottom: 16px;
    }
}

@media (max-width: 900px) {
    .overview-row,
    .overview-row--reverse {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 44px;
    }

    .overview-row__media {
        order: -1;
    }

    .overview-row__content h2 {
        font-size: clamp(32px, 8vw, 44px);
    }

    .overview-row__content p {
        font-size: 16px;
        line-height: 1.65;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        margin: 0;
        border-radius: 0;
        min-height: 420px;
    }

}

.key-features {
    background: var(--page-gray);
    padding: 8px 0 62px;
}

.key-features__container {
    width: min(1060px, 92%);
    margin: 0 auto;
}

.key-features h2 {
    margin: 0 0 30px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 2.6vw, 56px);
    line-height: 1.1;
    color: #0b1620;
}

.key-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 38px;
    row-gap: 20px;
}

.key-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.key-feature-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #dde5dd;
    flex-shrink: 0;
    position: relative;
}

.key-feature-item__icon::after {
    content: "\2713";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #57ae56;
    color: #ffffff;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    font-weight: 700;
}

.key-feature-item p {
    margin: 0;
    color: #111a23;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(16px, 1.05vw, 23px);
    line-height: 1.2;
    font-weight: 600;
}

@media (max-width: 900px) {
    .key-features {
        padding-bottom: 44px;
    }

    .key-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 24px;
    }
}

@media (max-width: 640px) {
    .key-features h2 {
        font-size: clamp(32px, 9vw, 44px);
    }

    .key-features__grid {
        grid-template-columns: 1fr;
        row-gap: 14px;
    }

    .key-feature-item__icon {
        width: 40px;
        height: 40px;
    }

    .key-feature-item p {
        font-size: 16px;
    }
}

.location-section {
    background: var(--page-gray);
}

.location-section__bg {
    min-height: 370px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.location-section__overlay {
    min-height: 370px;
    background: linear-gradient(
        90deg,
        rgba(4, 32, 43, 0.76) 0%,
        rgba(5, 54, 72, 0.78) 48%,
        rgba(6, 43, 58, 0.74) 100%
    );
    display: grid;
    place-items: center;
    padding: 36px 16px;
}

.location-section__content {
    width: min(900px, 92%);
    text-align: center;
    color: #ffffff;
}

.location-section__line {
    display: inline-block;
    width: 22px;
    height: 2px;
    background: #46bc5f;
    margin-bottom: 12px;
}

.location-section__content h2 {
    margin: 0 0 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(28px, 2.2vw, 48px);
    line-height: 1.2;
    font-weight: 700;
}

.location-section__content p {
    margin: 0 auto 14px;
    max-width: 820px;
    font-size: clamp(14px, 0.95vw, 20px);
    line-height: 1.7;
    font-weight: 600;
}

.location-section__content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .location-section__bg,
    .location-section__overlay {
        min-height: 300px;
    }

    .location-section__overlay {
        padding: 30px 14px;
    }

    .location-section__content h2 {
        font-size: clamp(24px, 8vw, 36px);
    }

    .location-section__content p {
        font-size: 14px;
        line-height: 1.6;
        font-weight: 500;
    }
}

.amenities-section {
    background: var(--page-gray);
    padding: 56px 0 64px;
}

.amenities-section__container {
    width: min(1060px, 92%);
    margin: 0 auto;
}

.amenities-section h2 {
    margin: 0 0 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 2.55vw, 58px);
    line-height: 1.1;
    color: #0c1721;
}

.amenities-section__intro {
    margin: 0 0 34px;
    max-width: 980px;
    color: #4d5760;
    font-size: clamp(15px, 0.95vw, 19px);
    line-height: 1.75;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px 18px;
}

.amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 56px;
}

.amenity-item__icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #58c86a;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}

.amenity-item p {
    margin: 0;
    color: #0f1922;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(14px, 0.9vw, 18px);
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .amenities-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .amenities-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

    .amenities-section {
        padding: 40px 0 46px;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .amenities-section h2 {
        font-size: clamp(32px, 10vw, 42px);
    }
}

.floor-about-section {
    background: var(--page-gray);
    padding: 18px 0 50px;
}

.floor-about-section__container {
    width: min(1060px, 92%);
    margin: 0 auto;
}

.floor-about-section__title {
    margin: 0 0 20px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 2.6vw, 56px);
    color: #0c1721;
}

.floor-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 44px;
}

.floor-plan-card {
    text-align: center;
}

.floor-plan-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid #a3a3a3;
    background: #ffffff;
}

.floor-plan-card p {
    margin: 10px 0 0;
    color: #4d5760;
    font-size: clamp(15px, 0.95vw, 19px);
}

.about-us-block {
    width: min(980px, 100%);
    margin: 0 auto;
    text-align: center;
}

.about-us-block__line {
    display: inline-block;
    width: 22px;
    height: 2px;
    background: #46bc5f;
    margin-bottom: 12px;
}

.about-us-block h2 {
    margin: 0 0 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 2.6vw, 56px);
    color: #0c1721;
}

.about-us-block p {
    margin: 0 0 12px;
    color: #4d5760;
    text-align: left;
    font-size: clamp(15px, 0.95vw, 19px);
    line-height: 1.75;
}

.about-us-block p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .floor-plan-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .floor-about-section {
        padding-top: 6px;
    }
}

.contact-section {
    position: relative;
    background:
        radial-gradient(circle at 15% 20%, rgba(116, 164, 219, 0.22) 0%, rgba(116, 164, 219, 0) 45%),
        radial-gradient(circle at 85% 15%, rgba(26, 45, 120, 0.18) 0%, rgba(26, 45, 120, 0) 44%),
        linear-gradient(180deg, #f5f8fd 0%, #eaf1fa 100%);
    padding: 46px 0 38px;
    overflow: hidden;
}

.contact-section::before,
.contact-section::after {
    content: "";
    position: absolute;
    width: 42vw;
    height: 42vw;
    background: linear-gradient(140deg, rgba(26, 45, 120, 0.18), rgba(88, 200, 106, 0.12));
    transform: rotate(45deg);
    z-index: 0;
    opacity: 1;
}

.contact-section::before {
    left: -26vw;
    top: 2vw;
}

.contact-section::after {
    right: -26vw;
    top: 2vw;
}

.contact-section__container {
    width: min(1060px, 92%);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 26px;
    background: linear-gradient(135deg, #12255f 0%, #1a2d78 58%, #26439d 100%);
    clip-path: none;
    padding: 30px 28px 28px;
    color: #f7fbff;
    border-radius: 18px;
    box-shadow: 0 20px 42px rgba(17, 33, 85, 0.22);
}

.contact-card__left h2 {
    margin: 0 0 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(30px, 1.95vw, 42px);
    color: #ffffff;
}

.contact-card__left p {
    margin: 0 0 10px;
    max-width: 620px;
    font-size: clamp(14px, 0.9vw, 17px);
    line-height: 1.7;
    color: rgba(240, 246, 255, 0.82);
}

.contact-card__highlight {
    margin-top: 16px;
    font-weight: 700;
    color: #ffffff;
}

.contact-card__left h3 {
    margin: 18px 0 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(22px, 1.4vw, 30px);
    color: #ffffff;
}

.contact-social {
    display: flex;
    gap: 8px;
}

.contact-social a {
    width: 20px;
    height: 20px;
    border-radius: 2px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(248, 251, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: 0 14px 32px rgba(10, 23, 63, 0.2);
}

.contact-form__meta {
    margin: 0;
    color: #4d5f88;
    font-size: 13px;
    line-height: 1.45;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cfdcf0;
    background: #ffffff;
    padding: 12px 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    color: #162242;
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #7b88a5;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: #5abf6c;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(90, 191, 108, 0.16);
}

.contact-form textarea {
    resize: vertical;
    min-height: 90px;
}

.contact-form button {
    width: 100%;
    border: 1px solid #58c86a;
    background: linear-gradient(135deg, #58c86a 0%, #3ea855 100%);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.contact-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(62, 168, 85, 0.25);
}

.contact-form button.is-loading,
.quick-contact-form button.is-loading {
    opacity: 0.8;
    cursor: wait;
}

.contact-form__hint {
    margin: -2px 0 0;
    color: #5e6f92;
    font-size: 12px;
    line-height: 1.35;
}

@media (max-width: 980px) {
    .contact-card {
        grid-template-columns: 1fr;
        clip-path: none;
        padding: 20px;
    }

    .contact-card__right {
        max-width: 460px;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 30px 0;
    }

    .contact-section::before,
    .contact-section::after {
        width: 52vw;
        height: 52vw;
    }
}
