:root {
    --bg-color: #f4eee3; /* Light cream background */
    --primary-dark: #1a4331; /* Deep green */
    --text-dark: #2d3748;
    --accent: #2d6a4f;
    --border-color: #e2e8f0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Decorative Shapes */
.bg-shape {
    position: fixed;
    z-index: 0;
    pointer-events: none;
}
.bg-shape-1 {
    top: 0;
    left: 0;
    width: 40vw;
    height: 100vh;
}
.bg-shape-2 {
    bottom: 0;
    left: 0;
    width: 60vw;
    height: 30vh;
}

/* Top Bar: Contact and Language Switcher */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}
.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
}
.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-info a:hover {
    color: var(--accent);
}
.lang-switcher {
    display: flex;
    gap: 5px;
    background: rgba(255,255,255,0.5);
    padding: 4px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}
.lang-btn {
    background: transparent;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}
.lang-btn:hover {
    background: rgba(26, 67, 49, 0.1);
}
.lang-btn.active {
    background: var(--primary-dark);
    color: white;
}

.container {
    display: flex;
    min-height: 100vh;
    width: 100vw;
    position: relative;
    z-index: 1;
}

/* LEFT CONTENT SECTION */
.content-section {
    flex: 0 0 55%;
    padding: 6rem 6rem 2rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}
.logo-text {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: -1px;
}

/* Subtitle */
.subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}
.subtitle .line {
    height: 1px;
    width: 40px;
    background-color: #cbd5e1;
}
.subtitle .text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    letter-spacing: 2px;
}

/* Main Title */
.main-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.main-title span {
    font-weight: 400;
}

/* Description */
.description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 3.5rem;
}
.description strong {
    color: var(--primary-dark);
    font-weight: 700;
}

/* Features Grid */
.features-grid {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    position: relative;
    flex: 1;
}
/* Separator lines between items */
.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(27, 69, 50, 0.15);
}
.icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(27, 69, 50, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}
.feature-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.4;
}

/* Skyline Outline */
.skyline {
    position: absolute;
    bottom: 2rem;
    left: 6rem;
    width: 300px;
    height: 60px;
    opacity: 0.5;
    z-index: 1;
}

/* RIGHT IMAGE SECTION */
.image-section {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.building-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlays on the image */
.overlay-shape {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}
.overlay-left {
    top: 0;
    left: -1px; /* Prevent sub-pixel gap */
    width: 30%;
    height: 100%;
}
.overlay-accent {
    top: 0;
    left: -1px;
    width: 40%;
    height: 100%;
    opacity: 0.8;
    z-index: 1;
}
.overlay-bottom-right {
    bottom: 0;
    right: 0;
    width: 90%;
    height: 60%;
}

.image-text {
    position: relative;
    z-index: 3;
    padding: 3rem;
    color: white;
    text-align: left;
    margin-right: 2rem;
    margin-bottom: 2rem;
    border-left: 2px solid white;
    padding-left: 1.5rem;
}
.image-text .light {
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 2px;
}
.image-text .bold {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 1px;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .content-section {
        padding: 5rem 4rem 2rem 4rem;
    }
    .top-bar {
        padding: 1.5rem 4rem;
    }
    .main-title {
        font-size: 3rem;
    }
    .features-grid {
        flex-wrap: wrap;
    }
    .feature-item:not(:last-child)::after {
        display: none;
    }
    .feature-item {
        width: calc(50% - 1rem);
        flex: none;
    }
    .skyline {
        left: 4rem;
    }
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }
    body {
        overflow-y: auto;
    }
    .top-bar {
        padding: 1rem 2rem;
        flex-direction: column-reverse;
        gap: 15px;
        position: relative;
        background: rgba(244, 238, 227, 0.9);
        backdrop-filter: blur(10px);
    }
    .content-section {
        flex: none;
        width: 100%;
        padding: 2rem;
        min-height: auto;
        clip-path: none;
        align-items: center;
        text-align: center;
    }
    .logo-container {
        justify-content: center;
    }
    .subtitle {
        justify-content: center;
    }
    .main-title {
        font-size: 2.5rem;
        text-align: center;
    }
    .description {
        text-align: center;
        font-size: 1.1rem;
    }
    .features-grid {
        gap: 1.5rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    .skyline {
        display: none;
    }
    .bg-shape-2 {
        display: none;
    }
    
    .image-section {
        flex: none;
        width: 100%;
        height: 50vh;
        clip-path: none;
        justify-content: center;
        align-items: center;
    }
    .image-text {
        margin: 0;
        text-align: center;
        border-left: none;
        border-top: 2px solid white;
        padding: 1.5rem 0 0 0;
        background: rgba(26, 67, 49, 0.8);
        padding: 1.5rem;
        border-radius: 10px;
    }
    .overlay-left, .overlay-accent, .overlay-bottom-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .feature-item {
        width: 100%;
    }
    .main-title {
        font-size: 2rem;
    }
    .top-bar {
        padding: 1rem;
    }
    .content-section {
        padding: 2rem 1rem;
    }
}
