
/* Elegant Warm Color Palette - Inspired by Reference Design */
:root {
    --primary-color: #4A4A4A;
    --secondary-color: #8B7355;
    --accent-color: #3A3A3A;
    --light-cream: #F5F2EE;
    --warm-beige: #E8E0D6;
    --cream-beige: #DDD4C7;
    --pure-white: #FFFFFF;
    --dark-charcoal: #2C2C2C;
    --warm-gray: #6B5D4F;
    --soft-gold: #C4B59A;
    --dark-text: #2C2C2C;
    --shadow-elegant: 0 4px 12px rgba(42, 42, 42, 0.08);
    --shadow-hover: 0 8px 20px rgba(42, 42, 42, 0.12);
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'Lemon Milk Light';
    src: url('attached_assets/LEMONMILK-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Sophisticated Typography */
h1, h2, h3 {
    font-family: 'Lemon Milk Light', 'Playfair Display', serif;
    font-weight: 300;
}

/* Optimized Fast Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.01);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header with Glass Morphism */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(27, 54, 93, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 10px 40px rgba(27, 54, 93, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 55px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(27, 54, 93, 0.1));
}

.logo:hover {
    transform: scale(1.05);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 5px;
    border: 1px solid rgba(146, 157, 178, 0.2);
    backdrop-filter: blur(10px);
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    background: rgba(146, 157, 178, 0.1);
    transform: translateY(-1px);
}

.lang-btn.active {
    background: var(--soft-gold);
    color: white;
    box-shadow: 0 4px 15px rgba(196, 181, 154, 0.3);
    transform: translateY(-1px);
}

.footer-lang {
    margin: 20px 0;
    justify-content: center;
}

.footer-lang .lang-btn {
    color: white;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 5px;
}

.footer-lang .lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-lang .lang-btn.active {
    background: var(--soft-gold);
    color: white;
    border-color: var(--soft-gold);
}

.cta-button {
    background: var(--dark-charcoal);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(44, 44, 44, 0.4);
    background: var(--warm-gray);
}

/* Hero Section with Advanced Animations */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(44, 44, 44, 0.7) 30%, rgba(58, 58, 58, 0.6) 70%, rgba(0, 0, 0, 0.85) 100%), url('attached_assets/Lateral View_1749765848004.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 80%, rgba(255, 184, 0, 0.08) 0%, transparent 40%);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.3s ease-out 0.05s both;
}

.hero-subtitle {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    line-height: 1.3;
    animation: fadeInUp 0.3s ease-out 0.1s both;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--cream-beige);
    margin-bottom: 50px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px 45px;
    border-radius: 60px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(230, 220, 207, 0.4);
    display: inline-block;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.3s ease-out 0.15s both;
}

.hero-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 2s infinite;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.3s ease-out 0.2s both;
}

.cta-primary {
    background: var(--dark-charcoal);
    color: white;
    padding: 22px 45px;
    border: none;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(44, 44, 44, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 40px rgba(44, 44, 44, 0.5);
    background: var(--warm-gray);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 22px 45px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(20px);
    font-family: 'Inter', sans-serif;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: -1;
}

.cta-secondary:hover::before {
    transform: translateX(0);
}

.cta-secondary:hover {
    color: var(--primary-blue);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.hero-image {
    display: none;
}

/* Why Punta Cana Section */
.why-punta-cana {
    padding: 80px 0;
    background: var(--light-cream);
}

.why-punta-cana h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--light-purple);
    border-radius: 20px;
    border: 1px solid rgba(146, 157, 178, 0.1);
    box-shadow: var(--shadow-elegant);
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--dark-text);
    font-weight: 500;
}

.why-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Amenities Section */
.amenities {
    padding: 80px 0;
    background: var(--warm-beige);
}

.amenities h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 60px;
}

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

.amenity-item {
    background: var(--pure-white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-elegant);
    transition: transform 0.2s ease;
    border: 1px solid rgba(27, 54, 93, 0.05);
}

.amenity-item:hover {
    transform: translateY(-4px);
}

.amenity-item i {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.amenity-item:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.amenity-item h3 {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.amenity-item p {
    color: var(--dark-text);
    opacity: 0.8;
}

/* Interior Design Section */
.interior-design {
    padding: 80px 0;
    background: var(--light-cream);
}

.interior-design h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.interior-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--dark-text);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
    opacity: 0.9;
}

.interior-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 60px;
}

.interior-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.interior-feature.animated {
    opacity: 1;
    transform: translateY(0);
}

.interior-feature.reverse .interior-image {
    order: 2;
}

.interior-feature.reverse .interior-content {
    order: 1;
}

.interior-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-elegant);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.interior-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.interior-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

.interior-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.interior-content p {
    font-size: 1.15rem;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.interior-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: var(--dark-text);
    opacity: 0.85;
    border-bottom: 1px solid rgba(27, 54, 93, 0.1);
}

.interior-features li:last-child {
    border-bottom: none;
}

.interior-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.interior-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.highlight-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--pure-white);
    border-radius: 20px;
    box-shadow: var(--shadow-elegant);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 1px solid rgba(27, 54, 93, 0.05);
}

.highlight-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.highlight-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.highlight-item:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.highlight-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.highlight-item p {
    color: var(--dark-text);
    opacity: 0.8;
    line-height: 1.6;
}

/* Masonry Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--dark-charcoal);
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--light-cream);
    margin-bottom: 50px;
}

.masonry-gallery {
    column-count: 3;
    column-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(27, 54, 93, 0.15);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(27, 54, 93, 0.25);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 54, 93, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

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

.gallery-overlay i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 10px 10px;
    backdrop-filter: blur(10px);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.8rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Investment Section */
.investment {
    padding: 80px 0;
    background: var(--pale-blue);
}

/* Payment Plan Section */
.payment-plan {
    padding: 80px 0;
    background: var(--warm-beige);
    position: relative;
    overflow: hidden;
}

.payment-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(27, 54, 93, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.payment-plan .container {
    position: relative;
    z-index: 2;
}

.payment-plan h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.payment-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--dark-text);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
    opacity: 0.9;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.payment-option {
    background: var(--cream-beige);
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 2px solid rgba(146, 157, 178, 0.1);
    box-shadow: var(--shadow-elegant);
}

.payment-option.featured {
    background: var(--light-purple);
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
    position: relative;
}

.payment-option.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
    z-index: 3;
}

.payment-option:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.payment-option.featured:hover {
    transform: translateY(-8px) scale(1.04);
}

.payment-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.payment-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
    margin-top: 0;
}

.payment-subtitle {
    font-size: 1rem;
    color: var(--secondary-blue);
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 15px;
}

.discount-badge {
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(182, 167, 146, 0.3);
    margin-top: auto;
}

.payment-structure {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px 0;
    border-top: 1px solid rgba(27, 54, 93, 0.15);
    border-bottom: 1px solid rgba(27, 54, 93, 0.15);
    align-items: center;
    min-height: 140px;
}

.payment-phase {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.payment-phase:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(27, 54, 93, 0.2);
}

.phase-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.phase-percentage {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(182, 167, 146, 0.3);
    font-family: 'Lemon Milk Light', 'Inter', sans-serif;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
}

.phase-subtitle {
    display: none;
}

.payment-timing {
    background: rgba(27, 54, 93, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timing-item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    color: var(--dark-text);
    font-weight: 500;
}

.timing-item span:first-child {
    color: var(--primary-blue);
    font-weight: 600;
}

.timing-item span:last-child {
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--cream-white);
    border-radius: 20px;
    box-shadow: var(--shadow-elegant);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 1px solid rgba(27, 54, 93, 0.05);
}

.benefit-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.benefit-item i {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: var(--dark-text);
    opacity: 0.8;
    line-height: 1.6;
}

.investment h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 60px;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.investment-card {
    background: var(--pure-white);
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(27, 54, 93, 0.08);
    box-shadow: var(--shadow-elegant);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 350px;
    gap: 20px;
    transition: transform 0.2s ease;
}

.investment-card:hover {
    transform: translateY(-4px);
}

.investment-card > * {
    position: relative;
    z-index: 2;
}

.investment-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 3;
}

.price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold-accent);
    margin: 20px 0 30px 0;
    text-shadow: 0 2px 8px rgba(255, 184, 0, 0.3);
    line-height: 1.2;
    font-family: 'Lemon Milk Light', 'Inter', sans-serif;
    text-align: center;
    display: block;
    width: 100%;
    position: static;
    z-index: 3;
    padding: 15px 0;
    transform: none !important;
}

.investment-card p {
    color: var(--dark-text);
    line-height: 1.7;
    font-size: 1.05rem;
    opacity: 0.85;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 3;
    margin-top: 15px;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--light-cream);
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 60px;
}

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

.review-card {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--dark-text);
}

.reviewer strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.reviewer span {
    color: var(--warm-brown);
    font-size: 0.9rem;
}

/* Brokers Section */
.brokers {
    padding: 80px 0;
    background: var(--dark-charcoal);
}

.brokers h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--light-cream);
    margin-bottom: 60px;
}

.brokers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.broker-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap;
}

.broker-row.centered-row {
    justify-content: center;
    gap: 60px;
}

.broker-card {
    text-align: center;
    padding: 45px 35px;
    background: var(--pure-white);
    border-radius: 25px;
    width: 300px;
    box-shadow: var(--shadow-elegant);
    border: 1px solid rgba(27, 54, 93, 0.08);
    transition: transform 0.2s ease;
}

.broker-card:hover {
    transform: translateY(-4px);
}

.broker-card > * {
    position: relative;
    z-index: 2;
}

.broker-image {
    margin-bottom: 30px;
    position: relative;
}

.broker-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.broker-card:hover .broker-image::before {
    opacity: 0.1;
}

.broker-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border: 5px solid var(--pure-white);
    box-shadow: 0 8px 25px rgba(27, 54, 93, 0.15);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.broker-card:hover .broker-image img {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(27, 54, 93, 0.25);
}

.broker-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
}

.broker-card p {
    color: var(--dark-text);
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.broker-card .company {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: var(--warm-gray);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--cream-beige);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.cta-final {
    background: var(--dark-charcoal);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(44, 44, 44, 0.3);
}

.cta-final:hover {
    background: var(--warm-gray);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.4);
}

.contact-info {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: var(--cream-beige);
    text-align: center;
}

.booking-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.booking-section p {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calendly-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--pure-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.calendly-container iframe {
    border-radius: 15px;
}

/* Footer */
footer {
    background: var(--dark-text);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.privacy-policy {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-policy h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.privacy-policy p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-right {
        gap: 15px;
    }
    
    .language-switcher {
        padding: 3px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .interior-feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .interior-feature.reverse .interior-image,
    .interior-feature.reverse .interior-content {
        order: unset;
    }
    
    .interior-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .interior-content h3 {
        font-size: 1.6rem;
    }
    
    .interior-intro {
        font-size: 1.1rem;
    }

    .hero {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 15px 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .broker-row.centered-row {
        justify-content: center;
        gap: 40px;
    }
    
    .broker-card {
        width: 250px;
        padding: 30px 20px;
    }
    
    .broker-image img {
        width: 120px;
        height: 120px;
    }
    
    .masonry-gallery {
        column-count: 2;
        column-gap: 15px;
    }
    
    .lightbox-prev, .lightbox-next {
        left: 10px;
        right: 10px;
        padding: 12px 15px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .calendly-container iframe {
        height: 600px;
    }
}

@media (max-width: 480px) {
    .interior-highlights {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        padding: 30px 20px;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .cta-primary {
        width: 100%;
        max-width: 300px;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .payment-option.featured {
        transform: none;
    }
    
    .payment-structure {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .payment-phase:not(:last-child)::after {
        display: none;
    }
    
    .timing-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .payment-benefits {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .broker-row {
        flex-direction: column;
        align-items: center;
    }
    
    .broker-card {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }
    
    .calendly-container iframe {
        height: 500px;
    }
    
    .masonry-gallery {
        column-count: 1;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-prev, .lightbox-next {
        position: fixed;
        top: 50%;
        left: 20px;
        right: auto;
        font-size: 1.3rem;
        padding: 10px 12px;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-next {
        left: auto;
        right: 20px;
    }
    
    .lightbox-close {
        top: -35px;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }
}
