 * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            background-color: #111111;
            color: white;
            font-family: Arial, sans-serif;
        }

        /* Верхнее меню */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    padding: 25px 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(8, 8, 8, 0.78);



    z-index: 1000;

        }

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

        nav {
            display: flex;
            gap: 35px;
        }

        nav a {
            color: #cccccc;
            text-decoration: none;
            font-size: 16px;
        }

        nav a:hover {
            color: white;
        }


.languages {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 7px 10px;

    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;

    backdrop-filter: blur(8px);
}

.languages button {
    background: transparent;
    border: none;

    padding: 2px 3px;

    font-size: 20px;
    line-height: 1;

    cursor: pointer;

    opacity: 0.85;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

        .languages button:hover {
    opacity: 1;
    transform: scale(1.15);
}

        /* Главный экран */
        .main {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 170px 60px 80px;

    background-image: url("images/hero.png");
    background-size: cover;
    background-position: center 40px;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.65) 45%,
        rgba(0, 0, 0, 0.20) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-brand {
    font-size: 14px;
    letter-spacing: 4px;
    color: #c9c9c9;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.main h1 {
    font-size: 68px;
    line-height: 1.05;
    margin: 0 0 25px;
    max-width: 850px;
}

.main .description {
    font-size: 22px;
    line-height: 1.6;
    color: #d0d0d0;
    max-width: 650px;
}

.hero-services {
    margin-top: 25px;
    font-size: 14px;
    letter-spacing: 2px;
    color: #aaaaaa;
}

        h1 {
            font-size: 58px;
            max-width: 950px;
            margin: 0 0 20px;
        }

        .description {
            font-size: 22px;
            color: #aaaaaa;
            max-width: 700px;
        }

        .buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .primary-button,
        .secondary-button {
            padding: 16px 28px;
            border-radius: 8px;
            font-size: 17px;
            cursor: pointer;
            text-decoration: none;
        }

        .primary-button {
            background: white;
            color: #111111;
        }

        .secondary-button {
            border: 1px solid #666666;
            color: white;
        }

        .primary-button:hover {
            background: #dddddd;
        }

        .secondary-button:hover {
            border-color: white;
        }

        /* Телефон */
        .phone {
            color: white;
            text-decoration: none;
            font-size: 16px;
        }

        /* Мобильная версия */
        @media (max-width: 850px) {

            header {
                padding: 20px;
            }

            nav {
                display: none;
            }

            .phone {
                display: none;
            }

            h1 {
                font-size: 40px;
            }

            .description {
                font-size: 18px;
            }

            .buttons {
                flex-direction: column;
            }
            .main {
    padding: 120px 20px 60px;
    background-position: center;
}

.main h1 {
    font-size: 42px;
}

.hero-brand {
    font-size: 12px;
}

.hero-services {
    line-height: 1.8;
}
        }
        /* SERVICES */

.services-section {
    background: #181818;
    padding: 100px 40px;
}

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

.section-label {
    color: #888888;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.services-section h2 {
    font-size: 42px;
    margin: 0 0 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    margin-top: 50px;
}

.service-card {
    position: relative;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;

    padding: 35px;

    min-height: 310px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    border-color: #d4af37;

    background: rgba(212, 175, 55, 0.05);
}

.service-card span {
    display: block;

    color: #d4af37;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;

    margin-bottom: 22px;
}

.service-card h3 {
    font-size: 23px;
    line-height: 1.25;

    margin: 0 0 18px;

    color: white;
}

@media (max-width: 850px) {

    .services-section {
        padding: 70px 20px;
    }

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

    .services-section h2 {
        font-size: 32px;
    }
}
.service-card p {
    color: #999999;

    font-size: 15px;
    line-height: 1.7;

    margin: 0;
}

.service-card h3 {
    margin-bottom: 0;
}
/* PRICES */

.prices-section {
    background: #181818;
    padding: 100px 40px;
}

.prices-section h2 {
    font-size: 42px;
    margin: 0 0 15px;
}

.prices-intro {
    color: #999999;
    font-size: 17px;
    margin-bottom: 45px;
}

.price-list {
    border-top: 1px solid #333333;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    padding: 28px 0;

    border-bottom: 1px solid #333333;
}

.price-item h3 {
    margin: 0 0 8px;
    font-size: 21px;
}

.price-item p {
    margin: 0;
    color: #888888;
    font-size: 15px;
}

.price-item strong {
    font-size: 21px;
    white-space: nowrap;
}

@media (max-width: 700px) {

    .prices-section {
        padding: 70px 20px;
    }

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

    .price-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }
}
/* CONTACT */

.contact-section {
    background: #111111;
    padding: 100px 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: start;
}

.contact-section h2 {
    font-size: 42px;
    margin: 0 0 20px;
}

.contact-description {
    color: #999999;
    font-size: 17px;
    line-height: 1.7;
    max-width: 500px;
}

.contact-details {
    margin-top: 40px;
}

.contact-details p {
    margin: 15px 0;
    color: #aaaaaa;
}

.contact-details a {
    color: white;
    text-decoration: none;
}

.booking-form {
    display: flex;
    flex-direction: column;
}

.booking-form label {
    margin-bottom: 8px;
    font-size: 15px;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    background: #181818;
    border: 1px solid #333333;
    border-radius: 8px;

    padding: 15px;

    color: white;
    font-family: Arial, sans-serif;
    font-size: 16px;

    margin-bottom: 20px;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #777777;
}

.submit-button {
    background: white;
    color: #111111;

    border: none;
    border-radius: 8px;

    padding: 16px 25px;

    font-size: 17px;
    cursor: pointer;
}

.submit-button:hover {
    background: #dddddd;
}

.form-message {
    margin-top: 15px;
    color: #aaaaaa;
}

@media (max-width: 850px) {

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

.booking-form select {
    width: 100%;
    background: #181818;
    border: 1px solid #333333;
    border-radius: 8px;

    padding: 15px;

    color: white;
    font-family: Arial, sans-serif;
    font-size: 16px;

    margin-bottom: 20px;
}

.booking-form select:focus {
    outline: none;
    border-color: #777777;
}

/* ===== AURUM PREMIUM HEADER ===== */

header {
    padding: 22px 45px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.25) 70%,
        rgba(0, 0, 0, 0) 100%
    );
}

.logo img {
    height: 85px;
    width: auto;
    display: block;
}

nav a {
    color: #dddddd;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #d4af37;
}

/* телефон в шапке */

.phone {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.phone:hover {
    color: #f0cf60;
}

.primary-button {
    background: #d4af37;
    color: #111111;

    border: 1px solid #d4af37;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.primary-button:hover {
    background: #e2c157;
    transform: translateY(-2px);
}

.secondary-button {
    background: rgba(0, 0, 0, 0.25);
    color: white;

    border: 1px solid rgba(255, 255, 255, 0.35);

    backdrop-filter: blur(6px);

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.secondary-button:hover {
    border-color: #d4af37;
    background: rgba(0, 0, 0, 0.5);
}

.hero-brand {
    color: #d4af37;
    font-weight: 600;
}

.service-icon {
    display: block;

    color: #d4af37;
    font-size: 30px;

    margin-bottom: 22px;

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    color: #e7c75b;
}

/* ===== WHY AURUM ===== */

.why-section {
    background: #111111;
    padding: 100px 40px;
}

.why-section h2 {
    font-size: 42px;
    margin: 0 0 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.why-card {
    position: relative;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 35px;
    min-height: 220px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.why-number {
    display: block;
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.why-card h3 {
    font-size: 24px;
    margin: 0 0 15px;
    color: white;
}

.why-card p {
    color: #999999;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 850px) {

    .why-section {
        padding: 70px 20px;
    }

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

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

/* ===== AURUM PRICES ===== */

.prices-section {
    background: #181818;
    padding: 100px 40px;
}

.prices-section h2 {
    font-size: 42px;
    margin: 0 0 15px;
}

.prices-intro {
    color: #999999;
    font-size: 17px;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 45px;
}

.price-list {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    padding: 30px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);

    transition:
        padding-left 0.25s ease,
        background 0.25s ease;
}

.price-item:hover {
    padding-left: 15px;
    background: rgba(212, 175, 55, 0.035);
}

.price-item h3 {
    margin: 0 0 8px;

    font-size: 21px;
    color: white;
}

.price-item p {
    margin: 0;

    color: #888888;
    font-size: 15px;
    line-height: 1.5;
}

.price-item strong {
    color: #d4af37;

    font-size: 22px;
    font-weight: 600;

    white-space: nowrap;
}

@media (max-width: 700px) {

    .prices-section {
        padding: 70px 20px;
    }

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

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .price-item:hover {
        padding-left: 0;
    }
}

/* ===== AURUM CONTACT ===== */

.contact-section {
    background: #101010;
    padding: 110px 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 90px;
    align-items: start;
}

.contact-section h2 {
    font-size: 42px;
    margin: 0 0 20px;
}

.contact-description {
    color: #999999;
    font-size: 17px;
    line-height: 1.7;
    max-width: 520px;
}

.contact-details {
    margin-top: 45px;
}

.contact-details p {
    margin: 18px 0;
    color: #aaaaaa;
    line-height: 1.6;
}

.contact-details strong {
    color: #d4af37;
    font-weight: 600;
}

.contact-details a {
    color: white;
    text-decoration: none;
}

.contact-details a:hover {
    color: #d4af37;
}


/* FORM */

.booking-form {
    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;

    padding: 40px;
}

.booking-form label {
    display: block;

    margin-bottom: 8px;

    color: #cccccc;
    font-size: 14px;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;

    background: rgba(0, 0, 0, 0.35);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;

    padding: 15px 16px;

    color: white;

    font-family: Arial, sans-serif;
    font-size: 16px;

    margin-bottom: 22px;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
    outline: none;

    border-color: #d4af37;

    background: rgba(0, 0, 0, 0.55);
}

.booking-form textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;

    background: #d4af37;
    color: #111111;

    border: none;
    border-radius: 8px;

    padding: 17px 25px;

    font-size: 17px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.submit-button:hover {
    background: #e2c157;
    transform: translateY(-2px);
}

.form-message {
    margin-top: 18px;

    color: #d4af37;

    font-size: 15px;
}


@media (max-width: 850px) {

    .contact-section {
        padding: 70px 20px;
    }

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

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

    .booking-form {
        padding: 25px;
    }
}

/* ===== AURUM FOOTER ===== */

.footer {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 70px 40px 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 70px;
}

.footer-logo {
    height: 70px;
    width: auto;
    display: block;
    margin-bottom: 25px;
}

.footer-brand p {
    color: #888888;
    line-height: 1.7;
    max-width: 420px;
}

.footer h3 {
    color: #d4af37;
    font-size: 15px;
    letter-spacing: 1px;
    margin: 0 0 22px;
}

.footer-contact,
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a,
.footer-contact span,
.footer-hours span {
    color: #aaaaaa;
    text-decoration: none;
    line-height: 1.5;
}

.footer-contact a:hover {
    color: #d4af37;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;

    color: #666666;
    font-size: 13px;
}


@media (max-width: 850px) {

    .footer {
        padding: 60px 20px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo {
        height: 60px;
    }
}

/* ===== MOBILE HEADER + HERO ===== */

@media (max-width: 850px) {

    header {
        padding: 14px 18px;
        align-items: center;
        justify-content: space-between;
    }

    /* Логотип на телефоне меньше */
    .logo img {
        height: 58px;
        width: auto;
    }

    /* Большое меню на телефоне скрываем */
    header nav {
        display: none;
    }

    /* Телефон в верхней строке скрываем */
    .phone {
        display: none;
    }

    /* Флажки оставляем справа */
    .languages {
        margin-left: auto;
        gap: 6px;
        padding: 6px 9px;
    }

    .languages button {
        font-size: 18px;
        padding: 2px;
    }


    /* Первый экран */

    .main {
        min-height: 100svh;

        padding:
            135px
            20px
            55px;

        background-position: 62% center;
    }

    .hero-content {
        width: 100%;
        max-width: none;
    }

    .main h1 {
        font-size: 40px;
        line-height: 1.06;
        margin-bottom: 22px;
    }

    .main .description {
        font-size: 18px;
        line-height: 1.55;
    }

    .hero-brand {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .hero-services {
        font-size: 12px;
        line-height: 1.7;
        letter-spacing: 1px;
    }


    /* Кнопки одна под другой */

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;

        width: 100%;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }


    /* Чуть сильнее затемняем фото под текстом */

    .hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.72) 60%,
            rgba(0, 0, 0, 0.32) 100%
        );
    }
}
/* ===== MOBILE MENU ===== */

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

@media (max-width: 850px) {

    .mobile-menu-button {
        display: block;

        background: rgba(0, 0, 0, 0.45);
        color: #d4af37;

        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 10px;

        width: 42px;
        height: 42px;

        font-size: 23px;
        line-height: 1;

        cursor: pointer;

        margin-left: 8px;
    }

    .mobile-menu {
        display: none;

        position: absolute;
        top: 90px;
        left: 18px;
        right: 18px;

        padding: 22px;

        background: rgba(10, 10, 10, 0.96);

        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 14px;

        backdrop-filter: blur(12px);

        z-index: 200;
    }

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

    .mobile-menu a {
        display: block;

        padding: 14px 10px;

        color: white;
        text-decoration: none;

        font-size: 17px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-menu a:hover {
        color: #d4af37;
    }

    .mobile-menu .mobile-phone {
        color: #d4af37;

        border-bottom: none;

        font-weight: 600;
    }
}
/* ===== MOBILE SERVICES ===== */

@media (max-width: 850px) {

    .services-section {
        padding: 70px 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 35px;
    }

    .service-card {
        min-height: auto;
        padding: 28px;
    }

    .service-card span {
        margin-bottom: 18px;
    }

    .service-icon {
        font-size: 27px;
        margin-bottom: 18px;
    }

    .service-card h3 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.6;
    }
}
@media (max-width: 850px) {

    .why-card {
        min-height: auto;
        padding: 28px;
    }

    .why-number {
        margin-bottom: 24px;
    }

    .why-card h3 {
        font-size: 21px;
    }

    .why-card p {
        font-size: 14px;
        line-height: 1.6;
    }
}
/* ===== MOBILE PRICES FINAL ===== */

@media (max-width: 850px) {

    .prices-section {
        padding: 70px 18px;
    }

    .prices-intro {
        margin-bottom: 35px;
    }

    .price-item {
        padding: 24px 0;
        gap: 8px;
    }

    .price-item:hover {
        padding-left: 0;
        background: transparent;
    }

    .price-item h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .price-item p {
        font-size: 13px;
        line-height: 1.5;
    }

    .price-item strong {
        font-size: 19px;
        margin-top: 5px;
    }
}
/* ===== MOBILE CONTACT FINAL ===== */

@media (max-width: 850px) {

    .contact-section {
        padding: 65px 18px;
    }

    .contact-grid {
        gap: 35px;
    }

    .contact-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .contact-details {
        margin-top: 30px;
    }

    .contact-details p {
        margin: 14px 0;
        font-size: 14px;
    }

    .booking-form {
        padding: 22px;
        border-radius: 14px;
    }

    .booking-form label {
        font-size: 13px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        font-size: 16px;
        padding: 13px 14px;
        margin-bottom: 18px;
    }

    .booking-form textarea {
        min-height: 120px;
    }

    .submit-button {
        padding: 16px 20px;
        font-size: 16px;
    }
}
/* ===== MOBILE FOOTER FINAL ===== */

@media (max-width: 850px) {

    .footer {
        padding: 50px 18px 22px;
    }

    .footer-grid {
        gap: 32px;
    }

    .footer-logo {
        height: 72px;
        margin-bottom: 20px;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}
/* ===== STICKY HEADER EFFECT ===== */

header {
    transition:
        background 0.3s ease,
        padding 0.3s ease,
        box-shadow 0.3s ease;
}

header.scrolled {
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(14px);

    padding-top: 14px;
    padding-bottom: 14px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

header.scrolled .logo img {
    height: 68px;
}
@media (max-width: 850px) {

    header.scrolled {
        padding: 10px 18px;
    }

    header.scrolled .logo img {
        height: 50px;
    }
}
/* ===== AURUM MAP ===== */

.map-section {
    background: #111111;
    padding: 100px 40px;
}

.map-section h2 {
    font-size: 42px;
    margin: 0 0 12px;
}

.map-address {
    color: #d4af37;
    font-size: 17px;
    margin-bottom: 35px;
}

.map-wrapper {
    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.30);
    border-radius: 16px;

    background: #181818;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    filter: grayscale(80%) brightness(75%) contrast(110%);
}

@media (max-width: 850px) {

    .map-section {
        padding: 70px 18px;
    }

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

    .map-wrapper iframe {
        height: 360px;
    }
}
html {
    scroll-behavior: smooth;
}