/* ===========================
   ПЕРЕМЕННЫЕ И БАЗОВЫЕ СТИЛИ
   =========================== */

:root {
    /* Цветовая гамма - бежевые оттенки */
    --primary-beige: #f5f1e8;
    --light-cream: #faf8f3;
    --sand: #e8dcc8;
    --coffee-milk: #d4c4b0;
    --dark-brown: #3d2817;
    --text-dark: #2c2416;
    
    /* Неоновый оранжевый акцент */
    --neon-orange: #ff9f1c;
    --neon-glow: rgba(255, 159, 28, 0.5);
    
    /* Служебные цвета */
    --success: #4caf50;
    --error: #f44336;
    --border-light: #e0d5c5;
    
    /* Размеры */
    --border-radius: 10px;
    --transition: all 0.3s ease;
    
    /* Шрифты */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-beige);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================
   УТИЛИТЫ И КОНТЕЙНЕРЫ
   =========================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
    font-weight: 700;
}

.decorative-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-orange), var(--coffee-milk));
    margin: 0 auto 30px;
    border-radius: 2px;
}

/* ===========================
   НАВИГАЦИЯ
   =========================== */

.navbar {
    background-color: var(--light-cream);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-brown);
}

.logo-icon {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===========================
   КНОПКИ
   =========================== */

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--neon-orange);
    color: white;
    box-shadow: 0 0 15px var(--neon-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--neon-glow), 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-brown);
    border: 2px solid var(--dark-brown);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--coffee-milk);
    color: var(--dark-brown);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 0 15px var(--neon-glow), inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.admin-page .admin-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 30px 20px;
}

.admin-page .admin-card,
.admin-page .admin-dashboard {
    background: rgba(250, 248, 243, 0.95);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.admin-page .admin-login h1,
.admin-page .admin-dashboard h1 {
    font-family: var(--font-heading);
    margin-bottom: 12px;
    color: var(--dark-brown);
}

.admin-page {
    font-size: 18px;
}

.admin-page .btn {
    padding: 14px 20px;
    font-size: 1.05rem;
}

.admin-page .admin-card,
.admin-page .admin-dashboard {
    transform: translateZ(0);
}

.admin-page label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-brown);
}

.admin-page input,
.admin-page select,
.admin-page textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    background: white;
}

.admin-page table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-page th,
.admin-page td {
    padding: 16px 14px;
    border: 1px solid var(--border-light);
    vertical-align: top;
    font-size: 1rem;
    white-space: normal;
}

.admin-page th {
    background: var(--light-cream);
    color: var(--dark-brown);
    font-weight: 700;
}

.admin-page .admin-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.admin-table-wrapper {
    margin-top: 18px;
    overflow: auto;
    max-height: 60vh;
    border-radius: 8px;
    background: white;
    padding: 8px;
}

.admin-page table thead th {
    position: sticky;
    top: 0;
    background: var(--light-cream);
    z-index: 2;
}

.admin-page tbody tr:nth-child(odd) {
    background: rgba(240,235,228,0.6);
}

.admin-page td input, .admin-page td select {
    font-size: 0.98rem;
    padding: 8px 10px;
    width: 100%;
    box-sizing: border-box;
}

.admin-page .admin-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.admin-page .summary-card {
    background: var(--primary-beige);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 18px;
    text-align: center;
}

.admin-page .summary-card h3 {
    margin-bottom: 10px;
    color: var(--dark-brown);
}

.admin-page .summary-card p {
    font-size: 1.4rem;
    font-weight: 700;
}

.hidden {
    display: none;
}

.admin-delete-btn {
    background-color: #f44336;
    color: white;
    border: none;
}

.admin-delete-btn:hover {
    opacity: 0.9;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 40, 23, 0.35), rgba(212, 196, 176, 0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   О НАС
   =========================== */

.about {
    padding: 80px 0;
    background-color: var(--light-cream);
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
    row-gap: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--neon-orange);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    color: var(--coffee-milk);
    margin-top: 10px;
    font-size: 1rem;
}

/* ===========================
   НОМЕРА
   =========================== */

.rooms {
    padding: 80px 0;
    background-color: var(--primary-beige);
}

.rooms-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.room-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid var(--border-light);
    cursor: pointer;
}

.room-card:hover,
.room-card:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 159, 28, 0.15);
    border-color: var(--neon-orange);
    outline: none;
}

.room-image {
    position: relative;
    flex: 0 0 320px;
    min-height: 260px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 2;
    transition: var(--transition);
}

.room-card:hover .room-overlay {
    opacity: 0;
    background-color: rgba(255, 255, 255, 0);
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.room-info h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--dark-brown);
    margin-bottom: 0;
    font-weight: 700;
}

.room-price {
    font-size: 2.2rem;
    color: var(--neon-orange);
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.room-price span {
    font-size: 0.9rem;
    color: var(--coffee-milk);
    font-weight: 400;
}

/* Make the numeric price prominent even though other spans are smaller */
.room-price .price-value {
    font-size: 2.4rem;
    color: var(--neon-orange);
    font-weight: 900;
    line-height: 1;
    margin-right: 6px;
}

.room-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.room-features li {
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 10px 14px;
    border-radius: 999px;
    background-color: var(--light-cream);
    border: 1px solid var(--border-light);
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: fit-content;
}

.room-features li::before {
    content: '✓';
    margin-right: 8px;
    color: var(--neon-orange);
    font-weight: 700;
    position: static;
}

.room-features li:last-child {
    border-bottom: none;
}

.room-modal .modal-content {
    max-width: 1000px;
    width: min(95vw, 1000px);
    padding: 30px;
}

.room-modal-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: start;
}

.room-modal-gallery {
    display: grid;
    gap: 12px;
}

.room-modal-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--border-light);
}

.room-modal-info h2 {
    font-family: var(--font-heading);
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.room-modal-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--neon-orange);
    margin-bottom: 12px;
}

.room-modal-info p {
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.room-modal-section {
    margin-top: 20px;
}

.room-modal-section h3 {
    font-family: var(--font-heading);
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.room-modal-section ul {
    list-style: none;
    padding-left: 0;
}

.room-modal-section li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.room-modal-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--neon-orange);
    font-weight: 700;
}

.room-modal-section li:last-child {
    border-bottom: none;
}

/* ===========================
   УСЛУГИ
   =========================== */

.services {
    padding: 80px 0;
    background-color: var(--primary-beige);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 159, 28, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 159, 28, 0.15);
    border-color: var(--neon-orange);
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.service-icon.material-icons {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--neon-orange);
    font-family: 'Material Icons';
}

.service-card p {
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    text-align: left;
    background-color: var(--primary-beige);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.service-features li:last-child {
    border-bottom: none;
}

/* ===========================
   ФОРМА БРОНИРОВАНИЯ
   =========================== */

.booking {
    padding: 80px 0;
    background-color: var(--light-cream);
}

.booking-form-wrapper {
    background-color: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-light);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--primary-beige);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-orange);
    background-color: white;
    box-shadow: 0 0 10px var(--neon-glow);
}

.form-group textarea {
    min-height: 170px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--coffee-milk);
}

/* ===========================
   КОНТАКТЫ
   =========================== */

.contacts {
    padding: 80px 0;
    background-color: var(--primary-beige);
}

.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.contact-icon.material-icons {
    font-size: 2.2rem;
    min-width: 50px;
    text-align: center;
    color: var(--neon-orange);
    font-family: 'Material Icons';
}

.contact-item h4 {
    font-family: var(--font-heading);
    color: var(--dark-brown);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-item a {
    color: var(--neon-orange);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===========================
   ФУТЕР
   =========================== */

.footer {
    background-color: var(--dark-brown);
    color: var(--primary-beige);
    padding: 30px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--primary-beige);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--neon-orange);
}

/* ===========================
   МОДАЛЬНОЕ ОКНО
   =========================== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
    overflow-y: auto;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--light-cream);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: slideIn 0.3s ease-out;
    border: 2px solid var(--neon-orange);
    box-shadow: 0 0 30px var(--neon-glow);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--neon-orange);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease-out 0.1s both;
}

.modal-content h2 {
    font-family: var(--font-heading);
    color: var(--dark-brown);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.modal-content p {
    color: var(--text-dark);
    margin-bottom: 25px;
}

.booking-details {
    background-color: var(--primary-beige);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: left;
}

.booking-details p {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 10px;
    gap: 12px;
    flex-wrap: wrap;
}

.booking-details p span,
.booking-details p strong {
    min-width: 120px;
}

.booking-details p strong {
    flex: 1;
    color: var(--dark-brown);
    word-break: break-word;
    white-space: pre-wrap;
}

.booking-details p strong.booking-notes {
    display: block;
    margin-top: 4px;
    color: #4b4b4b;
}

.booking-details p:last-child {
    border-bottom: none;
}

.notes-meta {
    margin-top: 8px;
    text-align: right;
    font-size: 0.9rem;
    color: var(--coffee-milk);
}

#notes {
    resize: vertical;
}

.notes-meta {
    margin-top: 6px;
    font-size: 0.95rem;
    color: var(--coffee-milk);
}

.admin-page #detailFields > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.admin-page #detailFields > div div:last-child {
    flex: 1;
    text-align: right;
    white-space: pre-wrap;
    word-break: break-word;
}

.booking-details strong {
    color: var(--dark-brown);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===========================
   FADE-IN ПРИ ПРОКРУТКЕ
   =========================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   АДАПТИВНЫЕ СТИЛИ
   =========================== */

@media (max-width: 1024px) {
    .navbar-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contacts-layout {
        grid-template-columns: 1fr;
    }

    .footer .container {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rooms-grid {
        flex-direction: column;
        gap: 20px;
    }

    .booking-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        max-width: 90%;
        padding: 30px 20px;
    }

    .modal-content h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 10px;
        font-size: 0.9rem;
    }

    .hero {
        height: 300px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .about,
    .services,
    .rooms,
    .booking,
    .contacts {
        padding: 40px 0;
    }

    .service-card {
        padding: 20px 15px;
    }

    .room-card {
        border: 1px solid var(--border-light);
        flex-direction: column;
    }

    .room-image {
        width: 100%;
        flex: none;
        height: 200px;
    }

    .room-info {
        padding: 15px;
    }

    .room-info h3 {
        font-size: 1.2rem;
    }

    .room-price {
        font-size: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .booking-form-wrapper {
        padding: 20px 15px;
    }

    .booking-form {
        gap: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 16px;
    }

    .modal-content {
        padding: 25px 15px;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-icon {
        font-size: 1.8rem;
    }
}
