/* ================================================
   VIP NORTHEIM - ROTE9.DE ÄHNLICHES DESIGN
   ================================================ */

/* ================================================
   MODERNE SCROLLBAR
   ================================================ */
/* Webkit Scrollbar (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--primary-dark) 50%, var(--primary-red) 100%);
    border-radius: 6px;
    border: 2px solid #1a1a1a;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #F01E4B 0%, #9E1530 50%, #F01E4B 100%);
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.5);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-red) 50%, var(--primary-dark) 100%);
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) #1a1a1a;
}

/* CSS VARIABLES */
:root {
    /* Primary Colors - Red Style */
    --primary-red: #DC143C;
    --primary-dark: #B71C1C;
    --primary-light: #FF5252;
    --accent-gold: #FFD700;
    
    /* Light Theme Colors */
    --bg-light: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-card: #FFFFFF;
    --text-primary: #2C3E50;
    --text-secondary: #5A6C7D;
    --text-muted: #95A5A6;
    
    /* Borders & Shadows */
    --border-color: #E0E6ED;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-heavy: 0 8px 40px rgba(0,0,0,0.15);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Layout */
    --container-width: 1200px;
    --border-radius: 8px;
    --border-radius-large: 16px;
    --transition: all 0.3s ease;
}

/* ================================================
   RESET & BASE STYLES
   ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    scroll-behavior: smooth;
}

/* Moderne Scrollbar ist bereits oben definiert */

/* Prevent horizontal scrolling on all elements */
*, *::before, *::after {
    max-width: 100%;
    box-sizing: border-box;
}

/* ================================================
   COOKIE BANNER & SETTINGS
   ================================================ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    width: calc(100% - 40px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(220, 20, 60, 0.1);
    z-index: 9999;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.cookie-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cookie-header h3 {
    color: var(--primary-red);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-close:hover {
    background: rgba(220, 20, 60, 0.1);
    color: var(--primary-red);
}

.cookie-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    min-height: 44px;
    text-align: center;
    justify-content: center;
    flex: 1;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--primary-red), #c41e3a);
    color: white;
    border: 2px solid transparent;
}

.cookie-accept:hover {
    background: linear-gradient(135deg, #c41e3a, var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.cookie-settings {
    background: rgba(220, 20, 60, 0.1);
    color: var(--primary-red);
    border: 2px solid rgba(220, 20, 60, 0.3);
}

.cookie-settings:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: var(--primary-red);
    transform: translateY(-1px);
}

.cookie-reject {
    background: rgba(108, 117, 125, 0.1);
    color: #495057;
    border: 2px solid rgba(108, 117, 125, 0.3);
}

.cookie-reject:hover {
    background: rgba(108, 117, 125, 0.2);
    border-color: #6c757d;
    transform: translateY(-1px);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.cookie-modal-hidden {
    opacity: 0;
    visibility: hidden;
}

.cookie-modal-content {
    background: var(--bg-light);
    border-radius: var(--border-radius-large);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-heavy);
}

.cookie-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    color: var(--primary-red);
    margin: 0;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-close:hover {
    background: var(--bg-secondary);
    color: var(--primary-red);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-category h3 {
    color: var(--text-primary);
    margin: 0;
}

.cookie-category p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Cookie Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--primary-red);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    background-color: var(--primary-red);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.cookie-save {
    background: var(--primary-red);
    color: white;
    padding: 1rem 2rem;
}

.cookie-save:hover {
    background: var(--primary-dark);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        width: calc(100% - 20px);
    }
    
    .cookie-content {
        padding: 20px;
        gap: 16px;
    }
    
    .cookie-header h3 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        gap: 6px;
    }
    
    .cookie-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-height: 40px;
    }
    
    .cookie-modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
}

/* ================================================
   AGE VERIFICATION MODAL
   ================================================ */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-modal-content {
    background: var(--bg-light);
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-heavy);
    border: 3px solid var(--primary-red);
}

.age-modal-header h2 {
    color: var(--primary-red);
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.age-warning {
    color: #FF6B35;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.age-modal-body p {
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 160px;
    justify-content: center;
}

.age-btn-yes {
    background: var(--primary-red);
    color: white;
}

.age-btn-yes:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.age-btn-no {
    background: #6C757D;
    color: white;
}

.age-btn-no:hover {
    background: #495057;
    transform: translateY(-2px);
}

.age-disclaimer {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Hide body content when modal is active */
body.age-modal-active {
    overflow: hidden;
}

body.age-modal-active > *:not(.age-modal) {
    filter: blur(5px);
    pointer-events: none;
}

@media (max-width: 768px) {
    .age-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        max-width: 95%;
    }
    
    .age-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .age-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .age-btn {
        width: 100%;
        max-width: 250px;
        padding: 1.2rem 2rem;
    }
}

@media (max-width: 480px) {
    .age-modal-content {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .age-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .age-warning {
        font-size: 1rem;
    }
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ================================================
   HEADER & NAVIGATION
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand .logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-red);
    font-family: var(--font-secondary);
}

.logo-location {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.main-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin-right: 60px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    transition: var(--transition);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(220, 20, 60, 0.7) 0%, rgba(139, 69, 19, 0.5) 100%),
        url('images/modern-luxury-bedroom-new.jpg') center/cover no-repeat;
    overflow: hidden;
    margin-top: 70px;
}



.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero-title .title-main {
    display: block;
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 800;
    color: white;
    font-family: var(--font-secondary);
    line-height: 1.1;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title .title-sub {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 32px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.partnership-info {
    margin-bottom: 40px;
    max-width: 700px;
}

.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark));
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 30px rgba(220, 20, 60, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.partnership-badge i {
    font-size: 1rem;
}

.partnership-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    padding: 25px 30px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(220, 20, 60, 0.5);
    line-height: 1.8;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.partnership-text strong {
    color: var(--primary-red);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.partnership-link {
    color: var(--primary-red) !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1em;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--primary-red);
    padding: 2px 4px;
    border-radius: 4px;
    background: rgba(220, 20, 60, 0.1);
}

.partnership-link:hover {
    color: #ffffff !important;
    text-shadow: 0 0 25px rgba(220, 20, 60, 1);
    border-bottom: 3px solid #ffffff;
    transform: translateY(-2px);
    background: rgba(220, 20, 60, 0.3);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

.floating-info {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    min-width: 180px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.info-card i {
    color: var(--primary-red);
    font-size: 18px;
}

.info-card span {
    color: var(--text-primary);
    font-weight: 600;
}

/* ================================================
   SECTIONS GEMEINSAM
   ================================================ */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-family: var(--font-secondary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================
   LADIES SECTION
   ================================================ */
.ladies {
    background: var(--bg-light);
    padding: 100px 0;
}

.ladies-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.ladies-intro h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.ladies-intro p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.ladies-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-highlight {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-red);
    transition: var(--transition);
}

.feature-highlight:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-light);
}

.feature-highlight i {
    color: var(--primary-red);
    font-size: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.feature-text p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.ladies-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 500px;
}

.info-header h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.info-header p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.ladies-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    width: 100%;
    max-width: 500px;
}

.type-item {
    background: var(--bg-secondary);
    padding: 25px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border-left: 4px solid var(--primary-red);
}

.type-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.type-item i {
    color: var(--primary-red);
    font-size: 28px;
    margin-bottom: 15px;
    display: block;
}

.type-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.type-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.ladies-cta {
    text-align: center;
    background: var(--bg-secondary);
    padding: 50px 40px;
    border-radius: var(--border-radius-large);
    max-width: 800px;
    margin: 0 auto;
}

.ladies-cta h3 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.ladies-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-ladies {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-red);
    color: white;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-ladies:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-light));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-red);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
}

.service-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}





/* ================================================
   REVIEWS SECTION
   ================================================ */
.reviews {
    background: var(--bg-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: 30px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.reviewer-details h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.reviewer-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 4px;
}

.rating .fas {
    color: #FFD700;
    font-size: 16px;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
}

.google-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4285F4;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ================================================
   INFO SECTION
   ================================================ */
.info {
    background: var(--bg-secondary);
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-text h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-family: var(--font-secondary);
}

.info-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.info-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.feature-item i {
    color: var(--primary-red);
    font-size: 18px;
}

.feature-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.info-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    font-family: var(--font-secondary);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================
   APARTMENT INFORMATION SECTION
   ================================================ */
.apartment-info {
    padding: 80px 0;
    background: var(--bg-primary);
}

.apartment-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    width: 100%;
}

/* Info Section with External Titles */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c82333 100%);
    color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.2);
}

.info-section-title i {
    font-size: 1.2rem;
    color: white;
}

/* Modified Info Card for new structure */
.info-section .info-card {
    margin-top: 0;
    border-top: 3px solid var(--primary-red);
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(220, 20, 60, 0.1);
    width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(220, 20, 60, 0.2);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(220, 20, 60, 0.2);
}

.info-card-header i {
    color: var(--primary-red);
    font-size: 1.3rem;
    background: rgba(220, 20, 60, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-header h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 0;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    min-width: 0;
    flex: 1;
}

.info-group {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-group:last-child {
    border-bottom: none;
}

.info-group h4 {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    font-family: var(--font-primary);
}

.info-group p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: 100%;
    max-width: 100%;
}

/* Highlight important information */
.info-group p strong,
.info-group p b {
    color: var(--primary-red);
    font-weight: 600;
}

/* Special styling for key metrics */
.info-card:nth-child(2) .info-group:nth-child(1) p,
.info-card:nth-child(2) .info-group:nth-child(2) p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-red);
}

.info-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
    margin-top: 2rem;
    border: 2px solid var(--primary-red);
}

.info-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.3);
}

.apartment-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.apartment-image:hover {
    transform: scale(1.03);
}
}

.apartment-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-heavy);
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact {
    background: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-family: var(--font-secondary);
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-method {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--primary-red);
    transform: translateY(-4px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: white;
    font-size: 20px;
}

.method-info h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.method-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.contact-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    color: var(--primary-light);
}

.contact-address,
.contact-hours {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-additional {
    display: flex;
    justify-content: center;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-light);
}

.contact-info-card h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.advantage-item:hover {
    background: rgba(220, 20, 60, 0.05);
    transform: translateX(5px);
}

.advantage-item i {
    color: var(--primary-red);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.advantage-item span {
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
}

.contact-cta {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
}

.contact-cta h4 {
    color: var(--primary-red);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-cta p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ================================================
   CONTACT FORM
   ================================================ */
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: 40px;
}

.contact-form-card h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 32px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.btn-submit {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ================================================
   PRIVACY SECTION
   ================================================ */
.privacy {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-family: var(--font-secondary);
}

.privacy-text h3 {
    color: var(--primary-red);
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-family: var(--font-secondary);
}

.privacy-text h3:first-child {
    margin-top: 0;
}

.privacy-text h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.privacy-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.privacy-text ul {
    color: var(--text-secondary);
    margin: 15px 0 20px 30px;
    line-height: 1.8;
}

.privacy-text li {
    margin-bottom: 8px;
}

.privacy-contact {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-red);
}

.privacy-contact p {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.privacy-contact p:last-child {
    margin-bottom: 0;
}

.privacy-note {
    background: rgba(220, 20, 60, 0.05);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 30px 0;
}

.privacy-update {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 20px 0;
}

.footer-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-brand-compact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand-compact .logo-text {
    font-size: 24px;
    color: var(--primary-red);
    font-weight: 800;
}

.footer-brand-compact .logo-location {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-contact-compact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-contact-compact span {
    color: var(--text-muted);
    font-size: 0.85rem;
    white-space: nowrap;
}

.footer-contact-compact i {
    color: var(--primary-red);
    margin-right: 5px;
}

.footer-legal-compact {
    display: flex;
    gap: 15px;
}

.footer-bottom-compact {
    border-top: 1px solid #444;
    padding-top: 15px;
    text-align: center;
}

.footer-bottom-compact p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

.footer-bottom-compact a {
    color: var(--primary-red);
    text-decoration: none;
}

.footer-credit {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center;
}

.footer-credit p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-credit a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ================================================
   FLOATING ELEMENTS
   ================================================ */

}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .floating-info {
        display: none;
    }
    
    .info-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .header .container {
        height: 60px;
    }
    
    .hero {
        margin-top: 60px;
        padding: 40px 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content {
        width: 100%;
        padding: 0;
    }
    
    /* Mobile Navigation */
    .main-nav .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--bg-light);
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px 0;
        transition: var(--transition);
        border-right: 1px solid var(--border-color);
        box-shadow: var(--shadow-medium);
        overflow-y: auto;
        margin-right: 0;
    }
    
    .main-nav .nav-menu.active {
        left: 0;
    }
    
    .main-nav .nav-menu li {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Sections */
    section {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .ladies-showcase {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .ladies-types {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .ladies-cta {
        padding: 40px 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .footer-compact {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-contact-compact {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-legal-compact {
        gap: 15px;
    }
    
    
    .scroll-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        margin: 0 auto;
        width: 100%;
    }
    
    body {
        overflow-x: hidden;
    }
    
    /* Extra small mobile optimizations */
    .apartment-image {
        height: 220px;
        width: 90%;
        max-width: 350px;
        object-position: center top;
    }
    
    .info-image {
        padding: 0 5px;
        border-width: 1px;
    }
    
    /* Ensure image loads properly */
    .apartment-image {
        background-color: var(--bg-secondary);
        min-height: 220px;
    }
    
    .rating i {
        font-size: 14px;
    }
    
    .review-card {
        padding: 1rem;
        margin: 0 auto 12px auto;
    }
    
    .reviewer-avatar {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .reviewer-details h4 {
        font-size: 0.9rem;
    }
    
    .review-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Extra small section headers */
    .section-title {
        font-size: 1.5rem !important;
        padding: 0 5px;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
        padding: 0 10px;
    }
    
    /* Info Stats Extra Small Mobile */
    .info-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 0.8rem;
        min-width: 100px;
        width: 100%;
        max-width: 200px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-location {
        font-size: 16px;
    }
    
    .hero-title .title-main {
        font-size: 2.5rem;
    }
    
    .hero-title .title-sub {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-card {
        padding: 24px;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    .apartment-image {
        height: 280px;
        width: 95%;
        max-width: 400px;
        object-fit: cover;
        object-position: center top;
        margin: 0 auto;
        display: block;
    }
    
    .info-image {
        margin: 1.5rem auto;
        padding: 0 10px;
        text-align: center;
        display: flex;
        justify-content: center;
        border-width: 1.5px;
    }
    
    /* Ensure all sections stay within bounds */
    section {
        width: 100%;
        overflow-x: hidden;
    }
    
    /* Fix any potential horizontal scroll issues */
    .hero-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn-primary {
        flex: 1;
        min-width: 200px;
        max-width: 280px;
    }
    
    /* Mobile Reviews Optimization */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 5px;
    }
    
    .review-card {
        margin: 0 auto 15px auto;
        padding: 1.2rem;
        max-width: 100%;
        width: 100%;
    }
    
    .rating {
        gap: 3px;
        flex-shrink: 0;
    }
    
    .rating i {
        font-size: 16px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .reviewer-details h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .reviewer-date {
        font-size: 0.8rem;
    }
    
    .review-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-top: 1rem;
    }
    
    .review-header {
        margin-bottom: 1rem;
        align-items: flex-start;
        gap: 1rem;
    }
    
    /* Section Headers Mobile */
    .section-title {
        font-size: 1.8rem !important;
        text-align: center;
        padding: 0 10px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
        text-align: center;
        padding: 0 15px;
        line-height: 1.4;
    }
    
    /* Reviews section specific */
    .reviews .section-header {
        padding: 0 10px;
        margin-bottom: 2rem;
    }
    
    /* Info Stats Mobile Optimization */
    .info-stats {
        gap: 1rem;
        justify-content: center;
    }
    
    .stat-item {
        padding: 1rem 0.8rem;
        min-width: 120px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        line-height: 1.2;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Animation Classes */
.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Animation for Age Verification */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(220, 20, 60, 0.5); }
    100% { transform: scale(1); }
}

/* ================================================
   PRIVACY BUTTON & TOGGLE
   ================================================ */
.legal-buttons-container {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   WEBSITE CREDITS
   ================================================ */
.website-credits {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 15px 0;
    text-align: center;
}

.credits-text {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

.credits-text a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.credits-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn-legal {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    justify-content: center;
}

.btn-legal:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-legal:active {
    transform: translateY(0);
}

.btn-legal i {
    font-size: 1.1rem;
}

.btn-imprint {
    background: var(--primary-red);
}

.btn-imprint:hover {
    background: var(--primary-dark);
}

/* Privacy Section Toggle */
.privacy-hidden {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.privacy-visible {
    display: block;
    opacity: 1;
    max-height: none;
    overflow: visible;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Privacy & Imprint Section Styling */
.privacy, .imprint {
    scroll-margin-top: 80px;
}

.privacy-content, .imprint-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Imprint Section Toggle */
.imprint-hidden {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.imprint-visible {
    display: block;
    opacity: 1;
    max-height: none;
    overflow: visible;
    animation: slideDown 0.5s ease-out;
}

.imprint {
    background: var(--bg-secondary);
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

.imprint-content {
    max-width: 800px;
    margin: 0 auto;
}

.imprint-content h2 {
    color: var(--primary-red);
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.imprint-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.imprint-section h3 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.imprint-section p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.imprint-section a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

.imprint-section a:hover {
    text-decoration: underline;
}

.website-credit {
    background: var(--primary-red);
    color: white;
    text-align: center;
}

.website-credit h3 {
    color: white;
}

.website-credit a {
    color: var(--accent-gold);
    font-weight: 700;
}

.website-credit a:hover {
    color: white;
}

/* Footer Link Buttons */
.footer-link-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.2rem 0;
    text-align: left;
    width: 100%;
}

.footer-link-btn:hover {
    color: var(--primary-red);
}

.footer-link-btn i {
    width: 16px;
}

/* Website Design Credit in Imprint */
.website-design-credit {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--primary-red) !important;
    font-weight: 500;
}

.website-design-credit a {
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: none;
}

.website-design-credit a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-legal {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 250px;
    }
    
    .imprint-content h2 {
        font-size: 1.8rem;
    }
    
    .imprint-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .imprint-section h3 {
        font-size: 1.1rem;
    }
    
    /* Apartment Info Mobile Styles */
    .apartment-info {
        padding: 50px 0;
    }
    
    .apartment-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 20px 15px;
    }
    
    .info-section-title {
        font-size: 1.2rem;
        padding: 10px 18px;
        gap: 10px;
    }
    
    .info-section-title i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .btn-legal {
        min-width: auto;
        padding: 1rem;
    }
    
    .footer-compact {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-contact-compact {
        flex-direction: column;
        gap: 5px;
    }
    
    .footer-legal-compact {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer {
        padding: 15px 0 8px;
    }
    
    .imprint-content {
        padding: 0 1rem;
    }
    
    .imprint-section {
        padding: 0.8rem;
    }
}