/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Luxury Color Palette */
    --primary-color: #0a0a0a;
    --secondary-color: #1a1a1a;
    --accent-color: #d4af37;
    --accent-hover: #b8941f;
    --forest-dark: #1a2f1a;
    --forest-light: #2d452d;
    --text-dark: #0a0a0a;
    --text-light: #888;
    --text-gold: #d4af37;
    --bg-dark: #0f0f0f;
    --bg-light: #fafafa;
    --white: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.8);
    --overlay-darker: rgba(0, 0, 0, 0.95);
    
    /* Typography */
    --font-primary: 'Helvetica Neue', -apple-system, sans-serif;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-luxury: 'Cormorant Garamond', 'Georgia', serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 40px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
    letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

h1 { font-size: 3.5rem; font-weight: 300; }
h2 { font-size: 2.8rem; font-weight: 300; }
h3 { font-size: 2.2rem; font-weight: 400; }
h4 { font-size: 1.6rem; font-weight: 400; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-weight: 400;
    text-align: center;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.btn-primary:hover::after {
    transform: scaleX(1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 15px 39px;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 15px 39px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-xlarge {
    padding: 20px 50px;
    font-size: 1.2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 1.5rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-color);
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.lang-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-color);
}

.lang-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.nav-logo h1 {
    font-size: 1.2rem;
    color: var(--white);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.1em;
    font-family: var(--font-luxury);
    font-family: var(--font-heading);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-tagline {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 1;
    font-family: var(--font-primary);
    background: rgba(255, 215, 0, 0.15);
    padding: 6px 16px;
    border: 2px solid var(--accent-color);
    border-radius: 0;
    margin-top: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.nav-tagline::before {
    content: '★';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.2rem;
}

.nav-tagline::after {
    content: '★';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.2rem;
}

.nav-tagline:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 20px;
}

.nav-link {
    font-weight: 300;
    color: var(--white);
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    position: relative;
    transition: var(--transition);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--accent-color);
}

.nav-cta {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    padding: 10px 30px;
    border: 1px solid var(--accent-color);
    margin-left: 20px;
    font-weight: 500;
}

.nav-cta:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.nav-cta:hover::after {
    display: none;
}


.nav-mobile-toggle {
    display: none;
    margin-left: 0;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--primary-color);
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%);
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    line-height: 1.1;
    text-transform: uppercase;
    font-family: var(--font-luxury);
    animation: fadeInUp 1s ease-out 0.5s both;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    font-family: var(--font-primary);
    font-style: normal;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    font-family: var(--font-luxury);
    font-style: italic;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--accent-color);
    text-transform: uppercase;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.7s both;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-exclusive-tagline {
    font-size: 0.85rem;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.8);
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.9s both;
    opacity: 0.7;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.trust-badge i {
    font-size: 1.2rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--white);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Value Propositions */
.value-props {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.value-prop-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.value-prop-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.value-prop-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.value-prop-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

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

.section-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 2.2rem;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.map-container {
    height: 500px;
    background: var(--secondary-color);
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.location-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flight-times {
    margin-bottom: 40px;
}

.flight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.flight-item:hover {
    border-bottom-color: var(--accent-color);
}

.flight-city {
    display: flex;
    align-items: center;
    gap: 15px;
}

.flag-icon {
    width: 30px;
    height: 20px;
}

.flight-time {
    font-weight: 300;
    color: var(--accent-color);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.location-intro {
    margin: 20px 0 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.location-info h4 {
    font-size: 1.2rem;
    margin: 30px 0 20px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--primary-color);
}

.location-features {
    display: grid;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Bespoke Service Section */
.bespoke-service {
    background-color: var(--bg-light);
}

.service-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-intro {
    text-align: center;
    margin-bottom: 80px;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 40px;
}

.market-insight {
    margin: 60px auto;
    padding: 60px;
    background: var(--white);
    border-left: 3px solid var(--accent-color);
    max-width: 900px;
}

.market-insight h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 300;
    color: var(--primary-color);
}

.market-insight p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-bottom: 100px;
}

.service-feature {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.feature-icon i {
    font-size: 2rem;
}

.service-feature h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.service-feature p {
    line-height: 1.8;
    color: var(--text-light);
}

.consultation-cta {
    text-align: center;
    padding: 60px 0;
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Exclusive Services - Seller/Buyer Section */
.exclusive-services {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid var(--accent-color);
    border-radius: 0;
}

.exclusive-services h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.service-highlight {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.service-column {
    padding: 30px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-column h4 i {
    color: var(--accent-color);
    margin-right: 10px;
}

.service-column p {
    color: var(--text-muted);
    line-height: 1.6;
}

.invitation-notice {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent-color);
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-top: 2px solid var(--accent-color);
    margin: 0 -40px -40px -40px;
}

.cta-pretext {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
    font-family: var(--font-luxury);
}

.property-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

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

.property-card.featured {
    transform: scale(1.05);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.property-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.property-details {
    padding: 30px;
}

.property-specs {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.property-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.property-description {
    margin: 20px 0;
}

/* The Królewo Advantage Section */
.nature {
    background-color: var(--white);
}

.advantage-content {
    margin-top: 60px;
}

/* Forest Stats Cards */
.forest-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.stat-card {
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.stat-icon i {
    font-size: 2.5rem;
}

.stat-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.stat-card p {
    line-height: 1.8;
    color: var(--text-light);
}

/* Lifestyle Benefits */
.lifestyle-benefits {
    margin-bottom: 80px;
}

.lifestyle-benefits h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 300;
    color: var(--primary-color);
}

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

.benefit-item {
    padding: 30px;
    background: transparent;
    border-left: 3px solid var(--accent-color);
    padding-left: 30px;
}

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

.benefit-item p {
    line-height: 1.8;
    color: var(--text-light);
}

/* Investment Perspective */
.investment-perspective {
    text-align: center;
    padding: 60px;
    background: var(--bg-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.investment-perspective h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 300;
    color: var(--primary-color);
}

.investment-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
    font-weight: 300;
}

/* Responsive Adjustments for Nature Section */
@media (max-width: 768px) {
    .forest-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .investment-perspective {
        padding: 40px 20px;
    }
}

/* Investment Section */
.investment {
    background-color: var(--bg-light);
}

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

.roi-calculator {
    background: var(--white);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.calculator-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input[type="number"],
.form-group input[type="range"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.range-value {
    display: inline-block;
    margin-left: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.calculator-results {
    margin-top: 30px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    color: var(--text-light);
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.calculator-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.data-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

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

.data-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.data-item h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.comparison-chart {
    background: var(--white);
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.chart-bars {
    margin-top: 30px;
}

.chart-bar {
    margin-bottom: 25px;
}

.bar-fill {
    height: 40px;
    background: var(--accent-color);
    transition: var(--transition);
}

.bar-label {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.country {
    font-weight: 600;
}

.price {
    color: var(--primary-color);
    font-weight: 700;
}

/* Buyer Journey */
.journey-timeline {
    position: relative;
    padding: 40px 0;
    margin-bottom: 60px;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: var(--accent-color);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 400;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.support-services {
    text-align: center;
}

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

.service-item {
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    background: var(--secondary-color);
    color: var(--white);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-subtitle {
    color: var(--accent-color);
}

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

.testimonial-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.testimonial-avatar {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonial-avatar i {
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.6;
}

.testimonial-content {
    padding: 30px;
}

.testimonial-flag {
    width: 40px;
    height: 25px;
    margin-bottom: 15px;
}

.testimonial-location {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-property {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--accent-color);
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Trust Section */
.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.trust-feature {
    text-align: center;
}

.trust-feature i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.partners-section {
    text-align: center;
}

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

.partner-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.partner-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 2.5rem;
}

.partner-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.05em;
}

.partner-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 120px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.cta-options {
    margin-bottom: 60px;
}

.cta-option {
    margin-bottom: 20px;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 10px;
}

.cta-divider {
    margin: 30px 0;
    font-size: 1.2rem;
    opacity: 0.7;
}

.cta-secondary-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-form-wrapper {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    margin-top: 30px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    border-radius: 0;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.contact-form input::placeholder,
.contact-form select option,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.05);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-color);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background: var(--accent-hover);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .location-content,
    .investment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .journey-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .timeline-number {
        left: 30px;
    }
    
    .timeline-content {
        width: auto;
        margin-left: 40px !important;
    }
}

@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 20px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        padding: 15px 0;
        font-size: 1.2rem;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .nav-mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-mobile-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        transition: var(--transition);
    }
    
    .nav-mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Language Switcher on Mobile */
    .language-switcher {
        margin-left: auto;
        margin-right: 0.5rem;
    }
    
    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    /* Hide language switcher when menu is open */
    .nav-menu.active ~ .language-switcher {
        opacity: 0;
        pointer-events: none;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    /* Value Props */
    .value-props {
        position: static;
    }
    
    .value-prop-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    /* Nature Gallery */
    .nature-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    
    .nature-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Data Grid */
    .data-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Exclusive Services */
    .service-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .exclusive-services {
        padding: 20px;
    }
    
    .invitation-notice {
        margin: 0 -20px -20px -20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    /* Language Switcher on very small screens */
    .language-switcher {
        gap: 0.25rem;
        margin-right: 0.25rem;
    }
    
    .lang-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .property-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}