@font-face {
    font-family: 'Syne';
    src: url('Site%20Files/Syne-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stretch Pro';
    src: url('Site%20Files/StretchPro%202.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fafafa;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
}

.nav-left {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4rem;
}

.nav-page-link {
    text-decoration: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-page-link:hover {
    opacity: 1;
}

.floating-logo {
    position: fixed;
    left: calc(2rem + 30px);
    top: 50px;
    z-index: 100;
}

.logo-img {
    height: 512px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    background: #f0f0f0;
    padding: 0.25rem;
    border-radius: 50px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link.active {
    background: #1a1a1a;
    color: white;
}

.nav-link:hover:not(.active) {
    color: #1a1a1a;
}

/* Language Dropdown */
.nav-lang-dropdown {
    position: relative;
    margin-right: 25px;
}

.nav-lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-lang-btn:hover {
    border-color: white;
}

.nav-lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    overflow: hidden;
    min-width: 120px;
    z-index: 200;
}

.nav-lang-dropdown.active .nav-lang-menu {
    display: block;
}

.nav-lang-option {
    display: block;
    padding: 10px 16px;
    color: white;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    transition: background 0.2s ease;
}

.nav-lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-lang-option.active {
    color: #8295A6;
}

.nav-cta {
    background: #8295A6;
    color: white;
    border: none;
    padding: 7px 1.8rem;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.nav-cta:hover {
    background: #6b7f8f;
    transform: translateY(-1px);
}

.nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 1rem;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #8295A6;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger:hover span {
    background: #6b7f8f;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 998;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-overlay.active {
    right: 0;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.menu-link {
    text-decoration: none;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.menu-link:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    background: transparent;
    overflow: visible;
}

.hero-background {
    position: fixed;
    inset: 0;
    background-image: url('Site Files/Backgound blank.png');
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: -2;
}

.hero-overlay {
    display: none;
}

.hero-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 280px));
    width: 83%;
    max-width: 1109px;
    z-index: -1;
    font-family: 'Stretch Pro', sans-serif;
    font-size: clamp(1.125rem, 2.625vw, 2.4375rem);
    font-weight: 400;
    color: white;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: none;
    white-space: nowrap;
    margin: 0;
    font-feature-settings: "liga" 1, "dlig" 1;
    font-variant-ligatures: common-ligatures discretionary-ligatures;
    -webkit-font-feature-settings: "liga" 1, "dlig" 1;
}

.hero-cta {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 255px));
    z-index: -1;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-cta:hover {
    background: #333;
}

.hero-tagline {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 225px));
    z-index: -1;
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: white;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-feature-settings: "liga" 1, "dlig" 1;
    font-variant-ligatures: common-ligatures discretionary-ligatures;
    -webkit-font-feature-settings: "liga" 1, "dlig" 1;
    white-space: nowrap;
    margin: 0;
}

.hero-subtagline {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 190px));
    z-index: -1;
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: none;
    white-space: nowrap;
    margin: 0;
}

.hero-house-container {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: calc(85vh + 150px);
    overflow: hidden;
    z-index: 2;
}

.hero-house {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}


.hero-gradient {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 600px;
    background: linear-gradient(to bottom, transparent 0%, rgba(245, 245, 255, 0.2) 15%, rgba(245, 245, 255, 0.55) 40%, rgba(245, 245, 255, 0.85) 65%, #F5F5FF 85%, #F5F5FF 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-box-left {
    position: absolute;
    bottom: calc(2rem + 363px);
    left: calc(50% - 200px);
    transform: translateX(-100%);
    width: 240px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid white;
    border-radius: 30px;
    z-index: 4;
    display: flex;
    align-items: center;
    padding: 4px;
    gap: 12px;
}

.hero-box-right {
    position: absolute;
    bottom: calc(2rem + 363px);
    right: calc(50% - 200px);
    transform: translateX(100%);
    width: 240px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid white;
    border-radius: 30px;
    z-index: 4;
    display: flex;
    align-items: center;
    padding: 4px;
    gap: 12px;
}

.hero-box-icon {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-box-icon-img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.hero-box-text {
    color: #1a1a1a;
    font-size: 1.075rem;
    font-weight: 500;
}

.hero-box-left .hero-box-text {
    color: white;
}

.hero-container-btn {
    position: absolute;
    bottom: calc(2rem + 270px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid white;
    color: white;
    padding: 10px 29px;
    border-radius: 24px;
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-container-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%) translateY(-2px);
}

.hero-scroll-icon {
    position: absolute;
    bottom: calc(2rem + 100px);
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 58px;
    z-index: 4;
    animation: bounce 4.84s ease-in-out infinite;
}

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

/* Content Section */
.content-section {
    background-color: #F5F5FF;
    min-height: 200vh;
    position: relative;
    z-index: 5;
    margin-top: calc(-50vh + 350px);
    border: none;
    box-shadow: none;
    padding-top: 100px;
    padding-bottom: 100px;
}

.content-bottom-image {
    position: absolute;
    bottom: -800px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 6;
}

.new-era-text {
    position: absolute;
    bottom: -1297px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Syne', sans-serif;
    font-size: 92px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    z-index: 100;
    margin: 0;
    white-space: nowrap;
    line-height: 1.56;
    letter-spacing: 0.05em;
}

.white-box-container {
    position: absolute;
    bottom: -2285px;
    left: 75px;
    width: calc(100% - 150px);
    height: 750px;
    z-index: 100;
}

.white-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 44px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    overflow: hidden;
}

.white-box-1 {
    z-index: 100;
}

.white-box-2 {
    z-index: 101;
    transform: translateY(100%);
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.white-box-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 400px;
}

.white-box-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 16px;
    color: #1a1a1a;
}

.white-box-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.white-box-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.white-box-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.white-box-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.white-box-image {
    height: 100%;
    display: flex;
    align-items: center;
}

.white-box-image img {
    height: 120%;
    width: auto;
    object-fit: contain;
}

.video-box {
    position: absolute;
    bottom: -970px;
    left: 50%;
    transform: translateX(calc(-50% + 400px));
    width: 38%;
    max-width: 510px;
    border-radius: 44px;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
}

.lilac-section {
    background-color: #F5F5FF;
    min-height: 200vh;
    position: relative;
    z-index: 4;
    margin-top: 700px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.hero-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 300px;
    margin: 0 auto;
}

.search-icon {
    color: #999;
}

.search-input {
    border: none;
    outline: none;
    font-size: 0.9rem;
    color: #1a1a1a;
    background: transparent;
    width: 100%;
}

.search-input::placeholder {
    color: #999;
}

/* Dark Luxury Card */
.dark-card {
    display: flex;
    background: white;
    border-radius: 44px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.11);
    transition: all 0.25s ease;
}

.dark-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
    cursor: pointer;
    height: 100%;
}

.dark-card-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
}

.dark-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #4f4f4f;
    line-height: 1.2;
}

.dark-card-subtitle {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #555;
}

.dark-card-divider {
    display: none;
}

.dark-card-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dark-card-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #1a1a1a;
}

.dark-card-spec-icon {
    width: 16px;
    height: 16px;
    color: #1a1a1a;
    flex-shrink: 0;
}

.dark-card-btn {
    display: inline-flex;
    align-self: flex-start;
    padding: 12px 28px;
    background: #8295A6;
    border-radius: 28px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-card-btn:hover {
    background: #6b7f8f;
    transform: translateY(-2px);
}

.dark-card-right {
    flex: 0 0 35%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay variant */
.dark-card-overlay {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.dark-card-overlay .dark-card-overlay-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    width: 100%;
    justify-content: flex-end;
    flex: 1;
}

.dark-card-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    border-radius: 44px;
    z-index: 1;
}

.dark-card-overlay .dark-card-title {
    color: white;
}

.dark-card-overlay .dark-card-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.dark-card-overlay .dark-card-spec {
    color: white;
}

.dark-card-overlay .dark-card-spec-icon {
    color: white;
}

@media (max-width: 1024px) {
    .dark-card {
        height: auto;
    }

    .dark-card-left {
        flex: 0 0 auto;
        padding: 36px;
    }

    .dark-card-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .dark-card {
        flex-direction: column;
    }

    .dark-card-left {
        padding: 32px;
    }

    .dark-card-right {
        height: 300px;
    }

    .dark-card-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .dark-card-left {
        padding: 24px;
        gap: 20px;
    }

    .dark-card-title {
        font-size: 30px;
    }

    .dark-card-right {
        height: 240px;
    }
}

/* Categories */
.categories-container {
    background-color: #F5F5FF;
    padding: 4rem 75px;
    width: 100%;
    position: relative;
    z-index: 101;
    box-sizing: border-box;
}

.categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
    column-gap: calc(1rem + 27px);
}

.category-card {
    background: white;
    border-radius: 44px;
    padding: clamp(1.2rem, 1.9vw, 1.9rem) clamp(1.25rem, 2vw, 2rem);
    position: relative;
    overflow: visible;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    transition: all 0.25s ease;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.14);
    cursor: pointer;
}

.category-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 12px;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.category-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-top: -15px;
}

.category-title {
    font-size: 16px;
    font-weight: 600;
    color: #4f4f4f;
    margin-bottom: 0.5rem;
}

.category-tagline {
    display: inline-block;
    font-size: 14px;
    color: #555;
    margin-top: calc(0.4rem - 20px + 5px);
    line-height: 1.4;
}

.category-image {
    flex-shrink: 0;
    width: clamp(87px, 11.2vw, 162px);
    height: clamp(87px, 11.2vw, 162px);
    border-radius: 44px;
    overflow: hidden;
    margin-left: 1rem;
    margin-right: -55px;
    align-self: center;
}

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

.card-more-info {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-top: calc(0.5rem + 15px);
    transition: opacity 0.2s ease;
    font-weight: 700;
}

.card-more-info:hover {
    opacity: 0.5;
}

.unit-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    color: #1a1a1a;
    margin-top: 0.75rem;
}

.category-corner-icon {
    width: 38px;
    height: 38px;
    position: absolute;
    bottom: 10px;
    left: 20px;
}

.immersive-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 100px;
    position: relative;
    z-index: 7;
}

.immersive-text {
    font-family: 'Stretch Pro', sans-serif;
    font-size: 7.2rem;
    text-align: center;
    color: white;
    margin: 0;
}

.spin-badge {
    width: 120px;
    height: 120px;
    will-change: transform;
}

.overlay-image-container {
    display: flex;
    justify-content: center;
    margin-top: -20px;
    margin-bottom: -60px;
    position: relative;
    z-index: 6;
}

.overlay-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.smarthome-text {
    font-family: 'Stretch Pro', sans-serif;
    font-size: 7.2rem;
    text-align: center;
    margin-top: 0;
    color: white;
    position: relative;
    z-index: 5;
}

/* Full-Height Render */
.full-render {
    width: 100%;
    height: 100vh;
    margin-top: 60px;
    overflow: hidden;
    position: relative;
}

.full-render img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-render-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, #F5F5FF 0%, rgba(245, 245, 255, 0.6) 40%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.full-render-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top, #8295A6 0%, rgba(130, 149, 166, 0.6) 40%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* Team Section */
.team-section {
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 75px;
    box-sizing: border-box;
    background: #8295A6;
}

.team-heading {
    font-family: 'Syne', sans-serif;
    font-size: calc(2rem + 1px);
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.team-body {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 48px;
}

.team-logos-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
}

.team-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.logo-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
}

.team-logo {
    max-height: 50%;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.team-logo-large {
    max-height: 100%;
}

.team-logo-xl {
    transform: scale(1.5);
}

.team-logo-sm {
    transform: scale(0.8);
}


.team-logo-placeholder {
    width: 140px;
    height: 60px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.why-invest-section {
    display: flex;
    margin-top: 60px;
    margin-left: 75px;
    margin-right: 75px;
    height: 750px;
    background: #F5F5FF;
    border-radius: 44px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.why-invest-image {
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.why-invest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-invest-content {
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 5rem;
    box-sizing: border-box;
}

.why-invest-heading {
    font-family: 'Syne', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #333333;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.why-invest-body {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 520px;
}

.why-invest-btn {
    align-self: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid black;
    color: black;
    padding: 12px 36px;
    border-radius: 30px;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.why-invest-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.why-invest {
    margin-top: 200px;
    padding: 0 3rem;
    padding-left: calc(3rem + 20px);
    max-width: 600px;
    text-align: left;
}

.why-invest-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.product-carousel {
    position: relative;
    margin-top: 40px;
    padding-left: calc(3rem + 20px);
    overflow: hidden;
    z-index: 10;
}

.carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex-shrink: 0;
    width: 350px;
    height: 400px;
    background: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #1a1a1a;
}

.carousel-arrow:hover {
    background: #1a1a1a;
    color: white;
}


/* Showcase */
.showcase {
    padding: 2rem 3rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-products {
    display: grid;
    grid-template-columns: 1fr 1fr 200px;
    gap: 1.5rem;
    align-items: end;
}

.showcase-item {
    background: linear-gradient(145deg, #f8f8f8 0%, #efefef 100%);
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
}

.showcase-item.large {
    height: 500px;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-badge {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.badge-content {
    text-align: center;
    color: white;
}

.badge-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #7fff00;
}

.badge-label {
    font-size: 0.875rem;
    color: #888;
}

/* Best Sellers */
.best-sellers {
    padding: 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Statement Section */
.statement {
    position: relative;
    padding: 6rem 3rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.statement-background {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.statement-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.statement-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.statement-title .highlight {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: white;
    border-radius: 8px;
    font-size: 1.5rem;
}

.statement-title .brand {
    color: #888;
}

.statement-cta {
    margin-top: 2rem;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.statement-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Feature Sections */
.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.feature-section.reverse {
    direction: rtl;
}

.feature-section.reverse > * {
    direction: ltr;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.feature-images {
    display: flex;
    justify-content: center;
}

.feature-img {
    border-radius: 24px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 3rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.footer-text {
    color: #888;
    font-size: 0.875rem;
}

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

/* --- Medium Desktop (max-width: 1400px) --- */
@media (max-width: 1400px) {
    .floating-logo {
        left: calc(0.5rem - 20px);
    }

    .logo-img {
        height: 500px;
    }

    .new-era-text {
        font-size: 60px;
        bottom: -1100px;
    }

    .white-box-container {
        bottom: -2050px;
    }
}

/* --- Small Desktop / Large Tablet (max-width: 1200px) --- */
@media (max-width: 1200px) {
    .floating-logo {
        display: none;
    }

    .immersive-text {
        font-size: 5rem;
    }

    .smarthome-text {
        font-size: 5rem;
    }

    .new-era-text {
        font-size: 50px;
        left: 3rem;
        transform: none;
        bottom: -920px;
    }

    .content-bottom-image {
        bottom: -650px;
    }

    .video-box {
        transform: translateX(calc(-50% + 200px));
        width: 45%;
    }

    .white-box-container {
        left: 20px;
        width: calc(100% - 40px);
        bottom: -1850px;
        height: 650px;
    }

    .white-box {
        padding: 40px;
        border-radius: 30px;
    }

    .white-box-title {
        font-size: 36px;
    }

    .lilac-section {
        margin-top: 500px;
    }
}

/* --- Tablet (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .hero-background {
        position: absolute;
    }

    .hero-logo {
        position: absolute;
        top: 20%;
        transform: translate(-50%, 0);
    }

    .hero-cta {
        position: absolute;
        top: calc(20% + 60px);
        transform: translate(-50%, 0);
    }

    .hero-tagline {
        position: absolute;
        top: calc(20% + 110px);
        transform: translate(-50%, 0);
    }

    .hero-house {
        bottom: -50px;
    }

    .hero-gradient {
        bottom: 0;
    }

    .categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-box-left,
    .hero-box-right {
        display: none;
    }

    .carousel-card {
        width: 280px;
        height: 320px;
    }

    .showcase-products {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-badge {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-box {
        transform: translateX(-50%);
        left: 50%;
        width: 60%;
        bottom: -800px;
    }

    .white-box-container {
        bottom: -1650px;
        height: 550px;
    }

    .white-box {
        padding: 30px 40px;
    }

    .white-box-image img {
        height: 100%;
    }

    .lilac-section {
        margin-top: 400px;
    }
}

/* --- Location Map Section --- */
.location-section {
    margin-top: 60px;
    margin-left: 75px;
    margin-right: 75px;
    text-align: center;
}

.location-heading {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.location-subheading {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #888;
    margin-bottom: 30px;
}

.location-map-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

#location-map {
    width: 100%;
    height: 100%;
}
#location-map .mapboxgl-ctrl-logo,
#location-map .mapboxgl-ctrl-attrib,
#location-map .mapboxgl-ctrl-group { display: none !important; }

/* Map marker styles */
.map-pin-marker {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: default;
}

.map-pin-dot {
    width: 6px;
    height: 6px;
    background: #B69969;
    border-radius: 50%;
    flex-shrink: 0;
}

.map-pin-dot.pulse {
    position: relative;
}
.map-pin-dot.pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid #B69969;
    animation: map-pulse-ring 2s ease-out infinite;
}
@keyframes map-pulse-ring {
    0%   { transform: scale(0.8); opacity: 1; }
    70%  { transform: scale(2.5); opacity: 0; }
    100% { transform: scale(2.5); opacity: 0; }
}

.map-pin-line {
    width: 30px;
    height: 0;
    border-top: 1px solid #B69969;
    flex-shrink: 0;
}

.map-pin-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #B69969;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    text-shadow:
        0 0 5px rgba(255,255,255,1),
        0 0 5px rgba(255,255,255,1),
        0 0 10px rgba(255,255,255,0.8);
}

.map-sea-label {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 20px;
    color: #B69969;
    opacity: 0.5;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

/* --- Mobile Landscape / Small Tablet (max-width: 768px) --- */
@media (max-width: 768px) {
    .team-section {
        height: auto;
        padding: 50px 20px;
    }

    .team-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .logo-cell {
        height: 60px;
    }

    .location-section {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 40px;
    }
    .location-heading { font-size: 1.8rem; }
    .location-map-wrapper { border-radius: 16px; aspect-ratio: 4 / 3; }
    .map-pin-label { font-size: 11px; }
    .map-pin-line { width: 20px; }
    .map-pin-dot { width: 5px; height: 5px; }
    .map-sea-label { font-size: 14px; }

    .why-invest-section {
        flex-direction: column;
        height: auto;
        margin-top: 80px;
        margin-left: 20px;
        margin-right: 20px;
        border-radius: 20px;
    }

    .why-invest-image {
        flex: none;
        width: 100%;
        height: 300px;
    }

    .why-invest-content {
        flex: none;
        width: 100%;
        padding: 3rem 2rem;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-right: 10px;
    }

    .hero-logo {
        width: 95%;
        top: 18%;
        transform: translate(-50%, 0);
    }

    .hero-cta {
        top: calc(18% + 55px);
        transform: translate(-50%, 0);
    }

    .hero-tagline {
        top: calc(18% + 105px);
        transform: translate(-50%, 0);
        font-size: 0.9rem;
    }

    .hero-house {
        bottom: -30px;
    }

    .hero-gradient {
        bottom: 0;
    }

    .hero-scroll-icon {
        width: 50px;
        height: 50px;
        bottom: calc(2rem + 30px);
    }

    .content-section {
        margin-top: calc(-50vh + 400px);
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .categories-container {
        padding: 2rem 1.5rem;
    }

    .categories {
        grid-template-columns: 1fr;
    }

    .immersive-text {
        font-size: 3rem;
    }

    .smarthome-text {
        font-size: 3rem;
    }

    .spin-badge {
        width: 80px;
        height: 80px;
    }

    .immersive-row {
        gap: 20px;
        margin-top: 60px;
    }

    .overlay-image {
        max-width: 90%;
    }

    .why-invest {
        margin-top: 100px;
        padding-left: 1.5rem;
    }

    .why-invest-title {
        font-size: 2rem;
    }

    .product-carousel {
        padding-left: 1.5rem;
    }

    .carousel-card {
        width: 240px;
        height: 270px;
    }

    .carousel-arrow {
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .new-era-text {
        font-size: 32px;
        left: 1.5rem;
        bottom: -720px;
    }

    .content-bottom-image {
        bottom: -480px;
    }

    .video-box {
        width: 80%;
        max-width: none;
        bottom: -660px;
    }

    .white-box-container {
        left: 1.5rem;
        width: calc(100% - 3rem);
        bottom: -1400px;
        height: 480px;
    }

    .white-box {
        flex-direction: column;
        padding: 24px;
        border-radius: 24px;
        gap: 20px;
    }

    .white-box-content {
        max-width: 100%;
        gap: 12px;
    }

    .white-box-title {
        font-size: 28px;
    }

    .white-box-desc {
        font-size: 15px;
    }

    .white-box-btn {
        padding: 12px 32px;
        margin-top: 10px;
    }

    .white-box-image {
        height: 180px;
        width: 100%;
        justify-content: center;
    }

    .white-box-image img {
        height: 100%;
        width: auto;
    }

    .lilac-section {
        margin-top: 300px;
    }

    .showcase-products {
        grid-template-columns: 1fr;
    }

    .showcase-item {
        height: 300px;
    }

    .feature-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .feature-section.reverse {
        direction: ltr;
    }

    .best-sellers {
        padding: 2rem 1.5rem;
    }

    .statement {
        padding: 4rem 1.5rem;
    }

    .footer {
        padding: 3rem 1.5rem;
    }
}

/* --- Mobile Portrait (max-width: 480px) --- */
@media (max-width: 480px) {
    .team-section {
        padding: 40px 16px;
    }

    .team-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .logo-cell {
        height: 50px;
    }

    .team-heading {
        font-size: 1.5rem;
    }

    .team-body {
        font-size: 14px;
    }

    .navbar {
        padding: 0.75rem 1rem;
    }

    .hero-logo {
        width: 100%;
        top: 15%;
        transform: translate(-50%, 0);
        font-size: clamp(1.2rem, 4.5vw, 2rem);
    }

    .hero-cta {
        top: calc(15% + 45px);
        transform: translate(-50%, 0);
        padding: 10px 28px;
        font-size: 0.85rem;
    }

    .hero-tagline {
        top: calc(15% + 90px);
        transform: translate(-50%, 0);
        font-size: 0.8rem;
        white-space: normal;
        width: 80%;
    }

    .hero-house {
        bottom: 0;
    }

    .hero-gradient {
        bottom: 0;
    }

    .content-section {
        margin-top: calc(-50vh + 350px);
        padding-top: 40px;
    }

    .categories-container {
        padding: 1.5rem 1rem;
    }

    .categories {
        gap: 1rem;
    }

    .category-card {
        border-radius: 24px;
        padding: 1.5rem;
        min-height: 250px;
    }

    .immersive-text {
        font-size: 2rem;
    }

    .smarthome-text {
        font-size: 2rem;
    }

    .spin-badge {
        width: 55px;
        height: 55px;
    }

    .immersive-row {
        gap: 12px;
        margin-top: 40px;
    }

    .overlay-image-container {
        margin-top: -10px;
        margin-bottom: -30px;
    }

    .why-invest {
        margin-top: 70px;
        padding: 0 1rem;
    }

    .why-invest-title {
        font-size: 1.75rem;
    }

    .product-carousel {
        padding-left: 1rem;
    }

    .carousel-card {
        width: 200px;
        height: 230px;
    }

    .new-era-text {
        font-size: 24px;
        left: 1rem;
        bottom: -600px;
    }

    .content-bottom-image {
        bottom: -400px;
    }

    .video-box {
        width: calc(100% - 2rem);
        bottom: -570px;
        border-radius: 24px;
    }

    .white-box-container {
        left: 1rem;
        width: calc(100% - 2rem);
        bottom: -1200px;
        height: 420px;
    }

    .white-box {
        padding: 20px;
        border-radius: 20px;
    }

    .white-box-title {
        font-size: 24px;
    }

    .white-box-desc {
        font-size: 14px;
    }

    .white-box-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .white-box-icon svg {
        width: 32px;
        height: 32px;
    }

    .white-box-image {
        height: 150px;
    }

    .lilac-section {
        margin-top: 200px;
    }

    .footer {
        padding: 2rem 1rem;
    }
}
