/* --- Глобальные настройки и переменные --- */
:root {
  /* Базовые цвета (Темная тема по умолчанию) */
  --color-background: #121212;
  --color-surface: #1E1E1E;
  --color-text-primary: #EAEAEA;
  --color-text-secondary: #A0A0A0;
  --color-border: #333;
  --color-shadow: rgba(0,0,0,0.2);

  /* Акцентные цвета */
  --color-accent-cta: #D4AF37;       /* Золотой для кнопок */
  --color-accent-cta-hover: #E8C35A;
  --color-accent-link: #D4AF37;      /* Золотой для ссылок (в темной теме контрастен) */
  
  /* Шрифты и размеры */
  --font-header: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-width: 1200px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (prefers-color-scheme: light) {
  :root {
    /* Переопределяем цвета для СВЕТЛОЙ ТЕМЫ */
    --color-background: #F9F9F9;
    --color-surface: #FFFFFF;
    --color-text-primary: #1A1A1A;
    --color-text-secondary: #6B7280;
    --color-border: #E5E7EB;
    --color-shadow: rgba(0,0,0,0.1);
    
    --color-accent-link: #005F73;
  }
}


/* --- Базовый сброс и настройки --- */
*, *:before, *:after {
    box-sizing: border-box;
    margin: 0; 
    padding: 0; 
}

html, body { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
}

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background-color: var(--color-background);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s ease, color 0.3s ease; 
}

.container {
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: block; 
}

.section-title {
    font-family: var(--font-header);
    font-weight: 700;
    color: var(--color-text-primary);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: left;
}

.about-section .section-title, 
.location-section .section-title {
    max-width: 100%; 
    text-align: left;
    text-wrap: pretty;
}

.rooms-section .section-title,
.testimonials-section .section-title,
.services-section .section-title,
.faq-section .section-title,
.journal-section .section-title { 
    text-align: center; 
    margin-bottom: 50px; 
}

#request-form .section-title {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left; 
    margin-bottom: 1rem; 
}

p { 
    color: var(--color-text-secondary); 
}

section { 
    padding: 100px 0; 
}

/* --- Хедер --- */
.main-header {
    position: fixed; top: 0; left: 0; width: 100%; padding: 20px 0; z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease; 
    display: flex; justify-content: center;
}
.main-header.scrolled { 
    background-color: var(--color-surface);
    box-shadow: 0 2px 10px var(--color-shadow);
}

.main-header .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-family: var(--font-header); font-size: 22px; font-weight: 700; color: var(--color-text-primary); text-decoration: none; z-index: 1; }
.main-nav { 
    display: none; 
    margin: 0 auto; 
}
.main-nav a { margin: 0 15px; text-decoration: none; color: var(--color-text-primary); font-weight: 500; position: relative; padding-bottom: 5px; }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background-color: var(--color-accent-link); transition: width 0.3s ease; }
.main-nav a:hover::after { width: 100%; }
.main-nav a, .footer-col a, .contact-link {
    transition: color 0.3s ease, opacity 0.3s ease;
}
.main-nav a:hover, .footer-col a:hover, .contact-link:hover {
    color: var(--color-accent-link);
    opacity: 0.85;
}


/* --- Кнопки --- */
.btn { display: inline-block; border-radius: 30px; padding: 10px 24px; font-family: var(--font-body); font-weight: 700; text-decoration: none; transition: var(--transition-smooth); cursor: pointer; text-align: center; }

.btn-primary { 
    background: var(--color-accent-cta); 
    color: var(--color-background); 
    border: 1px solid var(--color-accent-cta); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-size: 0.9rem; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.btn-primary:hover { 
    background: var(--color-accent-cta-hover); 
    border-color: var(--color-accent-cta-hover);
    color: var(--color-background); 
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.btn-primary:active {
    transform: translateY(0px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.btn-secondary { 
    background-color: rgba(128, 128, 128, 0.05); 
    color: var(--color-text-primary); 
    border: 1px solid var(--color-border); 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.btn-secondary:hover { 
    background-color: var(--color-accent-cta); 
    color: var(--color-background); 
    border-color: var(--color-accent-cta); 
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btn-secondary:active {
    transform: translateY(0px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}


.btn-tertiary {
    background: transparent;
    color: var(--color-accent-link);
    border: 1px solid transparent; 
    padding: 10px 15px; 
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: normal;
}
.btn-tertiary:hover {
    background-color: rgba(128, 128, 128, 0.1);
}


/* --- Гамбургер-меню --- */
.hamburger { display: block; border: none; background: none; cursor: pointer; z-index: 1010; padding: 0; }
.hamburger span { display: block; width: 25px; height: 3px; background-color: var(--color-text-primary); margin: 5px 0; transition: all 0.3s ease-in-out; }
.hamburger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Мобильная навигация --- */
body.mobile-menu-open .main-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-background);
    backdrop-filter: blur(10px);
    z-index: 1005;
}
body.mobile-menu-open .main-nav a { margin: 20px 0; font-size: 1.5rem; }

/* --- Секция Hero --- */
.hero-section {
    position: relative; height: 100vh;
    background: url('https://images.unsplash.com/photo-1473496169904-658ba7c44d8a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') no-repeat center center/cover;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
}

@media (min-width: 1025px) { 
    .hero-section {
        background-attachment: fixed;
    }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.65); 
    z-index: 1;
}
.hero-content {
    position: relative; 
    z-index: 2; 
    padding: 20px;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text-primary);
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.7); 
    -webkit-text-stroke: 0.5px var(--color-background); 
    paint-order: stroke fill;
}
.hero-content p {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    opacity: 0.95; 
    margin-top: 1rem;
    text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.7); 
    -webkit-text-stroke: 0.3px var(--color-background);
    paint-order: stroke fill;
}

@media (prefers-color-scheme: light) {
  .hero-content h1 {
    -webkit-text-stroke: 0.5px var(--color-background); 
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.35); 
  }
  .hero-content p {
    -webkit-text-stroke: 0.3px var(--color-background);
    text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.35);
  }
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll; 
    }
    .hero-content h1 {
        font-size: 2.2rem; 
    }
    .hero-content p {
        font-size: 1rem;
    }
}

/* --- Секция Social Proof --- */
.social-proof-section {
    padding: 30px 0;
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}
.social-proof-section .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.proof-item {
    text-align: center;
}
.proof-item span {
    font-size: 1.2rem;
    color: var(--color-accent-cta);
}
.proof-item p {
    margin-top: 5px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}
.proof-item p strong {
    color: var(--color-text-primary);
}


/* --- Секция "О нас" --- */
.about-section { 
    background-color: var(--color-background); 
    overflow-x: hidden; 
    padding-top: 100px;
}

.about-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.about-grid > * { min-width: 0; }
.about-image { min-width: 0; width: 100%; }
.about-image img { display: block; width: 100%; max-width: 100%; height: auto; border-radius: 8px; }
.about-text {
    min-width: 0;
    background-color: var(--color-surface);
    padding: 25px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px -10px var(--color-shadow);
    position: relative;
}
.contextual-cta {
    margin-top: 20px;
}

/* --- Секции с карточками --- */
.rooms-section, .services-section, .testimonials-section, .journal-section { 
    background-color: var(--color-background); 
}
.rooms-grid, .services-grid, .testimonials-grid, .journal-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 30px;
    margin-top: 0; 
}
.room-card, .service-item, .testimonial-card, .article-card { 
    background: var(--color-surface); 
    border-radius: 8px; 
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth); 
    overflow: hidden; 
}
.room-card:hover, .service-item:hover, .testimonial-card:hover, .article-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px var(--color-shadow);
}
.room-card, .article-card { display: flex; flex-direction: column; }
.room-card-image, .article-image { width: 100%; height: 220px; overflow: hidden; }
.room-card-image img, .article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); }
.room-card:hover .room-card-image img, .article-card:hover .article-image img { transform: scale(1.05); }
.room-card-content, .article-content { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.room-card h3, .article-card h4 { font-size: 1.3rem; margin-bottom: 10px; color: var(--color-text-primary); font-weight: 700; }
.article-card { text-decoration: none; }
.article-card h4 { font-size: 1.2rem; }
.article-content .link-arrow { margin-top: auto; color: var(--color-accent-link); text-decoration: none; font-weight: 500; }
.article-content .link-arrow::after { content: ' →'; }


.room-description { margin-bottom: 15px; flex-grow: 1; font-size: 0.95rem; } 

.room-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.room-popularity-hint {
    font-size: 0.85rem;
    color: var(--color-accent-link);
    margin-bottom: 15px;
    font-weight: 500;
}

.room-features {
    display: flex; flex-wrap: wrap; gap: 15px; padding-top: 15px;
    margin-top: auto; border-top: 1px solid var(--color-border);
    font-size: 0.85rem; color: var(--color-text-secondary);
}
.room-features span { display: flex; align-items: center; gap: 8px; }

.service-item { padding: 30px 25px; text-align: center; }
.service-icon { font-size: 2.5rem; color: var(--color-accent-cta); margin-bottom: 20px; line-height: 1; }
.service-item h3 { font-size: 1.25rem; color: var(--color-text-primary); margin-bottom: 10px; }
.service-item p { font-size: 0.9rem; color: var(--color-text-secondary); line-height: 1.6; }

.testimonial-card { padding: 30px; position: relative; box-shadow: 0 10px 25px var(--color-shadow); }
.testimonial-quote-mark { position: absolute; top: 15px; left: 20px; font-size: 5rem; font-family: var(--font-header); color: var(--color-accent-cta); opacity: 0.15; line-height: 1; z-index: 0; }
.testimonial-text { font-size: 1rem; line-height: 1.7; color: var(--color-text-primary); margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-rating { margin-bottom: 15px; }
.testimonial-rating span { font-size: 1.2rem; color: var(--color-accent-cta); margin-right: 2px; }
.testimonial-author { font-size: 0.9rem; color: var(--color-text-secondary); text-align: right; }

/* --- Секция Расположение и Карта --- */
.location-section { background-color: var(--color-background); }
.location-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.poi-list { list-style: none; padding-left: 0; margin: 20px 0; }
.poi-list li { padding-left: 25px; position: relative; margin-bottom: 10px; color: var(--color-text-secondary); }
.poi-list li::before { content: '✓'; position: absolute; left: 0; color: var(--color-accent-link); }
.location-map { width: 100%; min-height: 400px; border-radius: 8px; background-color: var(--color-surface); overflow: hidden; }

/* --- Секция FAQ --- */
.faq-section { background-color: var(--color-background); } 
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:last-child { border-bottom: none; }
.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; background: none; border: none; padding: 20px 0; text-align: left; font-family: var(--font-header); font-size: 1.1rem; color: var(--color-text-primary); cursor: pointer; transition: color 0.3s ease; }
.faq-question:hover { color: var(--color-accent-link); }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--color-accent-link); transition: transform 0.3s ease; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s ease-out, padding 0.4s ease-out; 
    color: var(--color-text-secondary); 
    font-size: 0.95rem; 
    line-height: 1.7;
    padding-left: 0;
    padding-right: 0;
}
.faq-item.active .faq-answer {
    padding-top: 10px;
    padding-bottom: 20px;
}


/* --- Секция Заявки --- */
.request-section { background-color: var(--color-surface); }

.form-popularity-hint {
    font-size: 0.9rem;
    color: var(--color-accent-link);
    text-align: center;
    margin-bottom: 1rem; 
    font-weight: 500;
}

.price-estimation {
    background-color: var(--color-background);
    color: var(--color-text-secondary);
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px dashed var(--color-border);
    text-align: center;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease, padding 0.5s ease, margin-bottom 0.5s ease;
}
.price-estimation.visible {
    opacity: 1;
    max-height: 100px; 
    padding: 15px 20px;
    margin-bottom: 20px;
}
.price-estimation strong {
    color: var(--color-text-primary);
    font-weight: 600;
}


.value-proposition {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 20px 25px;
    margin: 0 auto 2rem; 
    max-width: 800px;
}
.value-proposition h4 {
    color: var(--color-text-primary);
    font-family: var(--font-header); font-weight: 700;
    margin-top: 0; margin-bottom: 15px; font-size: 1.1rem;
}
.value-proposition ul { list-style: none; padding-left: 0; margin-bottom: 0; }
.value-proposition li {
    color: var(--color-text-secondary); margin-bottom: 10px;
    padding-left: 28px; position: relative; font-size: 0.95rem;
}
.value-proposition li:last-child { margin-bottom: 0; }
.value-proposition li::before {
    content: '✓'; color: var(--color-accent-link); position: absolute;
    left: 0; top: 1px; font-weight: bold; font-size: 1.1rem;
}
.value-proposition li strong { color: var(--color-text-primary); font-weight: 500; }

.section-subtitle { text-align: left; max-width: 800px; margin: 0 auto 3rem; color: var(--color-text-secondary); }
.booking-form { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-row { display: flex; flex-direction: column; gap: 15px; }
.form-group { flex: 1; display: flex; flex-direction: column; }
.form-group label { margin-bottom: 8px; font-size: 0.9rem; color: var(--color-text-secondary); }
.form-group input, .form-group select, .form-group textarea {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 6px; padding: 12px 15px; color: var(--color-text-primary);
    font-family: var(--font-body); font-size: 1rem; transition: var(--transition-smooth);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--color-accent-link);
    box-shadow: 0 0 0 2px var(--color-accent-link);
}

.form-step {
    display: none; 
    flex-direction: column;
    gap: 15px; 
}
.form-step.active {
    display: flex; 
}
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    gap: 15px;
}
.form-navigation .next-step,
.form-navigation .prev-step,
.form-navigation .btn-full-step {
    flex-grow: 1; 
    flex-basis: 0; 
}
.form-step[data-step="1"] .form-navigation .next-step {
    margin-left: auto; 
}
.btn-full-step { 
    width: auto; 
    padding: 15px;
    font-size: 1rem;
}


.direct-contact { text-align: center; margin-top: 30px; color: var(--color-text-secondary); }
.contact-link { color: var(--color-accent-link); text-decoration: none; margin: 0 10px; font-weight: 500; }

.success-message {
    display: none; padding: 30px; margin: 20px 0;
    border: 1px solid var(--color-accent-link); border-radius: 8px;
    text-align: center; background-color: var(--color-background);
}
.success-message h3 { color: var(--color-accent-link); margin-bottom: 10px; }

/* --- Футер --- */
.main-footer { background-color: #0c0c0c; padding: 50px 0 30px; margin-top: 80px; border-top: 1px solid #222; }
@media (prefers-color-scheme: light) {
  .main-footer {
    background-color: #E5E7EB;
    border-top: 1px solid #D1D5DB;
  }
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; text-align: center; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 15px; color: var(--color-text-primary); font-weight: 700; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--color-text-secondary); text-decoration: none; transition: color 0.3s ease; }
.footer-col address { font-style: normal; line-height: 1.8; }
.footer-bottom { border-top: 1px solid var(--color-border); padding-top: 30px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.footer-bottom p { color: var(--color-text-secondary); margin-bottom: 15px; }
.social-links a { color: var(--color-text-secondary); margin: 0 10px; text-decoration: none; font-size: 1.2rem; transition: color 0.3s ease; }

/* --- Плавающие и липкие элементы --- */
.fab-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}
.fab-whatsapp svg {
    width: 26px; 
    height: 26px;
    display: block;
}
.fab-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-surface);
    padding: 15px 0;
    box-shadow: 0 -2px 10px var(--color-shadow);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    display: none; /* Скрыто по умолчанию, JS покажет на десктопе */
}
.sticky-cta-bar.visible {
    transform: translateY(0);
}
.sticky-cta-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sticky-cta-bar p {
    margin: 0;
    color: var(--color-text-primary);
    font-weight: 500;
}


/* --- Стили для календаря (flatpickr) --- */
.flatpickr-calendar {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--color-shadow);
    color: var(--color-text-primary);
    font-family: var(--font-body);
}
.flatpickr-months .flatpickr-month, 
.flatpickr-weekdays, 
.flatpickr-weekday,
span.flatpickr-weekday {
    background: var(--color-surface);
    color: var(--color-text-primary);
}
.flatpickr-day {
    color: var(--color-text-secondary);
}
.flatpickr-day:hover, .flatpickr-day:focus {
    background: var(--color-background);
    border-color: var(--color-background);
    color: var(--color-text-primary);
}
.flatpickr-day.today {
    border-color: var(--color-accent-link);
    color: var(--color-accent-link);
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange,
.flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover {
    background: var(--color-accent-cta);
    border-color: var(--color-accent-cta);
    color: var(--color-background);
}
.flatpickr-day.inRange {
    background: rgba(212, 175, 55, 0.2);
    border-color: transparent;
    box-shadow: -5px 0 0 rgba(212, 175, 55, 0.2), 5px 0 0 rgba(212, 175, 55, 0.2);
    color: var(--color-text-primary);
}
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
    fill: var(--color-text-primary);
}
.numInput, .numInputWrapper, .flatpickr-current-month input.cur-year {
    color: var(--color-text-primary);
}


/* --- Адаптивность --- */
@media (max-width: 767px) {
    .header-actions .btn-primary {
        display: none;
    }
    .sticky-cta-bar {
        display: none !important; /* Важно, чтобы на мобильных не показывалась */
    }
}

@media (min-width: 600px) { 
    .rooms-grid, .services-grid, .testimonials-grid, .journal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-navigation .next-step,
    .form-navigation .prev-step,
    .form-navigation .btn-full-step {
        flex-grow: 0; 
        flex-basis: auto;
    }
    .form-navigation .btn-full-step {
        width: auto; 
        padding: 10px 30px; 
    }
}

@media (min-width: 768px) {
    .sticky-cta-bar {
        display: block;
    }
    .logo { font-size: 24px; }
    .btn-primary { padding: 10px 30px; }
    .hamburger { display: none; }
    .main-nav { display: flex; }
    .hero-content h1 { font-size: 5rem; } 
    .hero-content p { font-size: 1.2rem; }
    
    .about-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 50px; 
        align-items: center;
    }
    .about-text { 
        padding: 50px;   
        margin-left: 0; 
        margin-top: 0; 
        box-shadow: 0 25px 50px -12px var(--color-shadow); 
    }

    .location-grid { grid-template-columns: 1fr 1.5fr; }
    .location-info { text-align: left; }
    
    .form-row { flex-direction: row; } 
    
    #request-form .section-title, 
    #request-form .section-subtitle { text-align: left; } 
    
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; text-align: left; }
    .footer-bottom { flex-direction: row; justify-content: space-between; }
    .footer-bottom p { margin-bottom: 0; }
}

@media (min-width: 1024px) { 
    .services-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
}

@media (min-width: 992px) {
    .rooms-section .section-title,
    .testimonials-section .section-title,
    .services-section .section-title,
    .faq-section .section-title,
    .journal-section .section-title { 
         text-align: center; 
    }
}