       * {
           margin: 0;
           padding: 0;
           box-sizing: border-box;
       }
       
       html {
           scroll-behavior: auto;
           overscroll-behavior: none;
       }
       
       body {
           font-family: 'Muli', sans-serif;
           overflow-x: hidden;
           overscroll-behavior: none;
       }

       /* Video Background */
       .video-background {
           position: fixed;
           top: 0;
           left: 0;
           width: 100vw;
           height: 100vh;
           z-index: -2;
       }

       .video-background video {
           width: 100%;
           height: 100%;
           object-fit: cover;
       }

       .video-fallback {
           width: 100%;
           height: 100%;
           background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
       }

       .video-overlay {
           position: absolute;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background: linear-gradient(
               135deg,
               rgba(75, 48, 4, 0.214) 0%,
               rgba(65, 27, 4, 0.096) 100%
           );
           z-index: 999;
       }

       .video-overlay::before {
           content: '';
           position: absolute;
           top: 0;
           left: 0;
           right: 0;
           bottom: 0;
           background: radial-gradient(
               ellipse at center,
               rgba(0, 0, 0, 0.1) 0%,
               rgba(0, 0, 0, 0.6) 70%,
               rgba(0, 0, 0, 0.9) 100%
           );
           mix-blend-mode: multiply;
       }
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    background: transparent;
    z-index: 2000;
    transition: all 0.3s ease;
}
       /* Navigation Bar Styles */
.nav-bar {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e3d0ae;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #e3d0ae;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-bar {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .nav-bar {
        display: none;
    }
}

/* Enhanced Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay span {
    font-family: 'Muli', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Custom Fancybox Styling */
.fancybox__container {
    --fancybox-bg: rgba(0, 0, 0, 0.95);
    --fancybox-accent-color: #e3d0ae;
}

.fancybox__caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    padding: 2rem 1rem 1rem;
    text-align: center;
}

.fancybox__button {
    background: rgba(227, 208, 174, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.fancybox__button:hover {
    background: rgba(227, 208, 174, 0.3);
    transform: scale(1.1);
}

/* Mobile Gallery Adjustments */
@media (max-width: 768px) {
    .gallery-overlay i {
        font-size: 1.5rem;
    }
    
    .gallery-overlay span {
        font-size: 10px;
    }
    
    .fancybox__caption {
        font-size: 14px;
        padding: 1.5rem 1rem 0.5rem;
    }
}

       /* .header.scrolled {
           height: 50px;
           opacity: 0;
           pointer-events: none;
       } */

       .header.scrolled .logo-img {
           height: 60px;
       }

       /* Language Dropdown */
       .language-dropdown {
           position: relative;
       }

       .dropdown-toggle {
           display: flex;
           align-items: center;
           gap: 8px;
           background: transparent;
           border: none;
           color: white;
           padding: 10px 0;
           cursor: pointer;
           transition: all 0.3s ease;
           font-family: 'Muli', sans-serif;
           font-weight: 400;
           position: relative;
       }

       .dropdown-toggle::after {
           content: '';
           position: absolute;
           bottom: 0;
           left: 0;
           width: 0;
           height: 2px;
           background: white;
           transition: width 0.3s ease;
       }

       .dropdown-toggle:hover::after {
           width: 100%;
       }

       .dropdown-arrow {
           transition: transform 0.3s ease;
           font-size: 12px;
       }

       .dropdown-menu {
           position: absolute;
           top: 100%;
           left: 0;
           margin-top: 10px;
           background: rgba(0, 0, 0, 0.95);
           border-radius: 8px;
           min-width: 150px;
           opacity: 0;
           visibility: hidden;
           transform: translateY(-10px);
           transition: all 0.3s ease;
           z-index: 2500;
       }

       .language-dropdown:hover .dropdown-menu {
           opacity: 1;
           visibility: visible;
           transform: translateY(0);
       }

       .language-dropdown:hover .dropdown-arrow {
           transform: rotate(180deg);
       }

       .dropdown-item {
           display: block;
           padding: 12px 16px;
           color: white;
           text-decoration: none;
           transition: all 0.3s ease;
           font-family: 'Muli', sans-serif;
           font-weight: 400;
           position: relative;
       }

       .dropdown-item::after {
           content: '';
           position: absolute;
           bottom: 0;
           left: 16px;
           right: 16px;
           height: 1px;
           background: white;
           opacity: 0;
           transition: opacity 0.3s ease;
       }

       .dropdown-item:hover::after {
           opacity: 0.3;
       }

       .dropdown-item:hover {
           background: rgba(255, 255, 255, 0.05);
       }

       /* Logo */
       .logo {
           display: flex;
           align-items: center;
           justify-content: center;
       }

       .logo-img {
           height: 100px;
           width: auto;
           filter: brightness(1.2);
           transition: height 0.3s ease;
       }

       /* Reserve Button */
       .reserve-btn {
           background: white;
           border: none;
           color: #000;
           padding: 12px 30px;
           border-radius: 4px;
           font-weight: 600;
           letter-spacing: 1px;
           cursor: pointer;
           transition: all 0.3s ease;
           font-family: 'Muli', sans-serif;
           text-transform: uppercase;
           font-size: 14px;
       }

       video {
        pointer-events: none;
        user-select: none;
       }

       .reserve-btn:hover {
           background: #f5f5f5;
           transform: translateY(-2px);
           box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
       }

       /* Main Content */
       .main-content {
           height: 100vh;
           display: flex;
           align-items: center;
           justify-content: center;
           text-align: center;
           position: relative;
           z-index: 10;
       }

       /* Mobile Burger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9000;
    transition: right 0.4s ease;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 2rem;
}

.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close:hover {
    background: #e3d0ae;
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 5rem;
}

.mobile-nav-link {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: #e3d0ae;
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

/* Amenities Section */
.amenities-section {
    width: 100%;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 120px 0;
    position: relative;
    z-index: 100;
}

.amenities-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.amenities-header {
    text-align: center;
    margin-bottom: 5rem;
}

.amenities-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    position: relative;
}

.amenities-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e3d0ae, transparent);
}

.amenities-subtitle {
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #666;
    margin-top: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.amenity-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.amenity-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.amenity-card:hover .amenity-image img {
    transform: scale(1.1);
}

.header.sticky {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 70px;
    transform: translateY(0);
}

/* .header.hidden {
    transform: translateY(-100%);
} */

.header.sticky .nav-link {
    color: #1a1a1a;
}

.header.sticky .dropdown-toggle {
    color: #1a1a1a;
}

.header.sticky .mobile-menu-toggle span {
    background: #1a1a1a;
}

.header.sticky .reserve-btn {
    background: #1a1a1a;
    color: white;
}

.amenity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 208, 174, 0.9) 0%, rgba(212, 193, 154, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.amenity-card:hover .amenity-overlay {
    opacity: 1;
}

.amenity-overlay i {
    font-size: 3rem;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.amenity-card:hover .amenity-overlay i {
    transform: scale(1);
}

.amenity-content {
    padding: 2rem;
    text-align: center;
}

.amenity-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.amenity-description {
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .amenities-section {
        padding: 80px 0;
    }
    
    .amenities-title {
        font-size: 2.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .amenity-image {
        height: 150px;
    }
    
    .amenity-content {
        padding: 1.5rem;
    }
    
    .amenity-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .amenity-image {
        height: 180px;
    }
}

/* Hover Animation Enhancement */
.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 208, 174, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.amenity-card:hover::before {
    left: 100%;
}

.mobile-nav-link:hover::before {
    width: 40px;
}

.mobile-nav-link:hover {
    color: #e3d0ae;
    padding-left: 50px;
}

.mobile-reserve-btn {
    background: linear-gradient(135deg, #e3d0ae 0%, #d4c19a 100%);
    border: none;
    color: #1a1a1a;
    padding: 15px 25px;
    border-radius: 8px;
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    width: 100%;
}

.mobile-reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 208, 174, 0.4);
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .nav-bar {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .reserve-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-nav-menu {
        width: 100%;
    }
    
    .header {
        padding: 0 1.5rem;
    }
}

       .hero-title {
           color: white;
           max-width: 800px;
           padding: 0 2rem;
           transition: opacity 0.6s ease, transform 0.6s ease;
       }

       .hero-title.fade-out {
           opacity: 0;
           transform: translateY(-50px);
       }

       .title-main {
           font-family: 'Playfair Display', serif;
           font-size: clamp(3rem, 8vw, 7rem);
           font-weight: 300;
           letter-spacing: 2px;
           margin-bottom: 2rem;
           color: #f8f6f0;
           line-height: 1.2;
       }

       .title-description {
           font-family: 'Muli', sans-serif;
           font-size: clamp(1rem, 2.5vw, 1.4rem);
           font-weight: 300;
           letter-spacing: 0.5px;
           opacity: 0.9;
           line-height: 1.6;
           color: #f0f0f0;
       }

       .project-section {
           width: 100%;
           background-color: white;
           min-height: 500px;
           position: relative;
           z-index: 100;
           display: flex;
           align-items: center;
           justify-content: center;
           padding: 100px 0;
       }

       .container {
           max-width: 900px;
           width: 100%;
           padding: 0 2rem;
           text-align: center;
           opacity: 0;
           transform: translateY(50px);
           animation: fadeInUp 1s ease forwards 0.3s;
       }

       .section-title {
           font-family: 'Playfair Display', serif;
           font-size: 36px;
           font-weight: 300;
           color: #2c2c2c;
           margin-bottom: 3rem;
           letter-spacing: 1px;
           position: relative;
           opacity: 0;
           transform: translateY(30px);
           animation: fadeInUp 1s ease forwards 0.5s;
       }

       .section-title::after {
           content: '';
           position: absolute;
           bottom: -15px;
           left: 50%;
           transform: translateX(-50%);
           width: 80px;
           height: 1px;
           background: linear-gradient(90deg, transparent, #e3d0ae, transparent);
           animation: lineGrow 1s ease forwards 1s;
           transform-origin: center;
           opacity: 0;
       }

       .content-wrapper {
           margin-bottom: 4rem;
           opacity: 0;
           transform: translateY(30px);
           animation: fadeInUp 1s ease forwards 0.7s;
       }

       .section-description {
           font-family: 'Muli', sans-serif;
           font-size: 16px;
           font-weight: 300;
           line-height: 1.8;
           color: #4a4a4a;
           letter-spacing: 0.3px;
           max-width: 800px;
           margin: 0 auto;
       }

       .button-group {
           display: flex;
           gap: 2rem;
           justify-content: center;
           flex-wrap: wrap;
           opacity: 0;
           transform: translateY(30px);
           animation: fadeInUp 1s ease forwards 0.9s;
       }

       .cta-btn {
           font-family: 'Muli', sans-serif;
           font-size: 14px;
           font-weight: 500;
           letter-spacing: 1px;
           text-transform: uppercase;
           padding: 15px 35px;
           border: 2px solid;
           background: transparent;
           cursor: pointer;
           transition: all 0.4s ease;
           position: relative;
           overflow: hidden;
       }

       .brochure-btn {
           border-color: #e3d0ae;
           color: #e3d0ae;
       }

       .brochure-btn::before {
           content: '';
           position: absolute;
           top: 0;
           left: -100%;
           width: 100%;
           height: 100%;
           background: #e3d0ae;
           transition: left 0.4s ease;
           z-index: -1;
       }

       .brochure-btn:hover::before {
           left: 0;
       }

       .brochure-btn:hover {
           color: #2c2c2c;
           transform: translateY(-3px);
           box-shadow: 0 8px 25px rgba(227, 208, 174, 0.3);
       }

       .reserve-btn-gold {
           border-color: #e3d0ae;
           color: #e3d0ae;
       }

       .reserve-btn-gold::before {
           content: '';
           position: absolute;
           top: 0;
           left: -100%;
           width: 100%;
           height: 100%;
           background: #e3d0ae;
           transition: left 0.4s ease;
           z-index: -1;
       }

       .reserve-btn-gold:hover::before {
           left: 0;
       }

       .reserve-btn-gold:hover {
           color: #2c2c2c;
           transform: translateY(-3px);
           box-shadow: 0 8px 25px rgba(227, 208, 174, 0.3);
       }

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

       @keyframes lineGrow {
           to {
               opacity: 1;
               transform: translateX(-50%) scaleX(1);
           }
       }

       .image-section {
           width: 100%;
           height: 100vh;
           position: relative;
           display: flex;
           align-items: center;
           justify-content: center;
           background-color: white;
           overflow: hidden;
           z-index: 50;
       }

       .image-container {
           width: 70%;
           height: 100%;
           position: relative;
           transition: width 0.1s ease-out;
           overflow: hidden;
       }

       .scroll-image {
           width: 100vw;
           height: 100%;
           object-fit: cover;
           display: block;
           position: absolute;
           left: 50%;
           transform: translateX(-50%);
       }

       /* Static Project Section */
       .project-section-static {
           width: 100%;
           height: 100vh;
           position: relative;
           z-index: 50;
       }

       .project-container {
           display: flex;
           width: 100%;
           height: 100%;
       }

       .left-gallery {
           width: 50%;
           background: white;
           padding: 2rem;
           display: flex;
           align-items: center;
           justify-content: center;
       }

       .gallery-grid {
           display: grid;
           grid-template-columns: 1fr 1fr;
           grid-template-rows: 1fr 1fr 1fr;
           gap: 1rem;
           width: 100%;
           height: 80%;
       }

       .gallery-item {
           overflow: hidden;
           border-radius: 8px;
       }

       .gallery-item img {
           width: 100%;
           height: 100%;
           object-fit: cover;
           transition: transform 0.3s ease;
       }

       .gallery-item:hover img {
           transform: scale(1.05);
       }

       .right-content {
           width: 50%;
           position: relative;
       }

       .bg-image-static {
           position: absolute;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background: url('/assets/swimm-frau.jpg') center/cover;
       }

       .bg-image-static::after {
           content: '';
           position: absolute;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background: rgba(0, 0, 0, 0.3);
       }

       .content-overlay-static {
           position: relative;
           z-index: 10;
           height: 100%;
           display: flex;
           flex-direction: column;
           justify-content: center;
           align-items: center;
           padding: 2rem;
           color: white;
       }

       .project-title-static {
           font-family: 'Playfair Display', serif;
           font-size: 4rem;
           font-weight: 300;
           letter-spacing: 3px;
           text-align: center;
           margin-bottom: 3rem;
           color: white;
       }

.features-grid-static {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 4rem;
            max-width: 600px;
            align-items: center;
        }

        .feature-item-static {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.5rem;
        }

        .feature-icon-static {
            font-size: 1.5rem;
            color: white;
            width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-content-static h3 {
            font-family: 'Playfair Display', serif;
            font-size: 0.9rem;
            color: white;
            margin-bottom: 0.2rem;
        }

        .feature-content-static p {
            font-family: 'Muli', sans-serif;
            font-size: 11px;
            color: white;
            opacity: 0.9;
            line-height: 1.4;
        }

        /* Apartment Section */
        .apartment-section {
            width: 100%;
            background-color: white;
            padding: 100px 0;
            position: relative;
            z-index: 100;
        }

        .apartment-container {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            gap: 4rem;
        }

        .apartment-image-left,
        .apartment-image-right {
            width: 350px;
            height: 500px;
            overflow: hidden;
            border-radius: 8px;
        }

        .apartment-image-left img,
        .apartment-image-right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .apartment-content {
            flex: 1;
            max-width: 500px;
            text-align: center;
        }

        .apartment-pretitle {
            font-family: 'Muli', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: #e3d0ae;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .apartment-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 300;
            color: #2c2c2c;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .apartment-description {
            font-family: 'Muli', sans-serif;
            font-size: 16px;
            font-weight: 300;
            line-height: 1.6;
            color: #4a4a4a;
            margin-bottom: 3rem;
        }

.apartment-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 100%;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap; /* Add this line */
}
        .apartment-feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
        }

        .apartment-feature-icon {
            width: 50px;
            height: 50px;
            border: 2px solid #e3d0ae;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e3d0ae;
            font-size: 20px;
        }

        .apartment-feature span {
            font-family: 'Muli', sans-serif;
            font-size: 12px;
            font-weight: 500;
            color: #2c2c2c;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .apartment-btn {
            font-family: 'Muli', sans-serif;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 15px 35px;
            border: 2px solid #e3d0ae;
            background: transparent;
            color: #e3d0ae;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .apartment-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #e3d0ae;
            transition: left 0.4s ease;
            z-index: -1;
        }

        .apartment-btn:hover::before {
            left: 0;
        }

        .apartment-btn:hover {
            color: #2c2c2c;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(227, 208, 174, 0.3);
        }

        /* Booking Section */
        .booking-section {
            width: 100%;
            background: linear-gradient(135deg, #0b111e 0%, #060a0f 100%);
            padding: 80px 0;
            position: relative;
            z-index: 100;
        }

        .booking-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .booking-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 300;
            color: #f8f6f0;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .booking-subtitle {
            font-family: 'Muli', sans-serif;
            font-size: 16px;
            font-weight: 300;
            color: rgba(248, 246, 240, 0.8);
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .booking-form-inline {
            display: flex;
            align-items: end;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .form-field {
            display: flex;
            flex-direction: column;
            min-width: 160px;
        }

        .form-field label {
            font-family: 'Muli', sans-serif;
            font-size: 12px;
            font-weight: 500;
            color: #e3d0ae;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-field input,
        .form-field select {
            padding: 12px 16px;
            border: none;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.9);
            color: #2c2c2c;
            font-family: 'Muli', sans-serif;
            font-size: 16px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .form-field input:focus,
        .form-field select:focus {
            outline: none;
            background: white;
            box-shadow: 0 0 0 2px rgba(227, 208, 174, 0.5);
            transform: translateY(-2px);
        }

        .booking-reserve-btn {
            background: linear-gradient(135deg, #e3d0ae 0%, #d4c19a 100%);
            border: none;
            border-radius: 8px;
            color: #2c2c2c;
            padding: 12px 24px;
            font-family: 'Muli', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 140px;
            justify-content: center;
        }

        .booking-reserve-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(227, 208, 174, 0.4);
            background: linear-gradient(135deg, #d4c19a 0%, #c5b289 100%);
        }

        .booking-reserve-btn i {
            transition: transform 0.3s ease;
        }

        .booking-reserve-btn:hover i {
            transform: translateX(3px);
        }

        /* Exclusive Bidding Section */
        .exclusive-section {
            width: 100%;
            background: #ffffff;
            padding: 120px 0;
            position: relative;
            z-index: 100;
        }

        .exclusive-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .main-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 300;
            color: #1a1a1a;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            position: relative;
        }

        .main-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #e3d0ae, transparent);
        }

        .main-subtitle {
            font-family: 'Muli', sans-serif;
            font-size: 16px;
            font-weight: 300;
            color: #666;
            margin-top: 2rem;
            max-width: 500px;
            line-height: 1.6;
        }

        .price-display {
            text-align: center;
            margin-bottom: 3rem;
        }

        .price-label {
            font-family: 'Muli', sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: #8a8a8a;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .price-amount {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 300;
            color: #1a1a1a;
            letter-spacing: -2px;
            margin-bottom: 0.5rem;
            position: relative;
        }

        .price-amount::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #e3d0ae, transparent);
        }

        .price-subtext {
            font-family: 'Muli', sans-serif;
            font-size: 14px;
            font-weight: 400;
            color: #666;
            margin-top: 1rem;
        }

        .divider-line {
            width: 1px;
            height: 80px;
            background: linear-gradient(to bottom, transparent, #e3d0ae, transparent);
            margin: 2rem 0;
        }

        .bid-content-wrapper {
            display: flex;
            gap: 4rem;
            width: 100%;
            max-width: 1000px;
            align-items: flex-start;
        }

        .bid-image {
            flex: 0 0 400px;
            height: 500px;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .bid-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .bid-image:hover img {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 2rem;
            color: white;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .bid-image:hover .image-overlay {
            transform: translateY(0);
        }

        .overlay-label {
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 0.5rem;
        }

        .overlay-description {
            font-family: 'Muli', sans-serif;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
            opacity: 0.9;
        }

        .bid-content {
            flex: 1;
            text-align: left;
        }

        .bid-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 300;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }

        .bid-description {
            font-family: 'Muli', sans-serif;
            font-size: 16px;
            font-weight: 300;
            color: #4a4a4a;
            line-height: 1.6;
            margin-bottom: 3rem;
        }

        .bid-form {
            width: 100%;
        }

        .form-row {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .input-group {
            flex: 1;
            text-align: left;
        }

        .input-label {
            font-family: 'Muli', sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            display: block;
        }

        .exclusive-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #f0f0f0;
            border-radius: 0;
            background: #ffffff;
            color: #1a1a1a;
            font-family: 'Muli', sans-serif;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
        }

        .exclusive-input:focus {
            outline: none;
            border-color: #e3d0ae;
            box-shadow: 0 4px 20px rgba(227, 208, 174, 0.15);
            transform: translateY(-1px);
        }

        .bid-input-container {
            margin: 3rem 0;
            text-align: left;
        }

        .bid-input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            border: 2px solid #e3d0ae;
            border-radius: 0;
            background: linear-gradient(135deg, #fefefe 0%, #f9f9f9 100%);
            box-shadow: 0 8px 32px rgba(227, 208, 174, 0.1);
            transition: all 0.3s ease;
        }

        .bid-input-wrapper:focus-within {
            border-color: #d4c19a;
            box-shadow: 0 12px 40px rgba(227, 208, 174, 0.2);
            transform: translateY(-2px);
        }

        .currency-symbol {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 400;
            color: #e3d0ae;
            padding: 0 20px;
            background: rgba(227, 208, 174, 0.1);
            height: 60px;
            display: flex;
            align-items: center;
        }

        .bid-input {
            flex: 1;
            padding: 18px 20px;
            border: none;
            background: transparent;
            color: #1a1a1a;
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 300;
            text-align: center;
        }

        .bid-input:focus {
            outline: none;
        }

        .currency-suffix {
            font-family: 'Muli', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: #8a8a8a;
            padding: 0 20px;
            letter-spacing: 1px;
        }

        .bid-note {
            font-family: 'Muli', sans-serif;
            font-size: 12px;
            color: #8a8a8a;
            margin-top: 0.5rem;
            font-style: italic;
        }

        .submit-bid-btn {
            width: 100%;
            padding: 20px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            color: #ffffff;
            border: none;
            border-radius: 0;
            font-family: 'Muli', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin: 2rem 0;
        }

        .submit-bid-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #e3d0ae 0%, #d4c19a 100%);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .submit-bid-btn:hover::before {
            left: 0;
        }

        .submit-bid-btn:hover {
            color: #1a1a1a;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

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

        .submit-bid-btn:hover .btn-icon {
            transform: rotate(10deg) scale(1.1);
        }

        .disclaimer {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
            font-family: 'Muli', sans-serif;
            font-size: 12px;
            color: #8a8a8a;
            padding: 1rem;
            background: rgba(227, 208, 174, 0.05);
            border-left: 3px solid #e3d0ae;
        }

        /* Location Section */
.location-section {
    width: 100%;
    background: #f8f8f8;
    padding: 100px 0;
    position: relative;
    z-index: 100;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.location-header {
    text-align: center;
    margin-bottom: 4rem;
}

.location-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
}

.location-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e3d0ae, transparent);
}

.location-subtitle {
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #666;
    margin-top: 2rem;
}

.map-container {
    position: relative;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.location-pin {
    text-align: center;
    margin-bottom: 1rem;
}

.location-pin i {
    font-size: 2rem;
    color: #e3d0ae;
}

.coordinates-display {
    text-align: center;
}

.coordinates-text {
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.location-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    z-index: 10;
}

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

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e3d0ae;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.info-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.info-content p {
    font-family: 'Muli', sans-serif;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

        /* Footer */
.footer {
    width: 100%;
            background: linear-gradient(135deg, #0b111e 0%, #060a0f 100%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    z-index: 100;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.footer-brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #e3d0ae;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-brand-text {
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: #e3d0ae;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    color: #e3d0ae;
    width: 16px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(227, 208, 174, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e3d0ae;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: #e3d0ae;
    color: #1a1a1a;
    border-color: #e3d0ae;
    transform: translateY(-2px);
}

.newsletter-text {
    font-family: 'Muli', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border: 1px solid rgba(227, 208, 174, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Muli', sans-serif;
    font-size: 16px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    padding: 12px 15px;
    background: #e3d0ae;
    border: none;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 12px;
}

.newsletter-btn:hover {
    background: #d4c19a;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 208, 174, 0.3), transparent);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-link {
    font-family: 'Muli', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #e3d0ae;
    transition: width 0.3s ease;
}

.legal-link:hover {
    color: #e3d0ae;
}

.legal-link:hover::after {
    width: 100%;
}

.legal-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.footer-copyright {
    flex: 1;
    text-align: center;
}

.footer-copyright p {
    font-family: 'Muli', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.developer-text {
    font-family: 'Muli', sans-serif;
    font-size: 13px;
    color: rgba(227, 208, 174, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
}

        /* Particle Container */
        .particle-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: 9999;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: #e3d0ae;
            opacity: 0.8;
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .pulse-circle {
            position: fixed;
            top: 50%;
            left: 50%;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #e3d0ae;
            transform: translate(-50%, -50%) scale(0);
            z-index: 10000;
            opacity: 0;
        }

        .pulse-circle.active {
            animation: pulseAnimation 1.5s ease-in-out;
        }

        @keyframes pulseAnimation {
            0% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(0);
            }
            50% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.5);
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(2);
            }
        }

        /* Main Booking Form Overlay */
        .booking-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: white;
            z-index: 8000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.6s ease;
        }

        .booking-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .booking-form {
            max-width: 1200px;
            width: 95%;
            height: 95vh;
            position: relative;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
            transform: translateY(50px);
            transition: transform 0.6s ease 0.3s;
        }

        .booking-overlay.active .booking-form {
            transform: translateY(0);
        }

        .close-btn {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .close-btn:hover {
            background: #e3d0ae;
            color: white;
            transform: rotate(90deg);
        }

        /* Mobile Hero Image */
        .booking-hero-mobile {
            position: relative;
            height: 250px;
            overflow: hidden;
            display: none;
        }

        .booking-hero-mobile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .booking-hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 2rem;
            color: white;
        }

        .booking-hero-overlay h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 0.5rem;
        }

        .booking-hero-overlay p {
            font-family: 'Muli', sans-serif;
            font-size: 14px;
            opacity: 0.9;
        }

        /* Desktop Layout */
        .booking-content {
            height: 100%;
        }

        .booking-desktop-layout {
            display: flex;
            height: 100%;
        }

        .booking-image-desktop {
            flex: 0 0 45%;
            position: relative;
            overflow: hidden;
        }

        .booking-image-desktop img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .booking-form-content {
            flex: 1;
            padding: 3rem;
            overflow-y: auto;
            background: #fafafa;
        }

        .booking-header-desktop h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 300;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }

        .booking-header-desktop p {
            font-family: 'Muli', sans-serif;
            font-size: 16px;
            color: #666;
            margin-bottom: 2rem;
        }

        .reservation-form {
            width: 100%;
        }

        .form-section {
            margin-bottom: 2rem;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .form-row {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            flex: 1;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-family: 'Muli', sans-serif;
            font-weight: 600;
            color: #1a1a1a;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(227, 208, 174, 0.9) 0%, rgba(212, 193, 154, 0.9) 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(227, 208, 174, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(227, 208, 174, 0.5);
    background: linear-gradient(135deg, #e3d0ae 0%, #d4c19a 100%);
}

.scroll-to-top:active {
    transform: translateY(-1px) scale(0.98);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        left: 1.5rem;
        font-size: 16px;
    }
}

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 18px;
            border: 2px solid #e8e8e8;
            border-radius: 8px;
            font-family: 'Muli', sans-serif;
            font-size: 16px;
            background: white;
            color: #1a1a1a;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #e3d0ae;
            box-shadow: 0 0 0 3px rgba(227, 208, 174, 0.1);
            transform: translateY(-2px);
        }

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

        .submit-reservation-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #e3d0ae 0%, #d4c19a 100%);
            color: #1a1a1a;
            border: none;
            border-radius: 10px;
            font-family: 'Muli', sans-serif;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 1rem;
        }

        .submit-reservation-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(227, 208, 174, 0.4);
            background: linear-gradient(135deg, #d4c19a 0%, #c5b289 100%);
        }

        .submit-reservation-btn i {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .submit-reservation-btn:hover i {
            transform: scale(1.1);
        }

        /* Brochure Sidebar */
        .brochure-sidebar {
            position: fixed;
            top: 0;
            right: -500px;
            width: 500px;
            height: 100vh;
            background: white;
            z-index: 9000;
            box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
            transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
        }

        .brochure-sidebar.active {
            right: 0;
        }

        .brochure-content {
            padding: 2rem;
            height: 100%;
            position: relative;
        }

        .brochure-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.1);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.2rem;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brochure-close:hover {
            background: #e3d0ae;
            color: white;
            transform: rotate(90deg);
        }

        .brochure-header {
            text-align: center;
            margin-bottom: 2rem;
            margin-top: 2rem;
        }

        .brochure-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e3d0ae 0%, #d4c19a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
        }

        .brochure-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 300;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }

        .brochure-header p {
            font-family: 'Muli', sans-serif;
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        .brochure-preview {
            position: relative;
            margin-bottom: 2rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .brochure-preview:hover {
            transform: translateY(-5px);
        }

        .brochure-preview img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .preview-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .brochure-preview:hover .preview-overlay {
            opacity: 1;
        }

        .preview-overlay i {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .preview-overlay span {
            font-family: 'Muli', sans-serif;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .brochure-form {
            margin-bottom: 2rem;
        }

        .download-brochure-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-family: 'Muli', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 2rem;
        }

        .download-brochure-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            background: linear-gradient(135deg, #e3d0ae 0%, #d4c19a 100%);
            color: #1a1a1a;
        }

        .brochure-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem;
            background: #f8f8f8;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(227, 208, 174, 0.1);
            transform: translateY(-2px);
        }

        .feature-item i {
            color: #e3d0ae;
            font-size: 18px;
            width: 20px;
            text-align: center;
        }

        .feature-item span {
            font-family: 'Muli', sans-serif;
            font-size: 12px;
            font-weight: 500;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 0 1.5rem;
                height: 120px;
            }

            .header.scrolled {
                height: 70px;
            }

            .reserve-btn {
                padding: 10px 20px;
                font-size: 12px;
            }

            .logo-img {
                height: 80px;
            }

            .header.scrolled .logo-img {
                height: 40px;
            }

            /* Fixed Project Section Mobile */
            .project-section {
                padding: 80px 0;
            }

            .project-container {
                flex-direction: column;
            }
            
            .left-gallery,
            .right-content {
                width: 100%;
                height: 600px;
            }

            .left-gallery {
                padding: 2rem 1rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: 1fr 1fr 1fr;
                gap: 0.8rem;
                height: 100%;
            }

            .gallery-item {
                min-height: 120px;
            }
            
            .project-title-static {
                font-size: 2.5rem;
                margin-bottom: 2rem;
            }
            
            .features-grid-static {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                max-width: 300px;
            }

            .apartment-container {
                flex-direction: column;
                gap: 2rem;
                padding: 0 1rem;
            }
            
            .apartment-image-left,
            .apartment-image-right {
                width: 280px;
                height: 350px;
                margin: 0 auto;
            }
            
            .apartment-features {
                gap: 1.5rem;
                flex-wrap: wrap;
            }
            
            .apartment-title {
                font-size: 2.2rem;
            }

            .booking-section {
                padding: 60px 0;
            }
            
            .booking-title {
                font-size: 2rem;
            }
            
            .booking-form-inline {
                flex-direction: column;
                align-items: stretch;
                padding: 1.5rem;
                gap: 1.5rem;
            }
            
            .form-field {
                min-width: auto;
                width: 100%;
            }
            
            .booking-reserve-btn {
                width: 100%;
                margin-top: 1rem;
            }

            .exclusive-section {
                padding: 80px 0;
            }
            
            .main-title {
                font-size: 2.5rem;
            }
            
            .price-amount {
                font-size: 3rem;
            }
            
            .bid-content-wrapper {
                flex-direction: column;
                gap: 2rem;
            }
            
            .bid-image {
                flex: none;
                width: 100%;
                height: 300px;
            }
            
            .bid-content {
                text-align: center;
            }
            
            .form-row {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .bid-input-wrapper {
                flex-direction: column;
                text-align: center;
            }
            
            .currency-symbol {
                width: 100%;
                justify-content: center;
                padding: 15px;
            }
            
            .bid-input {
                padding: 15px;
                text-align: center;
            }
            
            .disclaimer {
                flex-direction: column;
                gap: 5px;
                text-align: center;
                justify-content: center;
            }

            /* Mobile Location */
            .location-section {
                padding: 80px 0;
            }
            
            .location-title {
                font-size: 2.5rem;
            }
            
            .map-container {
                height: 400px;
            }
            
            .map-overlay {
                position: relative;
                top: auto;
                right: auto;
                margin: 1rem;
                background: white;
            }
            
            .location-info {
                position: relative;
                bottom: auto;
                left: auto;
                margin: 1rem;
                flex-direction: column;
            }
            
            .info-card {
                width: 100%;
                margin: 0;
            }

            /* Mobile Footer */
            .footer-top {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .footer-legal {
                order: 2;
            }
            
            .footer-copyright {
                order: 1;
            }
            
            .footer-developer {
                order: 3;
            }

            /* Mobile Booking Form */
            .booking-form {
                width: 100%;
                height: 100vh;
                border-radius: 0;
            }

            .booking-hero-mobile {
                display: block;
            }

            .booking-desktop-layout {
                flex-direction: column;
                height: calc(100% - 250px);
            }

            .booking-image-desktop {
                display: none;
            }

            .booking-form-content {
                padding: 2rem 1.5rem;
            }

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

            .form-section {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .form-row {
                flex-direction: column;
                gap: 1.5rem;
            }

            .close-btn {
                top: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
            }

            /* Mobile Brochure Sidebar */
            .brochure-sidebar {
                width: 100%;
                right: -100%;
            }

            .brochure-content {
                padding: 1.5rem;
            }

            .brochure-header {
                margin-top: 3rem;
            }

            .brochure-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 0 1rem;
            }

            .title-main {
                letter-spacing: 1px;
            }

            .hero-title {
                padding: 0 1rem;
            }

            .image-container {
                width: 85%;
            }

            .container {
                padding: 0 1rem;
            }

            .gallery-grid {
                gap: 0.5rem;
            }

            .gallery-item {
                min-height: 100px;
            }

            .apartment-image-left,
            .apartment-image-right {
                width: 250px;
                height: 300px;
            }

            .apartment-features {
                gap: 1rem;
            }

            .apartment-feature-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }
/* Success Message Overlay */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-overlay.active {
    opacity: 1;
}

.success-message {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.success-overlay.active .success-message {
    transform: scale(1);
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.success-checkmark-circle {
    stroke: #4CAF50;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-check {
    stroke: #4CAF50;
    stroke-width: 2;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    to {
        stroke-dashoffset: 0;
    }
}

.success-text {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .success-message {
        padding: 30px;
        max-width: 320px;
    }
    
    .success-checkmark {
        width: 60px;
        height: 60px;
    }
    
    .success-text {
        font-size: 16px;
    }
}

/* Button Loading States */
button.loading,
button:disabled.loading {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.newsletter-btn.loading,
.submit-reservation-btn.loading,
.download-brochure-btn.loading,
.submit-bid-btn.loading {
    background: #999 !important;
    color: white !important;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ensure buttons maintain size during loading */
button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Prevent iOS Safari zoom on input focus - ensure all inputs are at least 16px */
input,
select,
textarea {
    font-size: 16px !important;
}

/* Newsletter Error Message */
.newsletter-error {
    margin-top: 10px;
    padding: 12px 15px;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 4px;
    color: #dc3545;
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.newsletter-error i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .newsletter-error {
        font-size: 13px;
        padding: 10px 12px;
    }
}
