* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f41;
    --secondary-color: #4a7c59;
    --accent-color: #6b9f7a;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Top Navigation Bar */
.header-top {
    background: #4a4a4a;
    padding: 12px 0;
    position: relative;
}

.nav-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.nav-top a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-top a:hover {
    opacity: 0.8;
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--bg-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:first-child {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-btn.active span:last-child {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Header Section */
.header-main {
    background: #f5f1eb;
    padding: 25px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-box {
    width: 80px;
    height: 80px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.company-name {
    font-size: 28px;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0;
    line-height: 1.2;
}

.company-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-name a:hover {
    color: var(--primary-color);
}

.company-activity {
    font-size: 16px;
    color: #2a2a2a;
    margin: 0;
    font-weight: 400;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.phone-label {
    display: none;
}

.phone-number {
    font-size: 20px;
    font-weight: 700;
    color: #2a2a2a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--bg-white);
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 2px solid transparent;
}

.social-icon.whatsapp {
    background: #25D366;
}

.social-icon.telegram {
    background: #0088cc;
}

.social-icon:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-book-header {
    background: #2a2a2a;
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-book-header:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    color: var(--bg-white);
}

/* Hero Section */
.hero {
    background-image: url('./foto/001.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--bg-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: visible;
    padding-bottom: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 80px 20px 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: var(--bg-white);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 15px;
    opacity: 1;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    color: var(--bg-white);
}

.hero-address {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    color: var(--bg-white);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.hero-address:hover {
    opacity: 1;
    transform: translateY(-2px);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    text-decoration: underline;
}

/* Hero Features Cards */
.hero-features {
    position: relative;
    z-index: 2;
    margin-top: -100px;
    padding-bottom: 40px;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-feature-card {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.3;
}

.hero-feature-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-hero {
    background: #ff6b35;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    font-size: 18px;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    margin-top: 0;
}

.btn-hero:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--bg-white);
    width: 100%;
    margin-top: 20px;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-telegram {
    background: #0088cc;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-telegram:hover {
    background: #006ba3;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

/* About Section */
.about {
    background: #f5f1eb;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #2a2a2a;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Running Banner Section */
.running-banner {
    background: #f5f1eb;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f1eb 0%, #e8e0d6 50%, #f5f1eb 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.running-banner-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    transform: rotate(-2deg);
    background: linear-gradient(135deg, #2c5f41 0%, #4a7c59 100%);
    padding: 15px 0;
    min-width: 100vw;
}

.running-banner-content {
    display: inline-flex;
    white-space: nowrap;
    animation: scrollText 30s linear infinite;
    gap: 0;
    will-change: transform;
    background: transparent;
    padding: 0;
    width: max-content;
}

.running-banner-content span {
    display: inline-block;
    background: transparent;
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 600;
    padding: 0 40px;
    border-radius: 0;
    box-shadow: none;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    line-height: 1.2;
}

.running-banner-content span::after {
    content: '•';
    margin: 0 20px;
    opacity: 0.7;
}

.running-banner-content span:last-child::after {
    display: none;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Advantages Section */
.advantages {
    background: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.advantage-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.advantage-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Rooms Section */
.rooms {
    background: var(--bg-white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card-featured {
    background: #f5f1eb;
    border: 2px solid rgba(44, 95, 65, 0.2);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.room-card-featured:hover {
    border-color: rgba(44, 95, 65, 0.4);
}

.room-image {
    height: 220px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.room-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-features {
    list-style: none;
    margin-bottom: 20px;
}

.room-features li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 5px;
}

.btn-address {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 100%;
    margin-bottom: 15px;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-address:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 65, 0.3);
}

.room-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: auto;
}

.room-content .btn-secondary {
    margin-top: 0;
}

.rooms-disclaimer {
    margin-top: 40px;
    padding: 20px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.rooms-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Room Features Section */
.room-features-section {
    background: #f5f1eb;
    padding: 80px 0;
    position: relative;
}

.room-features-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: floatCard 6s ease-in-out infinite;
    max-width: 1000px;
    margin: 0 auto;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.room-features-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.room-features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 30px;
    margin-bottom: 35px;
}

.room-feature-group {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.room-feature-group:nth-child(1) {
    animation-delay: 0.1s;
}

.room-feature-group:nth-child(2) {
    animation-delay: 0.2s;
}

.room-feature-group:nth-child(3) {
    animation-delay: 0.3s;
}

.room-feature-group:nth-child(4) {
    animation-delay: 0.4s;
}

.room-feature-group:nth-child(5) {
    animation-delay: 0.5s;
}

.room-feature-group:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.room-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c5a 0%, #ff6b35 100%);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(255, 107, 53, 0.5);
    }
}

.room-feature-text {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.room-features-footer {
    font-size: 18px;
    color: var(--text-dark);
    text-align: center;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-features {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    font-family: inherit;
}

.btn-features:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Gallery Section */
.gallery {
    background: #f5f1eb;
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    opacity: 0;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.gallery-icon {
    font-size: 32px;
    color: var(--bg-white);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* FAQ Section */
.faq {
    background: var(--bg-white);
    padding: 80px 0;
}

.faq-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    padding-top: 10px;
}

/* Addresses Section */
.addresses {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.addresses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(44, 95, 65, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(74, 124, 89, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.addresses-content {
    position: relative;
    z-index: 1;
}

.address-group {
    margin-bottom: 60px;
}

.address-group:last-child {
    margin-bottom: 0;
}

.address-group-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.address-group-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.address-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
    animation-delay: calc(var(--delay, 0) * 0.1s);
}

.address-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 95, 65, 0.1), transparent);
    transition: left 0.5s ease;
}

.address-card:hover::before {
    left: 100%;
}

.address-card:nth-child(1) { --delay: 0; }
.address-card:nth-child(2) { --delay: 1; }
.address-card:nth-child(3) { --delay: 2; }
.address-card:nth-child(4) { --delay: 3; }
.address-card:nth-child(5) { --delay: 4; }
.address-card:nth-child(6) { --delay: 5; }
.address-card:nth-child(7) { --delay: 6; }
.address-card:nth-child(8) { --delay: 7; }
.address-card:nth-child(9) { --delay: 8; }
.address-card:nth-child(10) { --delay: 9; }
.address-card:nth-child(11) { --delay: 10; }
.address-card:nth-child(12) { --delay: 11; }
.address-card:nth-child(13) { --delay: 12; }
.address-card:nth-child(14) { --delay: 13; }
.address-card:nth-child(15) { --delay: 14; }

.address-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(44, 95, 65, 0.2);
    border: 1px solid rgba(44, 95, 65, 0.2);
}

.address-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(44, 95, 65, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.address-card:hover .address-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(44, 95, 65, 0.3);
}

.address-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.address-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.address-text:hover {
    color: var(--primary-color);
}

.address-card:hover .address-text {
    color: var(--primary-color);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(44, 95, 65, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(44, 95, 65, 0.4);
    }
}

/* Booking CTA Section */
.booking-cta {
    background-image: url('./foto/koridor.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.booking-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.booking-cta-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.booking-cta-text {
    color: var(--bg-white);
}

.booking-cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.booking-cta-subtitle {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.booking-cta-note {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.booking-cta-form {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    animation: floatForm 4s ease-in-out infinite;
}

@keyframes floatForm {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.booking-form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.booking-form-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-telegram-booking {
    background: #0088cc;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.btn-telegram-booking:hover {
    background: #006ba3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.btn-telegram-booking svg {
    flex-shrink: 0;
}

/* Booking Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 65, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232a2a2a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--primary-color);
}

.form-checkbox label {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
}

.form-checkbox .required-asterisk {
    color: #e74c3c;
    margin-right: 2px;
}

.form-checkbox label a {
    color: #e85c4a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-checkbox label a:hover {
    color: #c0392b;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 65, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Reviews Section */
.reviews {
    background: #f5f1eb;
    padding: 80px 0;
    overflow-x: hidden;
}

.reviews-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    overflow: hidden;
}

.reviews-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-width: 0;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.review-card {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
    background: var(--bg-white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    animation: floatReview 4s ease-in-out infinite;
    animation-delay: calc(var(--index) * 0.2s);
}

@keyframes floatReview {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.review-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-width: 0;
    overflow-wrap: break-word;
}

.review-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 5px 0;
}

.review-label {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #2a2a2a;
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.slider-btn:hover {
    background: #1a1a1a;
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: #ff6b35;
    width: 30px;
    border-radius: 5px;
}

/* Contacts Section */
.contacts {
    background: var(--bg-light);
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    perspective: 1000px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1),
                0 20px 60px rgba(44, 95, 65, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: translateY(-15px) rotateX(2deg) rotateY(-2deg);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.contact-item:hover {
    transform: translateY(-20px) rotateX(5deg) rotateY(-5deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 30px 80px rgba(44, 95, 65, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-icon {
    font-size: 48px;
    flex-shrink: 0;
    transform: translateZ(20px);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: translateZ(20px) scale(1);
    }
    50% {
        transform: translateZ(20px) scale(1.1);
    }
}

.contact-details {
    transform: translateZ(10px);
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    transform: translateZ(15px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-details a:hover {
    color: var(--secondary-color);
    transform: translateZ(20px) scale(1.05);
    text-shadow: 0 4px 8px rgba(44, 95, 65, 0.3);
}

.contact-cta {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-cta h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-cta p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
}

.footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.footer-logo a:hover {
    opacity: 0.8;
}

.logo-text {
    color: var(--bg-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-text:hover {
    color: var(--accent-color);
}

.footer-info {
    flex: 1;
    text-align: center;
}

.footer-info p {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--bg-white);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer-contacts a {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contacts a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social .social-icon {
    width: 36px;
    height: 36px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.modal-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Gallery Modal */
.gallery-modal {
    z-index: 2000;
}

.gallery-modal-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    font-weight: 300;
    color: var(--bg-white);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    z-index: 10;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.gallery-modal-close:hover {
    color: #ff6b35;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-nav-btn:hover {
    background: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.gallery-nav-prev {
    left: 20px;
}

.gallery-nav-next {
    right: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-top {
        gap: 20px;
        font-size: 14px;
    }

    .reviews .container {
        padding: 0 20px;
    }

    .review-card {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .reviews-track {
        gap: 15px;
    }

    .reviews-slider-wrapper {
        gap: 15px;
    }

    .gallery {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
    }

    .faq {
        padding: 60px 0;
    }

    .faq-list {
        margin-top: 40px;
    }

    .addresses {
        padding: 60px 0;
    }

    .addresses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .faq-question {
        padding: 20px 25px;
        font-size: 17px;
    }

    .faq-answer {
        padding: 0 25px;
    }

    .faq-item.active .faq-answer {
        padding: 0 25px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .booking-cta {
        min-height: 550px;
        background-attachment: scroll;
    }

    .booking-cta-title {
        font-size: 38px;
    }

    .booking-cta-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .nav-top {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #4a4a4a;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1001;
    }

    .nav-top.active {
        display: flex;
    }

    .nav-top a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: left;
    }

    .nav-top a:last-child {
        border-bottom: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .header-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .header-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0;
    }

    .phone-label {
        display: none;
    }

    .contact-item {
        justify-content: flex-start;
        padding: 25px 30px;
        gap: 15px;
    }

    .contact-icon {
        font-size: 40px;
    }

    .contact-details {
        text-align: left;
    }

    .contact-details h3 {
        font-size: 18px;
    }

    .contact-details a {
        font-size: 20px;
    }

    .company-name {
        font-size: 24px;
    }

    .company-activity {
        font-size: 14px;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-feature-card {
        padding: 30px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-title {
        font-size: 36px;
    }

    .about-image {
        min-height: 400px;
        order: -1;
    }

    .about-image img {
        border-radius: 20px;
    }

    .contacts-content {
        grid-template-columns: 1fr;
    }

    .advantages-grid,
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 100vh;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 60px 20px 150px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-address {
        font-size: 16px;
    }

    .hero-features {
        margin-top: -80px;
        padding-bottom: 30px;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-feature-card {
        padding: 25px 20px;
    }

    .hero-feature-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .hero-feature-title {
        font-size: 18px;
    }

    .hero-feature-text {
        font-size: 14px;
    }

    .btn-hero {
        font-size: 16px;
        padding: 16px 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .advantages-grid,
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .rooms-disclaimer {
        margin-top: 30px;
        padding: 15px 20px;
    }

    .rooms-disclaimer p {
        font-size: 12px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 15px;
    }

    .about-image {
        min-height: 300px;
    }

    .room-features-section {
        padding: 60px 0;
    }

    .room-features-card {
        padding: 40px 25px;
        border-radius: 16px;
    }

    .room-features-title {
        font-size: 24px;
        margin-bottom: 30px;
        line-height: 1.4;
    }

    .room-features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }

    .room-feature-group {
        gap: 15px;
    }

    .room-feature-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .room-feature-text {
        font-size: 16px;
    }

    .room-features-footer {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .room-features-list {
        grid-template-columns: 1fr;
    }

    .btn-features {
        font-size: 16px;
        padding: 14px 32px;
        width: 100%;
    }

    .reviews {
        padding: 60px 0;
    }

    .reviews .container {
        padding: 0 20px;
        max-width: 100%;
    }

    .reviews .section-header {
        padding: 0;
    }

    .reviews-slider-wrapper {
        gap: 0;
        margin-top: 30px;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .slider-btn {
        display: none;
    }

    .reviews-slider {
        width: 100%;
        max-width: 100%;
    }

    .reviews-track {
        gap: 0;
    }

    .review-card {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        padding: 30px 20px;
        margin: 0;
        border-radius: 0;
        box-sizing: border-box;
    }

    .review-content {
        gap: 20px;
        display: flex;
        flex-direction: column;
    }

    .review-text {
        order: 1;
    }

    .review-author {
        order: 2;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 15px;
    }

    .review-avatar {
        display: block;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .review-info {
        flex: 1;
        min-width: 0;
    }

    .review-text {
        font-size: 15px;
    }

    .review-name {
        font-size: 18px;
        overflow-wrap: break-word;
    }

    .slider-dots {
        margin-top: 25px;
        gap: 8px;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
        background: rgba(255, 107, 53, 0.2);
    }

    .slider-dot.active {
        background: #ff6b35;
        width: 12px;
        height: 12px;
        height: 60px;
    }

    .booking-cta {
        min-height: 500px;
        padding: 60px 0;
        background-attachment: scroll;
    }

    .booking-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-cta-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .booking-cta-subtitle {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .booking-cta-note {
        font-size: 16px;
    }

    .booking-cta-form {
        padding: 30px 25px;
    }

    .booking-form-title {
        font-size: 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .form-checkbox {
        margin-top: 10px;
    }

    .form-checkbox label {
        font-size: 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq {
        padding: 50px 0;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .addresses {
        padding: 50px 0;
    }

    .address-group-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .address-group-title::after {
        width: 60px;
    }

    .addresses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .address-card {
        padding: 25px 20px;
        gap: 15px;
    }

    .address-icon-wrapper {
        width: 45px;
        height: 45px;
        padding: 8px;
    }

    .address-text {
        font-size: 15px;
    }

    .gallery-modal-content {
        max-width: 98vw;
        max-height: 90vh;
    }

    .gallery-modal-content img {
        max-height: 90vh;
    }

    .gallery-modal-close {
        top: -35px;
        font-size: 36px;
    }

    .gallery-nav-btn {
        width: 40px;
        height: 40px;
    }

    .gallery-nav-prev {
        left: 10px;
    }

    .gallery-nav-next {
        right: 10px;
    }

    .running-banner {
        padding: 40px 0;
    }

    .running-banner-wrapper {
        width: 100vw;
        min-width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        transform: rotate(-1.5deg);
        padding: 12px 0;
    }

    .running-banner-content {
        gap: 0;
        padding: 0;
        animation: scrollText 25s linear infinite;
    }

    .running-banner-content span {
        font-size: 14px;
        padding: 0 30px;
        letter-spacing: 0.5px;
    }

    .running-banner-content span::after {
        margin: 0 15px;
    }

    .header-top {
        padding: 6px 0;
    }

    .header-main {
        padding: 12px 0;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .header-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .header-right {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0;
    }

    .phone-label {
        display: none;
    }

    .contact-item {
        justify-content: flex-start;
        padding: 25px 30px;
        gap: 15px;
    }

    .contact-icon {
        font-size: 40px;
    }

    .contact-details {
        text-align: left;
    }

    .contact-details h3 {
        font-size: 18px;
    }

    .contact-details a {
        font-size: 20px;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .company-info {
        gap: 3px;
    }

    .logo-box {
        width: 60px;
        height: 60px;
    }

    .company-name {
        font-size: 22px;
    }

    .company-activity {
        font-size: 14px;
    }

    .phone-number {
        font-size: 18px;
    }

    .btn-book-header {
        width: 100%;
        padding: 12px 24px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-contacts {
        align-items: center;
    }
}

/* Cookie consent banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 360px;
    background: #F8F9FB;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.cookie-banner.hidden {
    display: none !important;
}

.cookie-banner-icon {
    flex-shrink: 0;
}

.cookie-banner-icon svg {
    display: block;
}

.cookie-banner-content {
    flex: 1;
}

.cookie-banner-text {
    font-size: 15px;
    line-height: 1.5;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.cookie-banner-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: #ffffff;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-banner-btn:hover {
    background: #f0f0f0;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
        padding: 16px;
    }

    .cookie-banner-text {
        font-size: 14px;
    }

    .cookie-banner-btn {
        font-size: 11px;
        padding: 10px 16px;
    }
}
