:root {
    --primary-color: #FFFFFF;
    --secondary-color: #F8F9FA;
    --accent-color: #E9ECEF;
    --text-color: #212529;
    --muted-text: #6C757D;
    --border-color: #DEE2E6;
    --spacing: clamp(1rem, 2vw, 2rem);
    --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: 'Poppins', 'Playfair Display', serif;
    --blob-color: #D7CCB5;
    --title-font: 'Playfair Display', serif;
    --accent-font: 'Syncopate', sans-serif;

    /* New modern color palette */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warm-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;

    /* Social media brand colors */
    --facebook-color: #1877f2;
    --instagram-color: #e4405f;

    /* Shadows and effects */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --shadow-2xl: 0 25px 50px rgba(0,0,0,0.25);

    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --luxury-gold: #c5a46d;
    --luxury-gold-soft: #e3d2af;
    --luxury-dark: #1f1a14;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Clean, simple header */
.desktop {
    position: static;
    width: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    z-index: auto;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 5rem;
    width: 100%;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.hamburger-menu {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1002;
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hamburger-menu:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--text-color);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger animation when active */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-list li {
    margin: 0;
    padding: 0;
}

.mobile-menu-list a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--accent-font);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-list a:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-language-item {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-language-label {
    display: block;
    font-family: var(--accent-font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

#mobileLanguageSwitcher {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    font-family: var(--accent-font);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%236c757d%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.75rem auto;
    padding-right: 2.5rem;
}

#mobileLanguageSwitcher:hover {
    border-color: var(--text-color);
    background-color: rgba(255, 255, 255, 1);
}

#mobileLanguageSwitcher:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    border-color: var(--text-color);
}

.desktop ul {
    max-width: 1200px;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}

.desktop li {
    margin: 0;
    padding: 0;
    position: relative;
}

.desktop a {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--accent-font);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
}

/* Fancy underline effect */
.desktop a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--text-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.desktop a:hover {
    color: var(--text-color);
    transform: translateY(-2px);
}

.desktop a:hover::after {
    width: 100%;
}

/* Language switcher enhancement */
#languageSwitcher {
    border: 1px solid var(--muted-text);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    background: transparent;
    font-family: var(--accent-font);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--muted-text);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%236c757d%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 0.5rem auto;
    padding-right: 2rem;
    min-height: 44px;
    min-width: 100px;
    padding: 0.4rem 2rem 0.4rem 1rem;
}

#languageSwitcher:hover {
    border-color: var(--text-color);
    color: var(--text-color);
    transform: translateY(-1px);
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23212529%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E");
}

#languageSwitcher:focus {
    outline: none;
    box-shadow: 0 0 0 1px rgba(108, 117, 125, 0.2);
}

/* Social Media Links in Header */
.social-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all var(--transition-normal);
    z-index: -1;
}

.social-link.facebook::before {
    background: var(--facebook-color);
}

.social-link.instagram::before {
    background: var(--instagram-color);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.social-link:hover::before {
    transform: scale(1.1);
}

.social-link:active {
    transform: translateY(-1px) scale(1.05);
}

/* Mobile Social Links */
.mobile-social-links {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.mobile-social-icons .social-link {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .desktop {
        display: none !important;
    }
    .mobile-nav {
        display: flex !important;
        align-items: center;
    }
}

/* Add active state for current section */
.desktop a.active {
    color: var(--text-color);
    font-weight: 700;
}

.desktop a.active::after {
    width: 100%;
}

/* Hero section */
.hero-section {
    height: 100vh;
    margin-top: 0;
    position: relative;
    padding: calc(4rem + 64px) 1rem 1rem 1rem;
    min-height: 100vh;
    contain: layout size;
}

.slider {
    height: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: none;
}

.slide.active {
    opacity: 1;
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 1s ease-in-out;
    will-change: opacity;
    transform: translateZ(0);
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    min-height: 48px;
    min-width: 100px;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--warm-gradient);
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    transform: translateY(-3px) scale(1.05);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-feature i {
    color: var(--warning-color);
    font-size: 1.1rem;
}

.hero-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Photo grid */
.gallery {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 900px;
    height: auto;
}

.gallery-container.collapsed {
    max-height: 900px;
    overflow: hidden;
}

.gallery-container:not(.collapsed) {
    max-height: none;
    overflow: visible;
}

.gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.2s ease;
    aspect-ratio: 16/9;
}

.gallery img:hover {
    transform: scale(1.02);
}

/* Info cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.kartica.feature {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kartica.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.kartica.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.kartica.feature:hover::before {
    opacity: 0.1;
}

.kartica.feature:hover .icon {
    color: var(--text-color);
    transform: scale(1.1);
}

.kartica .icon {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.kartica .sadrzaj {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: color var(--transition-normal);
}

.kartica.feature:hover .sadrzaj {
    color: var(--text-color);
}

/* Add amenities grid styling */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.amenity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.1;
    transition: left var(--transition-normal);
    z-index: -1;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.1);
}

.amenity-item:hover::before {
    left: 0;
}

.amenity-item i {
    font-size: 1.5rem;
    color: var(--text-color);
    width: 30px;
    text-align: center;
    transition: all var(--transition-normal);
}

.amenity-item:hover i {
    color: var(--primary-color);
    transform: scale(1.2);
}

.amenity-item span {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    transition: color var(--transition-normal);
}

.amenity-item:hover span {
    color: var(--text-color);
}

/* Enhanced Gallery Section */
.gallery {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--radius-2xl);
    margin-top: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1000px;
    height: auto;
}

.gallery-container.collapsed {
    max-height: 1200px;
    overflow: hidden;
}

.gallery-container:not(.collapsed) {
    max-height: none;
    overflow: visible;
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Enhanced Gallery Toggle Button */
.gallery-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border-radius: var(--radius-xl);
    min-height: 48px;
    min-width: 48px;
    box-shadow: var(--shadow-md);
}

.gallery-toggle:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--secondary-gradient);
}

.toggle-icon {
    transition: transform var(--transition-normal);
}

.gallery-toggle.expanded .toggle-icon {
    transform: rotate(180deg);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        height: 90vh;
        padding-top: calc(3rem + 64px);
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1rem;
        padding: 0 1rem;
    }

    .gallery-container.collapsed {
        max-height: 1500px;
        overflow: hidden;
    }

    .gallery-container:not(.collapsed) {
        max-height: none;
        overflow: visible;
    }

    .gallery img {
        height: auto;
        aspect-ratio: 4/3;
        width: 100%;
        max-height: 350px;
        object-fit: cover;
    }

    .gallery-toggle {
        margin-top: 1rem;
        position: sticky;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        background: var(--primary-gradient);
        backdrop-filter: blur(8px);
        box-shadow: var(--shadow-lg);
    }

    .cards {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .desktop ul {
        justify-content: center;
        gap: 1.5rem;
    }

    .desktop a {
        font-size: 0.9rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        padding: 2rem 1rem;
        margin: 2rem 1rem;
    }

    .amenity-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .statistics-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .features-text {
        padding: 2rem;
    }

    .features-text h2 {
        font-size: 2rem;
    }
}

/* Ultra-small screen fixes (under 400px) */
@media (max-width: 400px) {
    .hero-section {
        height: 100vh;
        padding-top: calc(2rem + 64px);
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .hero-content {
        padding: 0.5rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(1.5rem, 10vw, 2.5rem);
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .hero-cta {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
        min-width: 140px;
        max-width: 100%;
    }

    .hero-features {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .hero-feature {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .hero-feature i {
        font-size: 1rem;
    }

    .hero-feature span {
        font-size: 0.8rem;
    }

    /* Fix header for ultra-small screens */
    .header-flex {
        padding: 0.5rem 0.25rem 0.25rem 0.25rem;
        gap: 0.5rem;
    }

    .site-title {
        font-size: 1rem;
        gap: 0.5rem;
    }

    .site-logo {
        width: 2rem;
        height: 2rem;
    }

    /* Adjust mobile navigation */
    .mobile-nav {
        height: 4rem;
    }

    .hamburger-menu {
        top: 0.5rem;
        right: 0.5rem;
        width: 40px;
        height: 40px;
    }

    /* Fix statistics for ultra-small screens */
    .statistics-section {
        padding: 3rem 1rem;
    }

    .statistics-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Fix features section for ultra-small screens */
    .features-section {
        padding: 3rem 0;
    }

    .features-content {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }

    .features-text {
        padding: 1.5rem;
    }

    .features-text h2 {
        font-size: 1.75rem;
    }

    .features-list li {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    /* Fix amenities grid for ultra-small screens */
    .amenities-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem 0.5rem;
        margin: 1.5rem 0.5rem;
    }

    .amenity-item {
        padding: 0.75rem;
        flex-direction: row;
        text-align: left;
        gap: 0.75rem;
    }

    .amenity-item i {
        font-size: 1.25rem;
        width: 25px;
    }

    .amenity-item span {
        font-size: 0.9rem;
    }
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin: 0;
}

footer {
    position: relative;
    background: linear-gradient(135deg, #D7CCB5 0%, #C4B7A0 100%);
    overflow: hidden;
    margin-top: 4rem;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.footer-container {
    position: relative;
    display: grid;
    grid-template-columns: var(--footer-columns, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.footer-blob {
    position: absolute;
    right: -10%;
    bottom: -20%;
    width: 600px;
    height: 800px;
    background-image: url('blob.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: scale(2.2) rotate(180deg);
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

/* Contact section styling */
.contact-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-normal);
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.contact-info .contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info .contact:first-child {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: var(--accent-font);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info .contact a {
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-normal);
    padding: 0.5rem 0;
    position: relative;
    display: inline-block;
    font-size: 1.1rem;
}

.contact-info .contact a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--text-color);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.contact-info .contact a:hover {
    transform: translateY(-2px);
}

.contact-info .contact a:hover::after {
    width: 100%;
}

/* Map container styling */
.contact-info iframe {
    width: 100%;
    max-width: 500px;
    height: 350px;
    border-radius: var(--radius-lg);
    margin: 1rem auto;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Booking link styling */
.booking-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.booking-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.1;
    transition: left var(--transition-normal);
    z-index: -1;
}

.booking-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.5);
}

.booking-link:hover::before {
    left: 0;
}

.booking-logo {
    font-weight: 700;
    color: #003580;
    font-size: 1.1rem;
}

/* Copyright section styling */
.autor {
    text-align: center;
    padding: 2rem 1rem;
    font-family: var(--accent-font);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    margin: 0 2rem;
}

.autor a {
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-normal);
    padding: 0.5rem 0;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.autor a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background: var(--text-color);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.autor a:hover {
    transform: translateY(-2px);
}

.autor a:hover::after {
    width: 100%;
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
    .footer-container {
        padding: 3rem 1rem;
        gap: 2rem;
    }

    .contact-info {
        padding: 2rem;
    }

    .contact-info iframe {
        height: 300px;
    }

    .autor {
        margin: 0 1rem;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 400px) {
    .footer-container {
        padding: 2rem 0.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-info iframe {
        height: 250px;
    }

    .booking-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .autor {
        margin: 0 0.5rem;
        padding: 1rem 0.5rem;
        font-size: 0.8rem;
    }
}

.blob-text-mobile {
    position: absolute;
    top: 10%;
    left: 20%;
    transform: translate(-30%, -20%);
    z-index: 7;
    text-align: center;
    width: 100%;
    max-width: 280px;
}

/* Add these styles to match desktop version */
.blob-text-mobile .traditional {
    font-family: var(--title-font);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    color: var(--text-color);
}

.blob-text-mobile .graphic {
    font-family: var(--accent-font);
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-color);
    text-transform: uppercase;
}


/* Blob text styles */
.blob-text {
    position: relative;
    z-index: 3;
    margin-left: 4rem;
    max-width: 400px;
}

.blob-text .traditional {
    font-family: var(--title-font);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    color: var(--text-color);
}

.blob-text .graphic {
    font-family: var(--accent-font);
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-color);
    text-transform: uppercase;
}



/* Update modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.modal-content {
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.close {
    position: absolute;
    right: 25px;
    top: 25px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: color 0.3s ease;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    color: #999;
}

/* Gallery expansion styles */
.gallery-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    font-family: var(--accent-font);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    min-height: 44px;
    min-width: 44px;
    padding: 0.8rem 1.5rem;
}

.gallery-toggle:hover {
    background: var(--text-color);
    color: var(--primary-color);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.gallery-toggle.expanded .toggle-icon {
    transform: rotate(180deg);
}

#legend {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-key {
    width: 16px;
    height: 16px;
    background-color: #2C5F2D;
    border-radius: 3px;
}

.legend-text {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Footer layout updates */
.footer-container {
    position: relative;
    display: grid;
    grid-template-columns: var(--footer-columns, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Contact section styling */
.contact-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info .contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info .contact a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    display: inline-block;
}

.contact-info .contact a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--text-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.contact-info .contact a:hover {
    transform: translateY(-2px);
}

.contact-info .contact a:hover::after {
    width: 100%;
}

/* Map container styling */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        padding: 2rem 1rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .map-container {
        height: 300px;
    }
}

/* Footer blob styling */
.footer-blob {
    position: absolute;
    right: -10%;
    bottom: -20%;
    width: 600px;
    height: 800px;
    background-image: url('blob.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: scale(2.2) rotate(180deg);
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

/* Ensure content stays above blob */
.contact-section {
    position: relative;
    z-index: 1;
}

/* Copyright section styling */
.autor {
    text-align: center;
    padding: 2rem 1rem;
    font-family: var(--accent-font);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.autor a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    display: inline-block;
}

.autor a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background: var(--text-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.autor a:hover {
    transform: translateY(-2px);
}

.autor a:hover::after {
    width: 100%;
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .contact-info {
        background: rgba(0, 0, 0, 0.2);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .footer-blob {
        opacity: 0.1;
    }
}

/* Update info-text styling */
.info-tekst {
    max-width: 65ch;
    margin: 6rem auto 3rem auto;
    padding: 2rem 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    white-space: pre-line;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

/* Add some spacing before the info section */
.info.block {
    padding: 2rem 0;
    margin-top: 2rem;
    position: relative;
}

/* Update cards and amenities grid layout */
.cards, .amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Remove the content-container class since we're using specific widths per section */
/* Remove the block class margins since they weren't in the original */
.block {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.block:last-child {
    border-bottom: none;
}

/* Responsive adjustments - keep original mobile text size */
@media (max-width: 768px) {
    .info-tekst {
        padding: 1.5rem 1rem;
        font-size: 1.1rem;
        margin: 4rem auto 2rem auto;
    }

    .info.block {
        padding: 1rem 0;
        margin-top: 1rem;
    }
}

/* Features section styling */
.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.features-text {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.features-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    transition: all var(--transition-normal);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.features-list li:hover {
    transform: translateX(10px);
    color: var(--success-color);
}

.features-cards {
    position: relative;
    overflow: hidden;
}

.blob-background {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: url('blob.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.8;
    transform: scale(2) rotate(45deg);
    z-index: 1;
    filter: brightness(0) saturate(100%) invert(88%) sepia(11%) saturate(254%) hue-rotate(356deg) brightness(92%) contrast(92%);
    mix-blend-mode: multiply;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: scale(2) rotate(45deg) translateY(0px); }
    50% { transform: scale(2) rotate(45deg) translateY(-20px); }
}

.features-cards .cards {
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    padding: 2rem;
}

.kartica.feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .features-content {
        grid-template-columns: 1fr;
    }

    .blob-background {
        width: 300%;
        height: 300%;
        top: 40%;
        left: -100%;
        transform: scale(2.5) rotate(45deg);
    }
}

/* Testimonial section styling */
.testimonial-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.testimonial-text {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.testimonial-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.testimonial-rating .rating-stars {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating .rating-stars i {
    color: #ffc107;
    font-size: 1.25rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.testimonial-rating .rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--accent-font);
}

.testimonial-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(248, 249, 250, 0.8);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.amenities-list {
    margin-bottom: 3rem;
}

.amenities-list h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.amenities-list h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.amenities-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.amenity-item-detailed {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.amenity-item-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.05;
    transition: left var(--transition-normal);
    z-index: -1;
}

.amenity-item-detailed:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.1);
}

.amenity-item-detailed:hover::before {
    left: 0;
}

.amenity-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.amenity-icon i {
    color: white;
    font-size: 1.2rem;
}

.amenity-content {
    flex: 1;
}

.amenity-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.amenity-content p {
    font-size: 0.95rem;
    color: var(--muted-text);
    margin: 0;
    line-height: 1.4;
}

.staff-languages {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    color: white;
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
}

.language-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.language-icon i {
    font-size: 1.5rem;
    color: white;
}

.language-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.language-content p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

.language-content strong {
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for testimonial section */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 4rem 0;
    }

    .testimonial-content {
        padding: 0 1rem;
    }

    .testimonial-text {
        padding: 2rem;
    }

    .testimonial-header h2 {
        font-size: 2rem;
    }

    .testimonial-description {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .amenities-grid-detailed {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .amenity-item-detailed {
        padding: 1rem;
    }

    .staff-languages {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 400px) {
    .testimonial-text {
        padding: 1.5rem;
    }

    .testimonial-header h2 {
        font-size: 1.75rem;
    }

    .testimonial-description {
        font-size: 1rem;
        padding: 1rem;
    }

    .amenities-list h3 {
        font-size: 1.75rem;
    }

    .amenity-item-detailed {
        padding: 0.75rem;
    }

    .amenity-icon {
        width: 40px;
        height: 40px;
    }

    .amenity-icon i {
        font-size: 1rem;
    }

    .amenity-content h4 {
        font-size: 1rem;
    }

    .amenity-content p {
        font-size: 0.9rem;
    }
}

/* Distances section styling */
.distances-section {
    padding: 4rem 0;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.distances-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--title-font);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.distances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.distance-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
}

.distance-item:hover {
    transform: translateY(-3px);
}

.distance-item i {
    font-size: 1.5rem;
    color: var(--text-color);
    opacity: 0.8;
}

.distance-item span {
    font-size: 1rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .distances-section {
        padding: 3rem 0;
    }

    .distances-content {
        padding: 0 1rem;
    }

    .distances-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .distance-item {
        padding: 1rem;
    }
}

/* Reviews Section Styles */
.reviews-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.reviews-header h2 {
    font-family: var(--title-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars i {
    color: #ffc107;
    font-size: 1.25rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.rating-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--accent-font);
}

.rating-count {
    font-size: 0.9rem;
    color: var(--muted-text);
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.review-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 193, 7, 0.2);
    font-family: var(--title-font);
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.reviewer-avatar i {
    color: white;
    font-size: 1.2rem;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--muted-text);
    font-weight: 500;
}

.review-rating {
    display: flex;
    gap: 0.2rem;
    flex-shrink: 0;
}

.review-rating i {
    color: #ffc107;
    font-size: 0.9rem;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.review-content {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.reviews-footer {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.reviews-footer p {
    font-size: 0.9rem;
    color: var(--muted-text);
    font-weight: 500;
    font-style: italic;
}

/* Mobile Responsive for Reviews */
@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 1rem;
    }

    .reviews-header h2 {
        font-size: 2rem;
    }

    .rating-summary {
        flex-direction: column;
        gap: 0.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .reviewer-info {
        width: 100%;
    }

    .review-rating {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 2rem 1rem;
    }

    .reviews-header h2 {
        font-size: 1.75rem;
    }

    .review-card {
        padding: 1.25rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }

    .reviewer-avatar i {
        font-size: 1rem;
    }
}

/* Social Media Section in Footer */
.social-media-section {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links-footer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.social-link-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all var(--transition-normal);
    z-index: -1;
}

.social-link-footer.facebook::before {
    background: var(--facebook-color);
}

.social-link-footer.instagram::before {
    background: var(--instagram-color);
}

.social-link-footer:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.social-link-footer:hover::before {
    transform: scale(1.1);
}

.social-link-footer i {
    font-size: 1.3rem;
    z-index: 1;
    position: relative;
}

.social-link-footer span {
    display: none;
}

/* Floating Social Media Buttons */
.floating-social {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-social-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.floating-social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all var(--transition-normal);
    z-index: -1;
}

.floating-social-btn.facebook::before {
    background: var(--facebook-color);
}

.floating-social-btn.instagram::before {
    background: var(--instagram-color);
}

.floating-social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.floating-social-btn:hover::before {
    transform: scale(1.1);
}

.floating-social-btn:active {
    transform: translateY(-2px) scale(1.05);
}

/* Responsive adjustments for floating social */
@media (max-width: 768px) {
    .floating-social {
        right: 1rem;
        bottom: 1rem;
    }

    .floating-social-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
}

/* Ultra-small screen fixes for floating social */
@media (max-width: 400px) {
    .floating-social {
        right: 0.5rem;
        bottom: 0.5rem;
        gap: 0.75rem;
    }

    .floating-social-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* Statistics Section */
.statistics-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.statistics-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-slow);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--muted-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 3rem 1rem;
    }

    .statistics-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Ultra-small screen fixes for statistics */
@media (max-width: 400px) {
    .statistics-section {
        padding: 3rem 1rem;
    }

    .statistics-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Header flex layout */
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 2rem 0.3rem 2rem;
    gap: 1.5rem;
}
.site-title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--title-font, 'Playfair Display', serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color, #222);
    margin: 0;
    letter-spacing: 0.04em;
}
.desktop {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-nav {
    display: none;
}
@media (max-width: 900px) {
    .header-flex {
        padding: 0.5rem 1rem 0.2rem 1rem;
        gap: 0.7rem;
    }
    .site-title {
        font-size: 1.2rem;
    }
}
@media (max-width: 768px) {
    .header-flex {
        padding: 0.5rem 0.5rem 0.2rem 0.5rem;
    }
}

.site-logo {
    width: 4.5rem;
    height: 4.5rem;
    object-fit: contain;
    border-radius: 8px;
    background: transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all var(--transition-normal);
}

.site-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 600px) {
    .site-logo {
        width: 4.2rem;
        height: 4.2rem;
        margin-left: 1rem;
    }
    .site-title {
        font-size: 1rem;
    }
}

/* Ultra-small screen fixes for CTA buttons */
@media (max-width: 400px) {
    .cta-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-height: 40px;
        min-width: 120px;
        max-width: 150px !important;
        width: 150px !important;
        flex-shrink: 0;
        box-sizing: border-box;
    }

    .hero-cta {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-features {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .hero-feature {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .hero-feature i {
        font-size: 0.9rem;
    }

    .hero-feature span {
        font-size: 0.75rem;
    }
}

/* Premium polish layer */
.hero-overlay {
    background: linear-gradient(145deg, rgba(31, 26, 20, 0.6) 0%, rgba(31, 26, 20, 0.2) 40%, rgba(31, 26, 20, 0.65) 100%);
}

.hero-title {
    letter-spacing: 0.02em;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #a7834a 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #d2b27e 0%, #b48d51 100%);
}

.hero-feature {
    border: 1px solid rgba(197, 164, 109, 0.4);
}

.direct-contact-strip {
    padding: 1rem 1rem 3rem 1rem;
}

.direct-contact-card {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(130deg, #fffdf8 0%, #f5ecdb 100%);
    border: 1px solid rgba(197, 164, 109, 0.4);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    text-align: center;
}

.direct-contact-card h2 {
    margin: 0 0 0.75rem 0;
    font-family: var(--font-heading);
    color: var(--luxury-dark);
}

.direct-contact-card p {
    margin: 0 auto 1.5rem auto;
    max-width: 65ch;
    color: #4b4740;
}

.direct-contact-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.direct-call-btn,
.direct-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 50px;
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    line-height: 1.2;
    vertical-align: middle;
}

.direct-call-btn {
    background: var(--luxury-dark);
    color: #fff;
}

.direct-whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.seo-content-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 1.2rem 1.5rem;
}

.seo-content-inner h2 {
    font-family: var(--font-heading);
    margin-bottom: 0.75rem;
}

.seo-content-inner p {
    color: #4e4a44;
}

.floating-social-btn.call::before {
    background: linear-gradient(135deg, var(--luxury-dark) 0%, #34302a 100%);
}

.floating-social-btn.whatsapp::before {
    background: #25d366;
}

.booking-value-strip,
.stay-details,
.quality-scores,
.host-section,
.house-rules,
.faq-visible {
    padding: 1rem 1rem 2.5rem 1rem;
}

.booking-value-card,
.stay-details-inner,
.quality-scores-inner,
.host-section-inner,
.house-rules-inner,
.faq-visible-inner {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}

.booking-value-card h2,
.stay-details-inner h2,
.quality-scores-inner h2,
.host-section-inner h2,
.house-rules-inner h2,
.faq-visible-inner h2 {
    margin-top: 0;
    font-family: var(--font-heading);
}

.booking-value-grid,
.stay-details-grid,
.quality-scores-grid,
.house-rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0.85rem;
}

.booking-value-item,
.stay-detail-item,
.quality-score-item,
.house-rule-item {
    background: #faf7f2;
    border: 1px solid rgba(197, 164, 109, 0.25);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.stay-detail-item h3 {
    margin: 0 0 0.35rem 0;
    font-size: 1rem;
    color: #2c2822;
}

.stay-detail-item p {
    margin: 0;
    color: #575149;
}

.quality-score-item {
    text-align: center;
}

.quality-score-item span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--luxury-dark);
}

.quality-score-item p {
    margin: 0.2rem 0 0 0;
    color: #59544d;
}

.host-section-inner p {
    max-width: 70ch;
    color: #4f4a44;
}

.faq-visible-inner details {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 0.75rem 0.9rem;
    margin-bottom: 0.6rem;
    background: #fff;
}

.faq-visible-inner summary {
    cursor: pointer;
    font-weight: 600;
}

.faq-visible-inner p {
    margin: 0.55rem 0 0.1rem 0;
    color: #4f4a44;
}

@media (max-width: 768px) {
    .booking-value-card,
    .stay-details-inner,
    .quality-scores-inner,
    .host-section-inner,
    .house-rules-inner,
    .faq-visible-inner {
        padding: 1.35rem;
    }
}

