/* HEADER — ИДЕАЛЬНЫЙ ВАРИАНТ С ЦЕНТРАЦИЕЙ ЛОГО */

.ph24-header {
    background-color: #3290fc;
    color: #ffffff;
}

.ph24-header-bar {
    padding: 14px 0;
}

/* ЛЕВАЯ ЧАСТЬ — МЕНЮ */
.ph24-header-left {
    display: none;
}

@media (min-width: 992px) {
    .ph24-header-left {
        display: flex;
        gap: 22px;
    }
}

.ph24-header-left a {
    color: #ffffff;
    font-weight: 500;
}

.ph24-header-left a:hover {
    text-decoration: underline;
}

/* ЦЕНТР — ЛОГО */
.ph24-header-center {
    text-align: center;
}

.ph24-header-logo-text {
display: none;
}

/* ПРАВО — ТЕЛЕФОН */
.ph24-header-right {
    text-align: right;
    font-size: 13px;
    line-height: 1.4;
}

.ph24-header-right-label {
    display: block;
    opacity: 0.9;
}

.ph24-header-phone {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.ph24-header-phone:hover {
    text-decoration: underline;
	color: #ffffff;
}

/* МОБИЛКА — ТОЛЬКО ЛОГО В ЦЕНТРЕ */
@media (max-width: 991.98px) {
    .ph24-header-left,
    .ph24-header-right {
        display: none;
    }

    .ph24-header-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

/* Абсолютно центрированный логотип */
.ph24-header-grid {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

/* Абсолютное позиционирование логотипа */
.ph24-header-logo-abs {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    z-index: 50;
}

.ph24-header-logo-abs .ph24-header-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
}

/* На мобилке — оставляем всё как было */
@media (max-width: 991.98px) {
    .ph24-header-logo-abs {
        position: static;
        transform: none;
        margin: 0 auto 0 auto;
        pointer-events: auto;
    }

    .ph24-header-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

.ph24-header-logo-img {
    height: 38px;       /* идеальный размер под макет */
    width: auto;
    display: block;
}

.ph24-logo-link {
    display: block;
    width: 100%;
    height: 100%;
}

/* Убираем маркировку меню */
.ph24-header-left ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ph24-header-left li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

/* HERO */

.ph24-hero {
  background: linear-gradient(135deg, #f9fbff 0%, #ffffff 50%);
  padding-top: 40px;
  padding-bottom: 50px;
}

.ph24-hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.ph24-hero-left,
.ph24-hero-right {
  flex: 1 1 320px;
}

.ph24-hero-eyebrow {
  font-size: 13px;
  color: var(--ph24-text-muted);
  margin-bottom: 6px;
}

.ph24-hero-subtitle {
  font-size: 15px;
  color: var(--ph24-text-muted);
  margin: 0 0 20px;
}

/* Блок бронирования слева */

.ph24-booking-card {
  margin-top: 10px;
  max-width: 550px;
}

.ph24-booking-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ph24-booking-field {
  flex: 1;
}

.ph24-card {
padding: 0px 0px;	
}

.ph24-booking-price {
  font-size: 15px;
  margin-bottom: 12px;
}

.ph24-booking-price strong {
  font-size: 18px;
}

/* ПРАВАЯ КАРТИНКА */

.ph24-hero-image-wrap {
    position: relative;
    width: 100%;
    height: 674px; /* регулируемый параметр */
    border-radius: var(--ph24-radius-lg);
    overflow: hidden;
    box-shadow: var(--ph24-shadow-card);
}
@media (max-width: 991.98px) {
.ph24-hero-image-wrap {
    height: 402px; /* регулируемый параметр */
}
}

.ph24-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* 🔥 ключ */
    object-position: center; /* можно top / center / bottom */
    display: block;
}

.ph24-hero-label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background-color: rgba(25, 118, 210, 0.9);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--ph24-radius-md);
  font-size: 14px;
  font-weight: 500;
}

/* НИЖЕ ПО СЕКЦИЯМ – просто базовый отступ, детали для следующих блоков добавим позже */

.ph24-section-gray {
  background-color: var(--ph24-bg-soft);
}

/* GOOGLE REVIEWS */

.ph24-reviews-section {
  background-color: var(--ph24-bg-soft);
  padding: 60px 0;
}

.ph24-reviews-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.ph24-google-icon {
  width: 32px;
  opacity: 0.9;
}

.ph24-reviews-title strong {
  font-size: 20px;
  display: block;
}

.ph24-reviews-rating {
  font-size: 14px;
  color: var(--ph24-text-muted);
}

.ph24-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.ph24-review-card {
  background-color: #ffffff;
  box-shadow: var(--ph24-shadow-soft);
  border-radius: var(--ph24-radius-md);
  padding: 18px 22px;
  font-size: 14px;
}

.ph24-review-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.ph24-review-stars {
  color: #fbbc04;
  font-size: 15px;
  margin-bottom: 10px;
}

.ph24-review-text {
  color: var(--ph24-text-muted);
  margin: 0;
}

/* SEO TEXT BLOCK */

.ph24-seo-section {
  background-color: #ffffff;
  padding: 70px 0;
}

.ph24-seo-title {
  text-align: center;
  margin-bottom: 36px;
  font-size: var(--ph24-h2-size);
}

.ph24-seo-text {
  max-width: 850px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ph24-text-main);
}

.ph24-seo-text p {
  margin-bottom: 20px;
}

.ph24-seo-text h3 {
  margin-top: 28px;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 600;
  color: var(--ph24-primary);
}

/* CUSTOMER SERVICE (Support) */

.ph24-cs-section {
  background-color: var(--ph24-bg);
  padding: 70px 0;
}

.ph24-cs-title {
  text-align: center;
  margin-bottom: 40px;
}

.ph24-cs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.ph24-cs-image-wrap {
  flex: 0 1 360px;
}

.ph24-cs-image {
  width: 100%;
  /*border-radius: var(--ph24-radius-lg);*/
  /*box-shadow: var(--ph24-shadow-soft);*/
}

.ph24-cs-content {
  flex: 0 1 440px;
}

.ph24-cs-text {
  font-size: 15px;
  color: var(--ph24-text-muted);
  margin: 0 0 20px;
}

.ph24-cs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ph24-cs-list li {
  margin-bottom: 18px;
}

.ph24-cs-phone-label {
  font-size: 14px;
  color: var(--ph24-text-muted);
}

.ph24-cs-phone {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--ph24-primary);
  margin-top: 2px;
}

.ph24-cs-phone:hover {
  color: var(--ph24-primary-dark);
}

/* CTA SECTION */

.ph24-cta-section {
  background-color: #fbc400;
  padding: 36px 0;
  text-align: center;
}

.ph24-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ph24-cta-text {
  font-size: 20px;
  font-weight: 600;
  color: #123039;
}

.ph24-cta-button {
  font-size: 17px;
  padding: 14px 34px;
}

/* MAP SECTION */

.ph24-map-section {
  background-color: #ffffff;
  padding: 70px 0;
}

.ph24-map-title {
  text-align: center;
  margin-bottom: 40px;
}

.ph24-map-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 992px) {
  .ph24-map-grid {
    flex-direction: row;
    align-items: flex-start;
  }
}

.ph24-map-frame {
  flex: 1 1 50%;
}

.ph24-map-text {
  flex: 1 1 50%;
  font-size: 15px;
  color: var(--ph24-text-muted);
  line-height: 1.6;
}

.ph24-map-text p {
  margin-bottom: 18px;
}

.ph24-map-address {
  font-size: 16px;
  font-weight: 600;
  color: var(--ph24-text-main);
}

/* ================================
   STEPS — как в макете
================================ */

.ph24-steps-section {
    background: #f7f9fc;
    padding: 70px 0;
}

.ph24-steps-title {
    text-align: center;
    margin-bottom: 35px;
}

.ph24-steps-line {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 28px;
}

.ph24-step {
    flex: 0 0 auto;
}

/* одинаковые карточки */
.ph24-step-card {
    width: 230px;
    height: 220px;
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(10, 20, 40, 0.08);
}

/* SVG иконки */
.ph24-step-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
    object-fit: contain;
}

/* Заголовок */
.ph24-step-heading {
    font-size: 15px;
    font-weight: 600;
    color: #192a3a;
    margin-bottom: 8px;
}

/* Описание */
.ph24-step-text {
    font-size: 13px;
    line-height: 1.4;
    color: #4e5a66;
    margin-top: auto;
    margin-bottom: 0;
}

/* Стрелка внутри карточки */
.ph24-step-arrow-inside {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
}

.ph24-step-arrow-inside img {
    width: 18px;
    height: 18px;
}

/* У последней карточки стрелка скрыта */
.ph24-step:last-child .ph24-step-arrow-inside {
    display: none;
}

/* Мобилка */
@media (max-width: 768px) {
    .ph24-step-arrow-inside {
        display: none;
    }
}

/* =========================================
   DESKTOP (≥992px) — 5 карточек в линию
========================================= */
@media (min-width: 992px) {
    .ph24-steps-line {
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 28px;
        flex-wrap: nowrap;
    }

    .ph24-step {
        flex: 0 0 auto;
    }

    .ph24-step-arrow-inside {
        display: block;
    }
}

/* ===== TABLET (768px–991px) — последняя карточка по центру ===== */

@media (min-width: 768px) and (max-width: 991px) {

    /* сетка: две колонки */
    .ph24-steps-line {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
        justify-items: center;
    }

    /* карточки */
    .ph24-step {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* делаем последнюю — по центру */
    .ph24-step:last-child {
        grid-column: 1 / -1;   /* занимает всю строку */
        display: flex;
        justify-content: center;
    }

    .ph24-step:last-child .ph24-step-card {
        margin-left: auto;
        margin-right: auto;
    }
}


/* =========================================
   MOBILE (≤767px) — 1 колонка, 5 рядов
========================================= */
@media (max-width: 767px) {

    .ph24-steps-line {
        display: flex;
        flex-direction: column;
        gap: 22px;
        align-items: center;
    }

    .ph24-step {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .ph24-step-card {
        width: 90%;
        max-width: 300px;
        height: auto; /* на мобилке позволяем высоте быть авто */
        padding: 24px 18px;
    }

    /* стрелки не нужны */
    .ph24-step-arrow-inside {
        display: none;
    }
}



/* FAQ SECTION */

.ph24-faq-section {
  background-color: #ffffff;
  padding: 70px 0;
}

.ph24-faq-title {
  text-align: center;
  margin-bottom: 40px;
}

.ph24-faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.ph24-faq-item {
  margin-bottom: 12px;
  border-radius: var(--ph24-radius-md);
  border: 1px solid var(--ph24-border-soft);
  overflow: hidden;
  background-color: #ffffff;
}

.ph24-faq-question {
  width: 100%;
  background: #ffffff;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--ph24-text-main);
}

.ph24-faq-question:hover {
  background-color: var(--ph24-bg-soft);
}

.ph24-faq-icon {
  font-size: 20px;
  transition: 0.2s ease;
}

.ph24-faq-answer {
  display: none;
  padding: 0 20px 16px 20px;
  font-size: 15px;
  color: var(--ph24-text-muted);
}

.ph24-faq-answer p {
  margin: 0;
}

.ph24-faq-item.open .ph24-faq-answer {
  display: block;
}

.ph24-faq-item.open .ph24-faq-icon {
  transform: rotate(45deg);
}

/* FOOTER */

.ph24-footer {
  background-color: #f4f7fa;
  padding: 60px 0 20px;
}

.ph24-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.ph24-footer-col {
  font-size: 15px;
  color: var(--ph24-text-muted);
}

.ph24-footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #3290fc;
  margin-bottom: 12px;
}

.ph24-footer-title {
  font-size: 16px;
  margin-bottom: 14px;
  color: var(--ph24-text-main);
  font-weight: 600;
}

.ph24-footer-links,
.ph24-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ph24-footer-links li,
.ph24-footer-contact li {
  margin-bottom: 10px;
}

.ph24-footer-links a {
  color: var(--ph24-text-muted);
}

.ph24-footer-links a:hover {
  color: var(--ph24-primary);
}

.ph24-footer-address {
  margin: 0 0 14px;
  color: var(--ph24-text-muted);
}

.ph24-footer-company {
  margin: 0;
  font-size: 14px;
  color: var(--ph24-text-muted);
}

.ph24-footer-bottom {
  background-color: #e9edf2;
  padding: 12px 0;
  font-size: 14px;
  color: var(--ph24-text-muted);
}

.ph24-footer-bottom-inner {
  text-align: center;
}

/* Градиент снизу картинки (как в макете) */

.ph24-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%; /* было 45% — теперь больше под новый формат */
    background: linear-gradient(
        to top,
        #3290fc 0%,
        rgba(50,144,252,0.35) 40%,
        rgba(255,255,255,0) 95%
    );
    pointer-events: none;
}

/* Текст на фото с обводкой */

.ph24-hero-label {
    position: absolute;
    bottom: 18px;
    right: 18px;
    z-index: 10;
	background: none;
}

/* синяя обводка вокруг белого текста */
.ph24-hero-line1 {
	font-size:30px;
	color: #3290fc;
    text-shadow:
        -2px -2px 2px #ffffff,
         2px -2px 2px #ffffff,
        -2px  2px 2px #ffffff,
         2px  2px 2px #ffffff;
}

.ph24-hero-line2 {
	font-size:20px;
    text-shadow:
        -2px -2px 2px #0b60a6,
         2px -2px 2px #0b60a6,
        -2px  2px 2px #0b60a6,
         2px  2px 2px #0b60a6;
}

/* Вторая строка чуть светлее */
.ph24-hero-line2 {
    opacity: 0.96;
}

/* USP (галочки / иконки возле текста) */

.ph24-usp-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ph24-usp-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #234;  /* нейтральный тёмно-синий */
    line-height: 1.35;
}

.ph24-usp-list img {
    width: 16px;     /* ← Идеальный размер под макет */
    height: 16px;
    margin-top: 2px; /* Чуть опускаем текст для выравнивания */
    flex-shrink: 0;  /* Чтобы иконка не сжималась */
}

/* ===== BURGER BUTTON ===== */

.ph24-burger-btn {
    display: none;
}

.ph24-burger-btn span {
    display: block;
    height: 3px;
    background: #ffffff;
    width: 100%;
    border-radius: 3px;
}

/* show on mobile */
@media (max-width: 991px) {
    .ph24-burger-btn {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);

        width: 32px;
        height: 24px;
        cursor: pointer;
        z-index: 2000;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .ph24-burger-btn span {
        display: block;
        width: 100%;
        height: 4px;
        background: white;
        border-radius: 3px;
    }

    /* скрываем desktop-меню */
    .ph24-header-left,
    .ph24-header-right {
        display: none;
    }
}


/* ===== OVERLAY ===== */

.ph24-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    z-index: 9980;
}


/* ===== MOBILE SLIDE MENU ===== */

.ph24-mobile-menu {
    position: fixed;
    top: 0;
    left: -270px;
    width: 270px;
    height: 100%;
    background: #ffffff;
    box-shadow: 3px 0 15px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 9990;
    transition: left .3s ease;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ph24-mobile-menu.open {
    left: 0;
}

.ph24-mobile-overlay.visible {
    display: block;
}


/* HEADER INSIDE MENU */

.ph24-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ph24-mobile-logo {
    height: 28px;
}

.ph24-mobile-close {
    font-size: 30px;
    cursor: pointer;
    user-select: none;
}


/* MENU ITEMS */

.ph24-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ph24-mobile-nav li a {
    color: #1a1f2b;
    font-size: 16px;
    font-weight: 500;
}


/* SHUTTLE BLOCK */

.ph24-mobile-shuttle {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e3e8ee;
}

.ph24-mobile-shuttle-label {
    font-size: 14px;
    color: #666;
}

.ph24-mobile-shuttle-phone {
    font-size: 18px;
    color: #007aff;
    font-weight: 600;
}

/* ==== MOBILE MENU — красивый отступ между пунктами ==== */

.ph24-mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 24px;          /* вот тут расстояние между пунктами */
    padding: 0;
    margin: 0;
}

.ph24-mobile-nav li a {
    color: #1a1f2b;
    font-size: 17px;   /* чуть крупнее */
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 2px 0;
    transition: color .2s ease;
}

.ph24-mobile-nav li a:hover {
    color: #007aff;     /* лёгкое подсветление */
}

/* datenschutz */
.ph24-footer-legal {
    text-align: center;
    padding: 10px 0 15px;
    font-size: 14px;
    color: #6b7280;
}

.ph24-footer-legal a {
    color: #6b7280;
    text-decoration: none;
    transition: color .2s ease;
}

.ph24-footer-legal a:hover {
    color: #2563eb; /* мягко подсвечивается синим */
}

.ph24-footer-legal .sep {
    margin: 0 6px;
    color: #9ca3af;
}

.ph24-page {
    padding: 60px 0;
}

.ph24-page-title {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a2b3a;
}

.ph24-page-content {
    font-size: 18px;
    line-height: 1.7;
    color: #363f48;
}

.ph24-page-content h2,
.ph24-page-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.ph24-page-content p {
    margin-bottom: 18px;
}

/* CONTACT PAGE */
.ph24-contact-page {
    padding: 60px 0;
}

.ph24-contact-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ph24-contact-intro {
    font-size: 18px;
    color: #4d5561;
    max-width: 650px;
    margin-bottom: 40px;
}

.ph24-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
}

/* LEFT SIDE */
.ph24-contact-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 600;
}

.ph24-info-block {
    margin-bottom: 22px;
}

/* FORM CARD */
.ph24-form-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 6px 26px rgba(0,0,0,0.06);
}

.ph24-contact-form label {
    display: block;
    margin-bottom: 18px;
    font-weight: 500;
}

.ph24-contact-form input,
.ph24-contact-form textarea {
    width: 100%;
    margin-top: 6px;
    padding: 12px 14px;
    border: 1px solid #d7dce3;
    border-radius: 10px;
    font-size: 16px;
    background: #f8fafc;
    transition: border-color .2s;
}

.ph24-contact-form input:focus,
.ph24-contact-form textarea:focus {
    border-color: #3290fc;
    outline: none;
}

/* BUTTON */
.ph24-btn-primary {
    background: #3290fc;
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-size: 17px;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    transition: background .2s;
}

.ph24-btn-primary:hover {
    background: #227be5;
}

/* MOBILE */
@media(max-width: 900px) {
    .ph24-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SIMPLE RESPONSIVE GALLERY ===== */

.ph24-gallery-page {
    padding-top: 40px;
    padding-bottom: 60px;
}

.ph24-gallery-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ph24-gallery-intro {
    max-width: 650px;
    margin-bottom: 35px;
    line-height: 1.6;
    color: #444;
}

.ph24-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ph24-gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

/* Tablet */
@media (max-width: 900px) {
    .ph24-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .ph24-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.ph24-h1 {
	font-size: 28px;
	
}

@media (max-width: 600px) {
	.ph24-h1 {
	font-size: 21px;
	
}
}

.oberpick {
    font-size: 16px;
    font-weight: 100;
}


.ph24-icon svg {
    width: 15px;
    height: 15px;
    color: #3290fcc7;
}

/* === 404 PAGE === */

.ph24-404 {
    padding: 80px 0;
    text-align: center;
}

.ph24-404-box {
    max-width: 600px;
    margin: 0 auto;
}

.ph24-404-num {
    font-size: 120px;
    font-weight: 700;
    color: #3290fc;
    line-height: 1;
    margin-bottom: 10px;
}

.ph24-404-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.ph24-404-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.ph24-404-btn {
    display: inline-block;
    background: #3290fc;
    color: #fff !important;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.2s ease;
}

.ph24-404-btn:hover {
    background: #0049c6;
}


/* ===============================
   HERO — MOBILE ORDER FIX
   Только мобильная версия
================================= */

@media (max-width: 991px) {

    /* Главный контейнер */
    .ph24-hero-grid {
        display: flex;
        flex-direction: column;
    }

    /* Левая колонка тоже колонка */
    .ph24-hero-left {
        display: flex;
        flex-direction: column;
    }

    /* 1️⃣ H1 */
    .ph24-h1 {
        order: 1;
    }

    /* 2️⃣ КАРТИНКА — сразу после H1 */
    .ph24-hero-right {
        order: 2;
        margin: 16px 0 20px;
    }

    /* 3️⃣ ФОРМА */
    .ph24-booking-card {
        order: 3;
    }

    /* 4️⃣ ТЕКСТ */
    .ph24-hero-subtitle {
        order: 4;
        margin-top: 18px;
    }

}

/* === HERO MOBILE — FINAL FIX === */
@media (max-width: 991px) {

    .ph24-hero-grid {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;          /* ❗ КЛЮЧ */
    }

    .ph24-hero-left,
    .ph24-hero-right {
        flex: none;                /* ❗ убираем 1 1 320px */
        width: 100%;
    }

    /* порядок блоков */

    .ph24-hero-eyebrow {
        order: 1;
    }

    .ph24-h1 {
        order: 2;
    }

    .ph24-hero-right {
        order: 3;
        margin: 16px 0 20px;
    }

    .ph24-booking-card {
        order: 4;
    }

    .ph24-hero-subtitle {
        order: 5;
        margin-top: 18px;
    }
}

