/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0e27;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background-color: rgba(17, 90, 255, 0.8);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header__logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.header__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.header__link {
    font-size: 1.4rem;
    color: #ffffff;
    transition: opacity 0.3s;
}

.header__link:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 14, 39, 0.7), rgba(10, 14, 39, 0.9));
    z-index: 1;
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 8rem 0;
}

.hero__icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero__icon {
    color: #3B82F6;
    font-size: 2rem;
}

.hero__title {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2.4rem;
    line-height: 1.2;
    max-width: 70rem;
}

.hero__description {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 3.2rem;
    max-width: 80rem;
    color: #e5e7eb;
}

.hero__button {
    display: inline-block;
    background-color: #ffffff;
    color: #0a0e27;
    padding: 1.6rem 4rem;
    border-radius: 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 0.05rem;
}

.hero__button:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 1rem 2rem rgba(255, 255, 255, 0.2);
}

/* Stats Section */
.stats {
    background-color: #0a0e27;
    padding: 6rem 0;
}

.stats__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.stats__item {
    flex: 1 1 25rem;
    position: relative;
    padding-bottom: 2rem;
    border-bottom: 0.1rem solid rgba(59, 130, 246, 0.3);
}

.stats__number {
    font-size: 6rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 1rem;
    line-height: 1;
}

.stats__label {
    font-size: 1.4rem;
    color: #e5e7eb;
    line-height: 1.6;
}

.stats__arrow {
    position: absolute;
    right: 0;
    bottom: 2rem;
    font-size: 2.4rem;
    color: #3B82F6;
}

/* Mission Section */
.mission {
    background-color: #0f1335;
    padding: 8rem 0;
}

.mission__content {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    align-items: center;
}

.mission__text {
    flex: 1 1 40rem;
}

.mission__title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 2.4rem;
    line-height: 1.3;
}

.mission__description {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

.mission__icons {
    display: flex;
    gap: 1rem;
    margin: 3rem 0 2rem;
}

.mission__icon {
    color: #3B82F6;
    font-size: 2rem;
}

.mission__button {
    display: inline-block;
    background-color: #ffffff;
    color: #0a0e27;
    padding: 1.6rem 4rem;
    border-radius: 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 0.05rem;
}

.mission__button:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 1rem 2rem rgba(255, 255, 255, 0.2);
}

.mission__image {
    flex: 1 1 40rem;
    border-radius: 1rem;
    overflow: hidden;
}

.mission__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Advantages Section */
.advantages {
    background-color: #0a0e27;
    padding: 8rem 0;
    position: relative;
}

.advantages__title {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    color: #3B82F6;
    margin-bottom: 1.6rem;
}

.advantages__subtitle {
    font-size: 1.6rem;
    text-align: center;
    color: #e5e7eb;
    margin-bottom: 6rem;
}

.advantages__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 6rem;
}

.advantages__item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 25rem;
}

.advantages__icon {
    margin-bottom: 2rem;
}

.advantages__item-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.advantages__item-text {
    font-size: 1.4rem;
    color: #e5e7eb;
    line-height: 1.6;
}

.advantages__image {
    width: 100%;
    max-width: 60rem;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
}

.advantages__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Section */
.gallery {
    background-color: #0f1335;
    padding: 8rem 0;
}

.gallery__title {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    color: #3B82F6;
    margin-bottom: 6rem;
}

.gallery__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.gallery__item {
    flex: 1 1 calc(33.333% - 1.4rem);
    min-width: 28rem;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

/* Hotel Types Section */
.hotel-types {
    background-color: #0a0e27;
    padding: 8rem 0;
    position: relative;
}

.hotel-types__title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 1.6rem;
}

.hotel-types__subtitle {
    font-size: 1.6rem;
    color: #e5e7eb;
    margin-bottom: 4rem;
}

.hotel-types__icons-right {
    position: absolute;
    top: 8rem;
    right: 4rem;
    display: flex;
    gap: 1rem;
}

.hotel-types__icon {
    color: #3B82F6;
    font-size: 2rem;
}

.hotel-types__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.hotel-types__item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 25rem;
}

.hotel-types__item-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.hotel-types__item-text {
    font-size: 1.4rem;
    color: #e5e7eb;
    line-height: 1.6;
}

/* Comfort Section */
.comfort {
    background-color: #0f1335;
    padding: 8rem 0;
}

.comfort__content {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    align-items: center;
}

.comfort__image {
    flex: 1 1 40rem;
    border-radius: 1rem;
    overflow: hidden;
}

.comfort__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comfort__text {
    flex: 1 1 40rem;
}

.comfort__title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 2.4rem;
    line-height: 1.3;
}

.comfort__description {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

.comfort__icons {
    display: flex;
    gap: 1rem;
    margin: 3rem 0 2rem;
}

.comfort__icon {
    color: #3B82F6;
    font-size: 2rem;
}

.comfort__button {
    display: inline-block;
    background-color: #ffffff;
    color: #0a0e27;
    padding: 1.6rem 4rem;
    border-radius: 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 0.05rem;
}

.comfort__button:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 1rem 2rem rgba(255, 255, 255, 0.2);
}

/* Contact Section */
.contact {
    background-color: #0a0e27;
    padding: 8rem 0;
}

.contact__title {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    color: #3B82F6;
    margin-bottom: 2.4rem;
}

.contact__description {
    font-size: 1.6rem;
    text-align: center;
    color: #e5e7eb;
    max-width: 80rem;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.contact__info {
    font-size: 1.6rem;
    text-align: center;
    color: #e5e7eb;
    margin-bottom: 4rem;
    line-height: 1.8;
}

.contact__form {
    max-width: 60rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__input,
.contact__textarea {
    width: 100%;
    padding: 1.6rem 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    border-radius: 0.8rem;
    color: #ffffff;
    font-size: 1.6rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s, background-color 0.3s;
}

.contact__input:focus,
.contact__textarea:focus {
    outline: none;
    border-color: #3B82F6;
    background-color: rgba(255, 255, 255, 0.08);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact__textarea {
    resize: vertical;
    min-height: 15rem;
}

.contact__button {
    background-color: #ffffff;
    color: #0a0e27;
    padding: 1.6rem 4rem;
    border: none;
    border-radius: 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 0.05rem;
    align-self: center;
}

.contact__button:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 1rem 2rem rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background-color: rgba(17, 90, 255, 0.80);
    padding: 4rem 0 2rem;
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
}

.footer__logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer__link {
    font-size: 1.4rem;
    color: #ffffff;
    transition: opacity 0.3s;
}

.footer__link:hover {
    opacity: 0.8;
}

.footer__bottom {
    text-align: center;
}

.footer__copyright {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Cookie Popup */
.cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1f3a;
    padding: 2rem;
    box-shadow: 0 -0.4rem 2rem rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.cookie.show {
    transform: translateY(0);
}

.cookie__content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie__text {
    flex: 1 1 40rem;
    font-size: 1.4rem;
    color: #e5e7eb;
    line-height: 1.6;
}

.cookie__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie__button {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
    font-family: 'Inter', sans-serif;
}

.cookie__button--accept {
    background-color: #3B82F6;
    color: #ffffff;
}

.cookie__button--decline {
    background-color: transparent;
    color: #ffffff;
    border: 0.1rem solid rgba(255, 255, 255, 0.3);
}

.cookie__button:hover {
    transform: translateY(-0.2rem);
    opacity: 0.9;
}

/* Success Page */
.success {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0;
}

.success__content {
    text-align: center;
    max-width: 60rem;
}

.success__icon {
    margin: 0 auto 3rem;
    width: 8rem;
    height: 8rem;
}

.success__title {
    font-size: 3.6rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 2.4rem;
}

.success__description {
    font-size: 1.8rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.success__button {
    display: inline-block;
    background-color: #ffffff;
    color: #0a0e27;
    padding: 1.6rem 4rem;
    border-radius: 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 0.05rem;
    margin-top: 2rem;
}

.success__button:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 1rem 2rem rgba(255, 255, 255, 0.2);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero__title {
        font-size: 4.8rem;
    }

    .stats__item {
        flex: 1 1 30%;
    }

    .gallery__item {
        flex: 1 1 calc(33.333% - 1.4rem);
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero__title {
        font-size: 5.6rem;
    }

    .mission__text {
        order: 1;
    }

    .mission__image {
        order: 2;
    }

    .comfort__image {
        order: 1;
    }

    .comfort__text {
        order: 2;
    }

    .advantages__item {
        flex: 1 1 calc(25% - 3rem);
    }

    .hotel-types__item {
        flex: 1 1 calc(33.333% - 2.7rem);
    }

    .hotel-types__icons-right {
        display: flex;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .container {
        padding: 0 4rem;
    }
}