/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #FF6A00;
    --accent-dark: #E05500;
    --bg-dark: #0D0D0D;
    --bg-card: #1A1A1A;
    --bg-lighter: #222;
    --text: #fff;
    --text-muted: #aaa;
    --radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-dark);
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

ul { list-style: none; }

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

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

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

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.btn--accent {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.4);
}

.btn--accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 6px 30px rgba(255, 106, 0, 0.6);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn--outline:hover {
    background: var(--accent);
    color: #fff;
}

.btn--large {
    padding: 18px 48px;
    font-size: 17px;
}

.btn--full {
    width: 100%;
}

.input {
    display: block;
    width: 100%;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 15px;
    border: 1px solid #333;
    border-radius: var(--radius);
    background: var(--bg-card);
    color: var(--text);
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
}

.input::placeholder { color: #666; }

.input:focus {
    border-color: var(--accent);
}

.input--textarea {
    resize: vertical;
    min-height: 80px;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(13, 13, 13, 0.35);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-20px);
    animation: slideDown 0.6s forwards 0.2s;
    animation-fill-mode: forwards;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.header--hidden {
    transform: translateY(-100%);
    opacity: 0;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Добавим немного задержки для появления элементов */
.advantage:nth-child(1).appear { transition-delay: 0.1s; }
.advantage:nth-child(2).appear { transition-delay: 0.2s; }
.advantage:nth-child(3).appear { transition-delay: 0.3s; }
.advantage:nth-child(4).appear { transition-delay: 0.4s; }

.service-card:nth-child(1).appear { transition-delay: 0.1s; }
.service-card:nth-child(2).appear { transition-delay: 0.2s; }
.service-card:nth-child(3).appear { transition-delay: 0.3s; }
.service-card:nth-child(4).appear { transition-delay: 0.4s; }
.service-card:nth-child(5).appear { transition-delay: 0.5s; }

.video-item:nth-child(1).appear { transition-delay: 0.1s; }
.video-item:nth-child(2).appear { transition-delay: 0.2s; }
.video-item:nth-child(3).appear { transition-delay: 0.3s; }

/* === HEADER === */

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    gap: 20px;
}

.logo__img {
    height: 50px;
    width: auto;
}

.nav__list {
    display: flex;
    gap: 6px;
}

.nav__link {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s;
    color: var(--text-muted);
    white-space: nowrap;
}

.nav__link:hover {
    color: var(--accent);
    background: rgba(255, 106, 0, 0.1);
}

.header__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header__phone {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    transition: color 0.3s;
}

.header__phone:hover {
    color: var(--accent);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.burger--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.burger--open span:nth-child(2) { opacity: 0; }
.burger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* === HERO === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.7) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
}

.hero__logo {
    width: 250px;
    margin: 0 auto 24px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.hero__title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero__subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.hero__badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.badge {
    background: rgba(255, 106, 0, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    color: var(--accent);
    font-size: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* === SECTIONS === */
.section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.appear {
    opacity: 1;
    transform: translateY(0);
}

/* === SECTIONS === */

.section__title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section__subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 16px;
}

.section__tagline {
    text-align: center;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-size: 14px;
}

/* === ADVANTAGES === */
.advantages {
    background: var(--bg-card);
    padding: 50px 0;
    border-top: 3px solid var(--accent);
}

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

.advantage {
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.advantage.appear {
    opacity: 1;
    transform: translateY(0);
}

/* === ADVANTAGES === */

.advantage__icon {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 12px;
}

.advantage__title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--accent);
}

.advantage p {
    font-size: 13px;
    color: var(--text-muted);
}

/* === SERVICES === */
.services {
    background: var(--bg-dark);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-card.appear {
    opacity: 1;
    transform: translateY(0);
}

.service-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 380px;
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 106, 0, 0.2);
}

.service-card__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s;
}

.service-card:hover .service-card__img {
    transform: scale(1.08);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.service-card__content {
    position: relative;
    z-index: 1;
    padding: 24px;
    width: 100%;
}

.service-card__content h3 {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.service-card__content p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.service-card__price {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
}

/* === PRICING ACCORDION === */
.pricing-accordion {
    background: var(--bg-dark);
}

.pricing-accordion .section__subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 16px;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion__item {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 106, 0, 0.15);
    overflow: hidden;
    transition: border-color 0.3s;
}

.accordion__item[open] {
    border-color: var(--accent);
}

.accordion__header {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.3s;
}

.accordion__header::-webkit-details-marker {
    display: none;
}

.accordion__header:hover {
    background: rgba(255, 106, 0, 0.05);
}

.accordion__icon {
    font-size: 24px;
    margin-right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.accordion__title {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
}

.accordion__price-hint {
    font-size: 14px;
    color: var(--accent);
    font-weight: 700;
    margin-right: 16px;
    white-space: nowrap;
}

.accordion__arrow {
    font-size: 12px;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.accordion__item[open] .accordion__arrow {
    transform: rotate(180deg);
}

.accordion__body {
    padding: 24px 24px 32px;
}

/* === PRICING (legacy) === */
.pricing {
    background: var(--bg-dark);
    position: relative;
}

.pricing--dark {
    background: var(--bg-card);
}

.accent-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark), var(--accent));
}

.price-table {
    max-width: 550px;
    margin: 0 auto 40px;
}

.accordion__body .price-table {
    max-width: 100%;
    width: 100%;
}

.accordion__body .pricing__split {
    display: block;
    max-width: 100%;
    margin-bottom: 0;
}

.accordion__body .pricing__block {
    margin-bottom: 0;
}

.accordion__body .price-row--big {
    padding: 16px 24px;
    min-height: 70px;
}

.accordion__body .price-row--big .price-row__price {
    font-size: 28px;
}

.accordion__body .flights__layout {
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
}

.accordion__body .flights__img {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.accordion__body .flights__layout .price-table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    min-height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: var(--radius);
    margin-bottom: 12px;
    transition: border-color 0.3s, background 0.3s;
    gap: 12px;
}

.price-row:hover {
    border-color: var(--accent);
    background: rgba(255, 106, 0, 0.05);
}

.price-row__icon {
    font-size: 20px;
    color: var(--accent);
    margin-right: 16px;
    width: 30px;
    text-align: center;
}

.price-row__duration {
    font-size: 18px;
    font-weight: 700;
    flex: 1;
}

.price-row__price {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent);
}

.rub {
    font-size: 20px;
    opacity: 0.7;
}

.price-row--big {
    padding: 24px 32px;
}

.price-row--big .price-row__price {
    font-size: 36px;
}

.pricing__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.pricing__block {
    text-align: center;
}

.pricing__label {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 6px 24px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.pricing__label--hot {
    background: #e03030;
}

.pricing__features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.feature-badge span {
    font-size: 18px;
    color: var(--accent);
}

.promo-banner {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius);
    padding: 24px 40px;
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.promo-banner__text {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.promo-banner__emoji {
    font-size: 36px;
}

.pricing__cta {
    text-align: center;
}

.pricing__cta-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === FLIGHTS === */
.flights__layout {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.flights__img {
    flex: 0 0 300px;
    border-radius: var(--radius);
    overflow: hidden;
}

.flights__img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.flights__layout .price-table {
    flex: 1;
    margin-bottom: 0;
    max-width: none;
}

@media (max-width: 768px) {
    .flights__layout {
        flex-direction: column;
    }

    .flights__img {
        flex: none;
        width: 100%;
    }

    .flights__layout .price-table {
        width: 100%;
    }
}

/* === PHOTO GALLERY === */
.gallery-photo {
    padding: 40px 0;
    background: var(--bg-dark);
}

.gallery-photo__carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    margin-top: 40px;
    height: 500px;
}

.gallery-photo__track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.gallery-photo__slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

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

.gallery-photo__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-photo__nav:hover {
    background: rgba(255,106,0,0.8);
}

.gallery-photo__nav--prev {
    left: 20px;
}

.gallery-photo__nav--next {
    right: 20px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .gallery-photo__carousel {
        height: 300px;
    }

    .gallery-photo__nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .gallery-photo__nav--prev {
        left: 10px;
    }

    .gallery-photo__nav--next {
        right: 10px;
    }
}

/* === VIDEO === */
.video-section {
    background: var(--bg-card);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.video-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.video-item.appear {
    opacity: 1;
    transform: translateY(0);
}

.video-item {
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
}

.video-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* === CERTIFICATE SECTION === */
.certificate-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.certificate__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.certificate__content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.certificate__content.appear {
    opacity: 1;
    transform: translateY(0);
}

.certificate__image {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.certificate__image.appear {
    opacity: 1;
    transform: translateY(0);
}

.certificate__img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.certificate__features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.certificate__cta {
    text-align: center;
    margin-top: 30px;
}

.certificate__cta .btn {
    display: inline-block;
}

/* === CTA BANNER === */
.cta-banner {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    text-align: center;
    padding: 60px 0;
}

.cta-banner h2 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cta-banner p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    opacity: 0.9;
}

.cta-banner .btn--accent {
    background: #fff;
    color: var(--accent);
    border-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-banner .btn--accent:hover {
    background: var(--bg-dark);
    color: var(--accent);
    border-color: var(--bg-dark);
}

/* === BOOKING === */
.booking {
    background: var(--bg-dark);
}

.booking__form {
    max-width: 650px;
    margin: 0 auto;
}

.booking__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.booking__form .input--textarea {
    margin-bottom: 20px;
}

/* === CONTACTS === */
.contacts {
    padding: 0;
}

.contacts__inner {
    display: flex;
}

.contacts__map {
    flex: 1;
}

.contacts__map iframe {
    display: block;
    height: 100%;
    min-height: 450px;
}

.contacts__info {
    flex: 1;
    padding: 60px 40px;
    background: var(--bg-card);
}

.contacts__logo {
    width: 150px;
    margin-bottom: 20px;
}

.contacts__info h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--accent);
}

.contacts__detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contacts__icon {
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.contacts__detail p,
.contacts__detail a {
    font-size: 16px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.contacts__detail a:hover {
    color: var(--accent);
}

.contacts__social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

/* === FOOTER === */
.footer {
    background: #080808;
    padding-top: 50px;
}

.footer__inner {
    display: flex;
    gap: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.footer__brand {
    flex: 1;
}

.footer__logo {
    width: 120px;
    margin-bottom: 12px;
}

.footer__brand p {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.footer__nav {
    flex: 0 0 auto;
}

.footer__nav h4 {
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__nav a {
    font-size: 14px;
    color: #777;
    transition: color 0.3s;
}

.footer__nav a:hover {
    color: var(--accent);
}

.footer__bottom {
    padding: 20px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 13px;
    color: #555;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contacts__inner {
        flex-direction: column;
    }

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

    .nav {
        display: none;
    }

    .nav--open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        padding: 20px;
        border-bottom: 1px solid #333;
    }

    .nav--open .nav__list {
        flex-direction: column;
        gap: 0;
    }

    .nav--open .nav__link {
        display: block;
        padding: 12px 16px;
        font-size: 15px;
    }

    .burger {
        display: flex;
    }

    .header__contacts {
        display: none;
    }

    /* Certificate section responsive */
    .certificate__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .certificate__image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 32px;
    }

    .hero__logo {
        width: 180px;
    }

    .section__title {
        font-size: 26px;
    }

    .services__grid,
    .advantages__grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer__inner {
        flex-direction: column;
        gap: 30px;
    }

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

    .gallery-photo__item--wide img {
        height: 220px;
    }

    .cta-banner h2 {
        font-size: 22px;
    }

    .promo-banner {
        flex-direction: column;
        padding: 20px;
    }

    .promo-banner__text {
        font-size: 18px;
    }

    .accordion__header {
        padding: 16px;
    }

    .accordion__icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
        margin-right: 12px;
    }

    .accordion__title {
        font-size: 15px;
    }

    .accordion__price-hint {
        font-size: 12px;
        margin-right: 10px;
    }

    .accordion__body {
        padding: 20px 16px 24px;
    }

    .price-row {
        padding: 14px 16px;
    }

    .price-row__price {
        font-size: 22px;
        white-space: nowrap;
    }

    .price-row__duration {
        font-size: 15px;
    }

    .price-row__icon {
        display: none;
    }

    .price-row--big .price-row__price {
        font-size: 28px;
    }

    .pricing__features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-badge {
        font-size: 11px;
        padding: 6px 12px;
        gap: 4px;
    }

    .feature-badge span {
        font-size: 14px;
    }

    .hero__badges {
        gap: 8px;
    }

    .badge {
        font-size: 11px;
        padding: 6px 14px;
    }
}
