* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Instrument Sans', sans-serif;
}

/* SLIDER ANIMATIONS */
@keyframes slideRight {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideLeft {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* SECTION PARAGRAPH STYLES */
section p {
    color: #4D4D4D;
    font-family: "Instrument Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
    letter-spacing: 0.18px;
}

/* NAVBAR */
.navbar {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 50;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
   
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    width: 95%;
    margin: 0 auto;
    padding: 1rem 1rem;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.navbar-logo img {
    height: 32px;
    width: auto;
}

.navbar-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.navbar-menu a {
    color: #4D4D4D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: color 0.3s;
    text-decoration: none;
}

.navbar-menu a:hover {
    color: #2478B1;
    font-size: 20px;
    font-weight:600;
}

.navbar-menu a:active,
.navbar-menu a.active {
    color: #2478B1;
    font-size: 20px;
    font-weight:600;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-contact {
    display: flex;
    background: #1E1E1E;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    justify-content: center;
    transition: background 0.3s;
    text-decoration: none;
}

.btn-contact:hover {
    background: #1f2937;
}

.hamburger {
    display: block;
    background: none;
    border: none;
    color: #374151;
    font-size: 20px;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 40;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
    max-height: 500px;
}

.mobile-menu-content {
    padding: 1rem;
    background: white;
}

.mobile-menu-content a,
.mobile-menu-content button {
    display: block;
    padding: 0.75rem;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    margin-bottom: 0.25rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-menu-content a:hover {
    color: #2563eb;
}

.mobile-menu-content a.active {
    color: #2478B1;
    background: rgba(36, 120, 177, 0.1);
    font-weight: 600;
}

.mobile-menu-content .btn-contact-mobile {
    background: #111827;
    color: white;
    margin-top: 0.5rem;
    border-radius: 8px;
}

.mobile-menu-content .btn-contact-mobile:hover {
    background: #1f2937;
}

/* HERO SECTION */

.hero-container {
    width: 95%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.hero-flex{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.75rem;
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.hero-content-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #ffffff;
    box-shadow: 3px 3px 25.8px 0 rgba(30, 30, 30, 0.13);
    color: #000;
    padding: 8px 14px;
    border-radius: 16px;
    width: fit-content;
}

.hero-badge p {
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;
}

.hero-badge i {
    color: #3193D5;
    font-size: 6px;
}

.hero-title {
    font-size: 32px;
    font-weight: 500;
    color: #1E1E1E;
    line-height: 1.3;
    font-style: normal;
}

.hero-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0;
}

.hero-description {
    color: #4D4D4D;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.14px;
    flex: 1;
}

.btn-hero {
    background: linear-gradient(95deg, #0063A7 0%, #3193D5 48.56%, #62C0FF 87.5%, #FFF 100%);
    box-shadow: 4px 4px 10.7px 0 rgba(77, 77, 77, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 24px;
    border: 2px solid #FFF;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    width: fit-content;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}

.btn-hero a {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

.btn-hero:hover {
    transform: scale(1.05);
}

.img-hero-container {
    display: flex;
    justify-content: center;
    width: 95%;
    margin: 1.5rem auto 50px auto;
    padding: 0 1rem;
}

.img-hero-container img{
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}


/* MEDIA QUERIES */
@media (min-width: 640px) {
    section p {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0.16px;
    }

    .livespace-title {
        font-size: 40px;
        line-height: 1.3;
        max-width: 520px;
    }

    .navbar-content {
        height: 70px;
    }

    .navbar-logo img {
        height: 40px;
    }

    .navbar-menu {
        display: flex;
        gap: 1.5rem;
    }

    .navbar-menu a {
        font-size: 14px;
    }

    .btn-contact {
        display: block;
        padding: 12px 24px;
        font-size: 12px;
    }

    .hamburger {
        display: none;
    }

    .mobile-menu {
        top: 70px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* Tablet/iPad specific styles */
    section p {
        font-size: 17px;
        line-height: 23px;
        letter-spacing: 0.17px;
    }

    .navbar-container {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .navbar-content {
        height: 70px;
    }

    .navbar-logo img {
        height: 40px;
    }

    .navbar-menu {
        display: flex;
        gap: 1rem;
        flex: 1;
        justify-content: center;
    }

    .navbar-menu a {
        font-size: 13px;
        white-space: nowrap;
    }

    .btn-contact {
        display: block;
        padding: 10px 20px;
        font-size: 11px;
        flex-shrink: 0;
    }

    .hamburger {
        display: none;
    }

    .mobile-menu {
        top: 70px;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
    }

    .img-hero-container {
        margin: 20px auto 75px auto;
    }
}

@media (min-width: 1024px) {
    section p {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0.18px;
    }

    .navbar-content {
        height: 80px;
    }

    .navbar-logo img {
        height: 48px;
    }

    .navbar-menu {
        display: flex;
        gap: 2rem;
    }

    .navbar-menu a {
        font-size: 20px;
    }

    .btn-contact {
        display: block;
        padding: 18px 32px;
        font-size: 13px;
    }

    .hamburger {
        display: none;
    }

    .hero-container {
        padding: 0 1.5rem;
        margin-top: 30px;
    }

    .hero-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .hero-content-left {
        gap: 0.75rem;
        flex: 0 0 45%;
    }

    .hero-content-right {
        display: flex;
        gap: 1rem;
        flex: 0 0 55%;
    }

    .hero-badge p {
        font-size: 14px;
    }

    .hero-badge i {
        font-size: 7px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 0;
    }

    .hero-description {
        font-size: 14px;
    }

    .btn-hero {
        padding: 12px 28px;
        border-radius: 22px;
    }

    .btn-hero a {
        font-size: 13px;
    }

    .img-hero-container {
        margin: 20px auto 75px auto;
        padding: 0 1.5rem;
        max-height: 500px;
    }
}

@media (min-width: 1024px) {
    .navbar-container {
        padding: 1rem 2rem;
    }

    .navbar-content {
        height: 80px;
    }

    .navbar-menu {
        gap: 2.5rem;
    }

    .navbar-menu a {
        font-size: 16px;
    }

    .btn-contact {
        padding: 16px 40px;
        font-size: 14px;
    }

    .mobile-menu {
        top: 80px;
    }

    .hero-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero-content-left {
        flex: 0 0 60%;
    }

    .hero-content-right {
        flex: 0 0 40%;
    }

    .hero-title {
        font-size: 54px;
        line-height: 1.3;
        max-width: 100%;
    }

    .hero-description {
        font-size: 18px;
        max-width: 100%;
    }

    .btn-hero {
        padding: 14px 32px;
        border-radius: 25px;
    }

    .img-hero-container {
        margin: 30px auto 100px auto;
        padding: 0 1.5rem;
        max-height: 500px;
    }

    .livespace-title {
        font-size: 44px;
        line-height: 1.3;
        max-width: 750px;
    }
}

@media (min-width: 1280px) {
    section p {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0.18px;
    }

    .hero-title {
        font-size: 64px;
        line-height: 1.25;
    }
}

/* PROMO SECTION */
.promo {
    padding: 50px 0;
    background: #ffffff;
}

.promo-container {
    width: 95%;
    margin: 0 auto;
    padding: 0 1rem;
}

.promo-flex {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.promo-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.promo-badges {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    margin-top: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.promo-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.promo-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
    background: #ffffff;
    border: 1.5px solid #C0C0C0;
    padding: 16px 18px;
    border-radius: 20px;
    flex: 1;
    text-align: left;
}

.promo-badge-primary {
    background: linear-gradient(104deg, #003B92 0%, #62C0FF 84.13%, #FFF 103.86%);
    border: 1px solid #ffffff;
    color: white;
}

.promo-badge-primary p {
    color: white;
}

.promo-badge p{
    margin: 0;
    font-size: 12px;
    font-weight: 500;
}

.promo-badge i {
    font-size: 12px;
}

.promo-badge-icon {
    width: 16px;
    height: 16px;
}

.promo-badge-primary .promo-badge-icon {
    filter: brightness(0) invert(1);
}

/* label */

.promo-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #ffffff;
    box-shadow: 3px 3px 25.8px 0 rgba(30, 30, 30, 0.13);
    color: #000;
    padding: 8px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;
    width: fit-content;
}

.promo-label p {
    font-size: 12px;
}

.promo-label i {
    color: #3193D5;
    font-size: 6px;
}

.promo-content h1.promo-title {
    font-size: 28px;
    font-weight: 500;
    color: #1E1E1E;
    line-height: 1.3;
    font-style: normal;
    margin: 0;
}

.promo-features {
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.1rem 0.25rem;
    align-items: flex-start;
}

.promo-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 11px;
    font-weight: 500;
    color: #1f2937;
    background: #ffffff;
    border: 1px solid #C0C0C0;
    padding: 8px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    width: 100%;
    margin: 0.3rem 0;
    justify-content: flex-start;
}

.promo-feature-item i,
.promo-feature-icon {
    color: #3193D5;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.btn-promo {
    background: linear-gradient(95deg, #0063A7 0%, #3193D5 48.56%, #62C0FF 87.5%, #FFF 100%);
    box-shadow: 4px 4px 10.7px 0 rgba(77, 77, 77, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 24px;
    border: 2px solid #FFF;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    width: fit-content;
    gap: 0.5rem;
    margin-top: 0.8rem;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.btn-promo-livespace{
    background: linear-gradient(95deg, #0063A7 0%, #3193D5 48.56%, #62C0FF 87.5%, #FFF 100%);
    box-shadow: 4px 4px 10.7px 0 rgba(77, 77, 77, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 24px;
    border: 2px solid #FFF;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    width: fit-content;
    gap: 0.5rem;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.btn-promo i {
    color: white;
    font-size: 18px;
}

.btn-promo a {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.btn-promo:hover {
    transform: scale(1.05);
}

/* PROMO RESPONSIVE */
@media (min-width: 640px) {
    .promo {
        padding: 50px 0;
    }

    .promo-container {
        padding: 0 1.5rem;
    }

    .promo-flex {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .promo-image-wrapper {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }

    .promo-content {
        flex: 1;
        gap: 0.75rem;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .promo {
        padding: 75px 0;
    }

    .promo-container {
        padding: 0 1.5rem;
    }

    .promo-flex {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .promo-image-wrapper {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }

    .promo-content {
        flex: 1;
        gap: 0.75rem;
        width: 100%;
    }

    .promo-badges {
        gap: 1rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
        width: 100%;
    }

    .promo-label {
        padding: 10px 16px;
        font-size: 14px;
    }

    .promo-label p {
        font-size: 16px;
    }

    .promo-label i {
        font-size: 8px;
    }

    .promo-title {
        font-size: 38px !important;
        line-height: 1.2 !important;
    }

    .promo-badge {
        flex: 0 0 calc(33.333% - 0.67rem);
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 18px;
        gap: 0.75rem;
    }

    .promo-badge p {
        font-size: 14px;
        margin-top: 0;
    }

    .promo-badge-icon {
        width: 18px;
        height: 18px;
    }

    .promo-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.15rem 0.3rem;
        margin-top: 0.6rem;
    }

    .promo-feature-item {
        font-size: 12px;
        padding: 9px 14px;
        width: 100%;
        flex: none;
        margin: 0.3rem 0;
        display: flex;
    }

    .promo-feature-item i,
    .promo-feature-icon {
        width: 15px;
        height: 15px;
    }

    .btn-promo,
    .btn-promo-livespace {
        padding: 12px 28px;
        font-size: 15px;
        margin-top: 1rem;
        border-radius: 22px;
    }

    .btn-promo i {
        font-size: 18px;
    }

    .btn-promo a {
        font-size: 15px;
    }
}

@media (min-width: 1024px) and (max-width: 1194px) {
    .promo {
        padding: 100px 0;
    }

    .promo-container {
        padding: 0 2rem;
    }

    .promo-flex {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .promo-image-wrapper {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }

    .promo-content {
        flex: 1;
        width: 100%;
    }

    .promo-badges {
        gap: 1rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
        width: 100%;
    }

    .promo-badge {
        flex: 0 0 calc(33.333% - 0.67rem);
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 18px;
        gap: 0.75rem;
    }

    .promo-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.15rem 0.3rem;
        margin-top: 0.6rem;
    }

    .promo-feature-item {
        font-size: 12px;
        padding: 9px 14px;
        width: 100%;
        flex: none;
        margin: 0.3rem 0;
        display: flex;
    }

    .btn-promo,
    .btn-promo-livespace {
        padding: 12px 28px;
        font-size: 15px;
        margin-top: 1rem;
        border-radius: 22px;
    }
}

@media (min-width: 1195px) {
    .promo {
        padding: 100px 0;
    }

    .promo-container {
        padding: 0 2rem;
    }

    .promo-flex {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
    }

    .promo-image-wrapper {
        flex: 1;
    }

    .promo-content {
        flex: 1;
    }

    .promo-title {
        font-size: 54px !important;
        line-height: 1.2 !important;
    }

    .promo-badges {
        gap: 1.25rem;
        flex-wrap: nowrap;
    }

    .promo-badge {
        padding: 18px 24px;
        flex-basis: calc(33.333% - 0.83rem);
        flex-grow: 0;
        flex-shrink: 0;
    }

    .promo-badge-primary {
        flex-basis: calc(33.333% - 0.83rem);
    }

    .promo-badge p {
        font-size: 22px;
        margin-top: 20px;
    }

    .promo-features {
        display: block;
        gap: 1rem 0.75rem;
    }

    .promo-feature-item {
        font-size: 16px;
        padding: 10px 20px;
        gap: 0.75rem;
        margin: 0.75rem 0.5rem;
        width: auto;
        display: inline-flex;
    }

    .promo-feature-item i,
    .promo-feature-icon {
        width: 18px;
        height: 18px;
    }

    .btn-promo,
    .btn-promo-livespace {
        padding: 14px 32px;
        border-radius: 25px;
    }
}

/* VALUES / KEY FEATURES */
.values-section {
    padding: 50px 0;
    background: #ffffff;
}

.values-container {
    width: 95%;
    margin: 0 auto;
    padding: 0 1rem;
}

.values-header{
    text-align: center;
    margin-bottom: 40px;
    
}

.values-header h1{
    font-size: 28px;
    font-weight: 500;
    color: #878787;
    line-height: normal;
    font-style: normal;
    margin-top: 1rem;
}

.values-header span{
    color: #1E1E1E;
}


.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.values-left {
    padding: 28px;
    border-radius: 32px;
    border: 1px solid rgba(184, 184, 184, 0.4);
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.02);
}



/* Left side: 2x2 grid with equal columns */
.values-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 1rem;
}

.values-card {

    overflow: hidden;
    background: transparent;
}

.values-card .values-card-inner {
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.values-card.big {
    grid-column: span 1;
    grid-row: span 1;
}

.values-card.big .values-card-inner.gradient {
    background: linear-gradient(104deg, #003B92 0%, #2B84D9 50%, #62C0FF 100%);
    color: #fff;
    border-radius: 20px;
    min-height: 100%;
        
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.values-card.big .values-card-inner h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.values-card.big .values-card-inner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    line-height: 1.5;
    max-width: 100%;
}

.values-card.small .values-card-inner {
    background: #F5F5F5;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: start;
}

.values-card.small i {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: #1E1E1E;
    font-size: 24px;
    flex: 0 0 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.values-card.small img {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    padding: 8px;
    flex: 0 0 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
}

.values-card.small .card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    width: 100%;
    margin-top: 28px;
}

.values-card.small .card-text h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #1E1E1E;
}

.values-card.small .card-text p {
    margin: 0;
    color: #9CA3AF;
    font-size: 16px;
    line-height: 1.4;
}

.values-card.small h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
}

.values-card.small p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

.values-card.stat .values-card-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.values-card.stat .stat-number {
    font-size: 28px;
    font-weight: 700;
}


.values-right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    grid-auto-rows: 210px;
}

.right-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: none;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    text-align: start;
    border: 1px solid #E5E7EB;
    height: 100%;
}

.right-card.image-card {
    padding: 0;
    overflow: hidden;
    border: none;
}

.right-card.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LIVESPACE / PROPERTIES */
.livespace {
    padding: 50px 0;
    background: #FFFFFF;
}

.livespace-container {
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}



.livespace-header {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
    align-items: start;
    margin-bottom: 1.25rem;
}

.livespace-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.livespace-title {
    font-size: 54px;
    font-weight: 500;
    color: #1E1E1E;
    margin: 0;
    line-height: 1.3;
    max-width: 600px;
}

.livespace-title span {
    color: #2478B1;
}

.livespace-right {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    align-items: flex-start;
}

.livespace-cta-desc {
    color: #4D4D4D;
    font-family: "Instrument Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.18px;
    margin-bottom: 8px;
}

.livespace-nav {
    position: relative;
    top: 0;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.livespace-track-wrapper {
    overflow: hidden;
    width: 100%;
    background: #FFFFFF;
    padding: 0;
    border-radius: 16px;
    position: relative;
    box-sizing: border-box;
}

.livespace-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(.22,.9,.31,1);
    overflow: hidden;
    box-sizing: border-box;
}

.livespace-slide {
    width: 100%;
    padding: 20px;
    flex-shrink: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.property-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
    width: 100%;
}

.property-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.property-slider {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E1E1E;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 8px;
}

.slider-next {
    right: 8px;
}

.property-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.property-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.95);
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #111827;
    font-weight: 600;
}

.property-body {
    padding: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.property-body h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #111827;
}

.property-location {
    color: #9CA3AF;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.location-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.property-meta {
    list-style: none;
    display: flex;
    justify-content: space-between;
    color: #6B7280;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.property-meta li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.property-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.property-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #F3F4F6;
}

.price {
    font-weight: 400;
    font-size: 24px;
    color: #111827;
}

.price-amount {
    font-weight: 700;
    color: #111827;
    font-size: 16px;
}

.price-period {
    font-weight: 400;
    color: #9CA3AF;
    font-size: 12px;
}

.btn-whatsapp {
    background: white;
    border: 1px solid #E5E7EB;
    padding: 12px 20px;
    border-radius: 9999px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-whatsapp i {
    font-size: 20px;
}

.btn-whatsapp:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
}

.livespace-btn {
    background: white;
    border: 2px solid #1E1E1E;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #1E1E1E;
    transition: all 0.3s ease;
    box-shadow: none;
}

.livespace-btn:hover:not(:disabled) {
    background: #1E1E1E;
    color: white;
    transform: scale(1.05);
}

.livespace-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #D1D5DB;
    color: #9CA3AF;
}

.btn-hero.small {
    position: relative;
    padding: 10px 28px;
    font-size: 14px;
    border-radius: 9999px;
    background: linear-gradient(95deg, #0063A7 0%, #3193D5 48.56%, #62C0FF 87.5%);
    color: #fff;
    box-shadow: 6px 12px 30px rgba(3, 10, 39, 0.12);
    border: none;
}

.btn-hero.small::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 6px;
    width: 36%;
    height: 60%;
    background: rgba(255,255,255,0.35);
    border-radius: 9999px;
    filter: blur(6px);
    pointer-events: none;
}

.livespace-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #E5E7EB;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.dot.active { background: #111827; }



/* Mobile Responsive Styles */
@media (max-width: 639px) {
    .livespace {
        padding: 40px 0;
    }

    .livespace-container {
        padding: 0 1rem;
    }

    .livespace-header {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .livespace-left {
        gap: 8px;
    }

    .livespace-title {
        font-size: 32px;
        line-height: 1.3;
        max-width: 480px;
    }

    .livespace-right {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .livespace-cta-desc {
        color: #4D4D4D;
        font-family: "Instrument Sans";
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.18px;
        margin-bottom: 4px;
    }

    .btn-promo-livespace {
        padding: 12px 24px;
        font-size: 13px;
    }

    .livespace-nav {
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: flex-end;
        margin-bottom: 1.5rem;
        border-radius: 12px;
        width: fit-content;
        margin-left: auto;
        margin-right: 0;
    }

    .livespace-track-wrapper {
        padding: 0;
        background: transparent;
        overflow: hidden;
        margin-bottom: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .livespace-track {
        display: flex;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        box-sizing: border-box;
    }

    .livespace-slide {
        width: 100%;
        flex-shrink: 0;
        padding: 0;
        max-height: none;
        overflow: hidden;
        box-sizing: border-box;
    }

    .property-grid {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        width: 100%;
        box-sizing: border-box;
    }

    .property-card {
        padding: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        border: 1px solid #E5E7EB;
        background: white;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
    }

    .property-image {
        border-radius: 12px;
        margin-bottom: 14px;
        overflow: hidden;
    }

    .property-image img {
        height: 550px;
        border-radius: 12px;
        object-fit: cover;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .property-badge {
        top: 12px;
        right: 12px;
        padding: 6px 14px;
        font-size: 11px;
        font-weight: 600;
        border-radius: 20px;
    }

    .property-body {
        padding: 0;
        gap: 12px;
    }

    .property-body h4 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 2px;
        color: #111827;
    }

    .property-location {
        font-size: 16px;
        color: #6B7280;
        margin-bottom: 8px;
    }

    .location-icon {
        width: 14px;
        height: 14px;
    }

    .property-meta {
        font-size: 16px;
        gap: 12px;
        justify-content: flex-start;
        margin-bottom: 10px;
    }

    .property-meta li {
        gap: 5px;
        font-size: 16px;
    }

    .property-icon {
        width: 14px;
        height: 14px;
    }

    .property-footer {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid #E5E7EB;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .price {
        font-size: 16px;
        display: flex;
        align-items: baseline;
        gap: 2px;
    }

    .price-amount {
        font-weight: 700;
        font-size: 20px;
        color: #111827;
    }

    .price-period {
        font-size: 14px;
        color: #9CA3AF;
    }

    .btn-whatsapp {
        padding: 8px 16px;
        font-size: 13px;
        background: white;
        border: 1px solid #E5E7EB;
        border-radius: 20px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

    .btn-whatsapp i {
        font-size: 16px;
    }

    .livespace-dots {
        display: flex;
        gap: 8px;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .dot {
        width: 8px;
        height: 8px;
        background: #D1D5DB;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .dot.active {
        background: #111827;
        width: 24px;
        border-radius: 4px;
    }
}

/* LIVESPACE: 640px - 767px */
@media (min-width: 640px) and (max-width: 767px) {
    .livespace-header {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .livespace-title {
        font-size: 32px;
    }
}

@media (min-width: 768px) {
    .livespace {
        padding: 75px 0;
    }

    .livespace-container {
        padding: 0 1.5rem;
    }

    .property-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .livespace-header { 
        grid-template-columns: 1fr 320px;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .livespace-title {
        font-size: 38px;
        line-height: 1.3;
        max-width: 550px;
    }

    .livespace-cta-desc {
        color: #4D4D4D;
        font-family: "Instrument Sans";
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.18px;
    }

    .livespace-nav {
        gap: 10px;
        margin-bottom: 1.5rem;
    }
    
    .livespace-dots {
        display: flex;
        gap: 8px;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .property-card {
        padding: 16px;
    }

    .property-image {
        margin-bottom: 15px;
    }

    .property-body {
        gap: 11px;
    }

    .property-body h4 {
        font-size: 20px;
        margin-bottom: 2px;
    }

    .property-location {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .property-meta {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .property-meta li {
        font-size: 15px;
    }

    .property-footer {
        margin-top: 12px;
        padding-top: 12px;
        gap: 10px;
    }

    .price {
        font-size: 16px;
    }

    .price-amount {
        font-size: 20px;
    }

    .price-period {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .livespace {
        padding: 100px 0;
    }

    .livespace-container {
        padding: 0 2rem;
    }

    .livespace-track-wrapper {
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .livespace-track {
        overflow: hidden;
        box-sizing: border-box;
    }

    .livespace-slide {
        overflow: hidden;
        box-sizing: border-box;
    }

    .property-grid { 
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
        width: 100%;
        box-sizing: border-box;
    }

    .livespace-header { 
        grid-template-columns: 1fr 420px;
        gap: 2rem;
    }

    .livespace-title { 
        font-size: 48px; 
        line-height: 1.3;
        max-width: 800px;
    }

    .property-image img { 
        height: 550px; 
    }

    .property-card {
        padding: 20px;
    }

    .property-image {
        margin-bottom: 16px;
    }

    .property-body {
        gap: 13px;
    }

    .property-body h4 {
        font-size: 22px;
        margin-bottom: 3px;
    }

    .property-location {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .property-meta {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .property-meta li {
        font-size: 18px;
    }

    .property-footer {
        margin-top: 15px;
        padding-top: 15px;
        gap: 10px;
    }

    .price {
        font-size: 18px;
    }

    .price-amount {
        font-size: 22px;
    }

    .price-period {
        font-size: 17px;
    }
}

@media (min-width: 1280px) {
    .property-body h4 {
        font-size: 24px;
    }

    .property-location {
        font-size: 20px;
    }

    .property-meta {
        font-size: 18px;
    }

    .property-meta li {
        font-size: 18px;
    }

    .price-amount {
        font-size: 24px;
    }

    .price-period {
        font-size: 20px;
    }
}


.right-card .stat-number {
    font-size: 48px;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 8px;
}

.right-card .stat-desc,
.right-card .stat-label {
    font-size: 16px;
    color: #6b7280;
}

/* RESPONSIVE: MOBILE (max-width: 639px) */
@media (max-width: 639px) {
    .values-section {
        padding: 40px 0;
    }

    .values-header {
        margin-bottom: 30px;
    }

    .values-header h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: auto;
    }

    .values-left {
        padding: 16px;
        border-radius: 20px;
    }

    .values-cards-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
        gap: 0.75rem;
    }

    .values-card {
        min-height: 160px;
    }

    .values-card.big {
        grid-column: span 1;
        grid-row: span 1;
    }

    .values-card.big .values-card-inner.gradient {
        padding: 1rem;
        min-height: 10rem;
    }

    .values-card.big .values-card-inner h3 {
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }

    .values-card.big .values-card-inner p {
        font-size: 0.8125rem;
        line-height: 1.4;
    }

    .values-card.small .values-card-inner {
        padding: 12px;
        gap: 8px;
        min-height: 160px;
    }

    .values-card.small img {
        width: 32px;
        height: 32px;
        padding: 6px;
        flex: 0 0 32px;
        margin-bottom: 20px;
    }

    .values-card.small .card-text {
        margin-top: 0;
        gap: 2px;
    }

    .values-card.small .card-text h4 {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
    }

    .values-card.small .card-text p {
        font-size: 11px;
        line-height: 1.3;
        margin: 0;
    }

    .values-right {
        padding: 0;
    }

    .values-right-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
        gap: 0.75rem;
    }

    .right-card {
        padding: 16px;
        border-radius: 16px;
    }

    .right-card.stat-small .stat-small-inner,
    .right-card.stat-large .stat-large-inner {
        flex-direction: column;
    }

    .right-card .stat-number {
        font-size: 24px;
    }

    .right-card .stat-desc,
    .right-card .stat-label {
        font-size: 12px;
    }
}

/* RESPONSIVE: TABLET (640px - 1023px) */
@media (min-width: 640px) and (max-width: 1023px) {
    .values-section {
        padding: 60px 0;
    }

    .values-header {
        margin-bottom: 40px;
    }

    .values-header h1 {
        font-size: 42px;
        line-height: 1.3;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: stretch;
    }

    .values-left {
        padding: 20px;
        border-radius: 28px;
    }

    .values-cards-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
        gap: 1rem;
    }

    .values-card.big .values-card-inner {
        padding: 1.5rem;
        
    }

    .values-card.big .values-card-inner h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .values-card.big .values-card-inner p {
        font-size: 0.875rem;
    }

    .values-card.small .values-card-inner {
        padding: 16px;
        gap: 8px;
    }

    .values-card.small .card-text h4 {
        font-size: 18px;
    }

    .values-card.small .card-text p {
        font-size: 14px;
    }

    .values-card.small img {
        margin-bottom: 16px;
    }

    .values-card.small .card-text {
        margin-top: 0;
    }

    .values-right {
        padding: 0;
    }

    .values-right-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 220px;
        gap: 1rem;
    }

    .right-card {
        padding: 20px;
    }

    .right-card .stat-number {
        font-size: 32px;
    }

    .right-card .stat-desc,
    .right-card .stat-label {
        font-size: 14px;
    }

    
}

/* RESPONSIVE: DESKTOP (min-width: 1024px) */
@media (min-width: 1024px) {
    .values-section {
        padding: 50px 0;
    }

    .values-header {
        margin-bottom: 40px;
    }

    .values-header h1 {
        font-size: 54px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: stretch;
    }

    .values-left {
        padding: 28px;
        border-radius: 32px;
    }

    .values-cards-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
        gap: 1rem;
    }
    
    .values-card.big .values-card-inner {
        padding: 2.5rem;
    }

    .values-card.big .values-card-inner.gradient {
        min-height: auto;
    }

    .values-card.big .values-card-inner h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .values-card.big .values-card-inner p {
        font-size: 1rem;
    }

    .values-card.small .values-card-inner {
        padding: 1.3rem;
        gap: 0.15rem;
    }

    .values-card.small .card-text h4 {
        font-size: 1.5rem;
    }

    .values-card.small .card-text p {
        font-size: 1rem;
    }

    .values-card.small img {
        margin-bottom: 1.75rem;
    }

    .values-card.small .card-text {
        margin-top: 0;
    }

    .values-right {
        padding: 0;
    }

    .values-right-grid {
        grid-template-columns: 1fr 1fr; 
        grid-auto-rows: 200px;
        gap: 1rem;
    }

    .right-card {
        padding: 24px;
    }

    .right-card .stat-number {
        font-size: 48px;
    }

    .right-card .stat-desc,
    .right-card .stat-label {
        font-size: 16px;
    }

    .values-card.stat .values-card-inner {
        min-height: 140px;
    }
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
    }

    .values-left {
        width: auto;
    }

    .values-right-grid {
        gap: 1rem;
    }

    .values-cards-grid {
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .values-card.big .values-card-inner.gradient {
        padding: 40px;
    }
    .values-card.stat .values-card-inner {
        min-height: 140px;
    }
}

/* SURROUNDING ENVIRONMENT SECTION */
.surrounding {
    padding: 50px 0;
    background: #FFFFFF;
}

.surrounding-container {
    width: 95%;
    margin: 0 auto;
    padding: 0 1rem;
}

.surrounding-header {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.surrounding-title {
    font-size: 54px;
    font-weight: 500;
    color: #1E1E1E;
    line-height: 1.2;
    max-width: 800px;
    margin: 0;
}

.surrounding-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
    grid-auto-rows: 250px;
}

/* Baris pertama - rasio 2:1:1:2 (4+2+2+4 = 12) */
.surrounding-card:nth-child(1) {
    grid-column: span 4;
}

.surrounding-card:nth-child(2) {
    grid-column: span 2;
}

.surrounding-card:nth-child(3) {
    grid-column: span 2;
}

.surrounding-card:nth-child(4) {
    grid-column: span 4;
}

/* Baris kedua - rasio 1:1:1:1 (3+3+3+3 = 12) */
.surrounding-card:nth-child(5),
.surrounding-card:nth-child(6),
.surrounding-card:nth-child(7),
.surrounding-card:nth-child(8) {
    grid-column: span 3;
}

.surrounding-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.surrounding-card:hover {
    transform: translateY(-4px);
}

.surrounding-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.surrounding-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.surrounding-dots {
    display: none;
    gap: 8px;
    justify-content: center;
    margin-top: 1.5rem;
}

.surrounding-dot {
    width: 8px;
    height: 8px;
    background: #D1D5DB;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.surrounding-dot.active {
    background: #111827;
}

/* Mobile Responsive - Surrounding */
@media (max-width: 639px) {
    .surrounding {
        padding: 40px 0;
    }

    .surrounding-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .surrounding-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        grid-auto-rows: 160px;
        overflow: visible;
        position: relative;
    }

    /* Reset all card grid positioning for mobile */
    .surrounding-card:nth-child(1),
    .surrounding-card:nth-child(2),
    .surrounding-card:nth-child(3),
    .surrounding-card:nth-child(4),
    .surrounding-card:nth-child(5),
    .surrounding-card:nth-child(6),
    .surrounding-card:nth-child(7),
    .surrounding-card:nth-child(8) {
        grid-column: span 1 !important;
    }

    .surrounding-label {
        font-size: 11px;
        padding: 6px 12px;
        bottom: 12px;
        left: 12px;
    }

    .surrounding-dots {
        display: flex;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .surrounding {
        padding: 75px 0;
    }

    .surrounding-title {
        font-size: 38px;
        line-height: 1.2;
    }
    
    .surrounding-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 1rem;
        grid-auto-rows: 240px;
    }

    .surrounding-card:nth-child(1) {
        grid-column: span 3;
    }

    .surrounding-card:nth-child(2) {
        grid-column: span 3;
    }

    .surrounding-card:nth-child(3) {
        grid-column: span 3;
    }

    .surrounding-card:nth-child(4) {
        grid-column: span 3;
    }

    .surrounding-card:nth-child(5),
    .surrounding-card:nth-child(6),
    .surrounding-card:nth-child(7),
    .surrounding-card:nth-child(8) {
        grid-column: span 3;
    }

    .surrounding-label {
        font-size: 12px;
        padding: 8px 14px;
    }
}

@media (min-width: 1024px) {
    .surrounding {
        padding: 100px 0;
    }

    .surrounding-title {
        font-size: 48px;
    }
    
    .surrounding-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 1.5rem;
        grid-auto-rows: 350px;
    }
    
    .surrounding-label {
        font-size: 14px;
        padding: 10px 18px;
    }
}

/* ==========================================
   FOOTER SECTION
   ========================================== */

.footer {
    background: linear-gradient(180deg, 
        white 0%, 
        #F5FAFF 8.65%, 
        #CCE6FE 17.76%, 
        #8CC8FD 27.57%, 
        #003B92 84.13%);
    padding: 80px 0 0;
    color: white;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer Brand */
.footer-brand {
    max-width: 350px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    display: block;
}

.footer-description {
    margin-top: 1rem;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Footer Navigation */
.footer-nav h3,
.footer-contact h3,
.footer-location h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 1.25rem;
    color: white;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

/* Footer Contact */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact-item .footer-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    padding: 14px;
    background: white;
    border-radius: 50%;
    border: 2px solid #E5E7EB;
    box-sizing: content-box;
    object-fit: contain;
}

.footer-contact-item .contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 4px;
}

.footer-contact-item p,
.footer-contact-item a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: white;
}

/* Footer Location Map */
.footer-map {
    margin-top: 1rem;
}

.footer-map-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 0;
    border-radius: 12px;
    display: block;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

/* Mobile Responsive Footer */
@media (max-width: 639px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 2rem;
    }

    .footer-brand {
        max-width: 100%;
        padding-bottom: 1.5rem;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .footer-description {
        font-size: 12px;
        margin-top: 0.75rem;
    }

    .footer-nav h3,
    .footer-contact h3,
    .footer-location h3 {
        font-size: 14px;
        margin: 0 0 1rem;
    }

    .footer-nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 1rem;
    }

    .footer-nav li {
        margin-bottom: 0;
    }

    .footer-nav a {
        font-size: 12px;
    }

    .footer-contact-item {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .footer-contact-item .footer-icon {
        width: 16px;
        height: 16px;
        padding: 10px;
    }

    .footer-contact-item .contact-label {
        font-size: 11px;
    }

    .footer-contact-item p,
    .footer-contact-item a {
        font-size: 12px;
    }

    .footer-map-img {
        max-height: 160px;
    }

    .footer-bottom {
        padding: 1.5rem 0;
        gap: 0.75rem;
    }

    .footer-links {
        font-size: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

/* Tablet Responsive Footer */
@media (min-width: 640px) and (max-width: 1023px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding-bottom: 2.5rem;
    }

    .footer-brand {
        grid-column: span 2;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 2rem;
        margin-bottom: 0.5rem;
    }

    .footer-nav h3,
    .footer-contact h3,
    .footer-location h3 {
        font-size: 15px;
        margin-bottom: 1rem;
    }

    .footer-nav a,
    .footer-contact-item p,
    .footer-contact-item a {
        font-size: 13px;
    }

    .footer-map-img {
        max-height: 180px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-copyright {
        font-size: 13px;
    }
}

/* Desktop Responsive Footer */
@media (min-width: 1024px) {
    .footer {
        padding: 100px 0 0;
    }
    
    .footer-container {
        padding: 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
        gap: 4rem;
    }
    
    .footer-map-img {
        max-height: 220px;
    }
}
@media (min-width: 1440px) {
    .hero-title {
        font-size: 48px;
        line-height: 1.3;
    }

    .promo-title {
        font-size: 48px !important;
        line-height: 1.2 !important;
    }

    .livespace-title {
        font-size: 48px;
    }

    .surrounding-title {
        font-size: 48px;
    }
}

/* ============== TERMS & CONDITIONS PAGE ============== */

/* Terms Hero Section */
.terms-hero {
    background-color: #ffffff;
    padding: 60px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-breadcrumb {
    font-size: 14px;
    color: #4D4D4D;
    font-family: "Instrument Sans";
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
}

.terms-breadcrumb a {
    color: #0063A7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms-breadcrumb a:hover {
    color: #3193D5;
}

.terms-title {
    font-size: 32px;
    font-weight: 500;
    color: #1E1E1E;
    margin: 20px 0 15px;
    font-family: 'Instrument Sans', sans-serif;
    line-height: 1.3;
    font-style: normal;
}

.terms-subtitle {
    font-size: 14px;
    color: #4D4D4D;
    font-family: "Instrument Sans";
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
}

.terms-subtitle strong {
    color: #1E1E1E;
    font-weight: 500;
}

.terms-intro {
    font-size: 14px;
    color: #4D4D4D;
    font-family: "Instrument Sans";
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* Terms Content Section */
.terms-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    color: #4D4D4D;
    font-family: "Instrument Sans";
}

.terms-content h2 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1E1E1E;
    font-family: 'Instrument Sans', sans-serif;
    line-height: 1.3;
    font-style: normal;
}

.terms-content h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #1E1E1E;
    font-family: 'Instrument Sans', sans-serif;
}

.terms-content p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.18px;
    margin-bottom: 15px;
    text-align: justify;
    color: #4D4D4D;
    font-family: "Instrument Sans";
}

.terms-content strong {
    color: #1E1E1E;
    font-weight: 500;
}

.terms-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.terms-content li {
    margin-bottom: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.18px;
    color: #4D4D4D;
    font-family: "Instrument Sans";
}

.back-to-home {
    text-align: center;
    margin: 60px 0;
}

.back-to-home a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(95deg, #0063A7 0%, #3193D5 48.56%, #62C0FF 87.5%, #FFF 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-family: "Instrument Sans";
    font-size: 14px;
    border: 2px solid #FFF;
    box-shadow: 4px 4px 10.7px 0 rgba(77, 77, 77, 0.15);
    transition: all 0.3s;
    white-space: nowrap;
    width: fit-content;
    cursor: pointer;
}

.back-to-home a i {
    font-size: 16px;
    color: white;
}

.back-to-home a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 99, 167, 0.3);
}

/* Company Info Card */
.company-info-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.company-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E7EB;
}

.company-name {
    font-size: 20px;
    font-weight: 600;
    color: #1E1E1E;
    font-family: "Instrument Sans";
    margin-bottom: 5px;
}

.company-tagline {
    font-size: 14px;
    color: #6B7280;
    font-family: "Instrument Sans";
    font-weight: 400;
}

.company-updated {
    font-size: 13px;
    color: #9CA3AF;
    font-family: "Instrument Sans";
    text-align: right;
}

.company-updated p {
    margin: 0;
}

.company-info-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.company-info-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.company-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #F3F4F6;
    border-radius: 10px;
    flex-shrink: 0;
}

.company-info-icon i {
    font-size: 20px;
    color: #0063A7;
}

.company-info-text {
    flex: 1;
}

.company-info-text p {
    font-size: 15px;
    color: #4D4D4D;
    font-family: "Instrument Sans";
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.company-info-text a {
    font-size: 15px;
    color: #0063A7;
    font-family: "Instrument Sans";
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-info-text a:hover {
    color: #3193D5;
}

.company-info-footer {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

.btn-contact-us {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    background: linear-gradient(95deg, #0063A7 0%, #3193D5 48.56%, #62C0FF 87.5%, #FFF 100%);
    color: white;
    border: 2px solid #FFF;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Instrument Sans";
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 10.7px 0 rgba(77, 77, 77, 0.15);
    white-space: nowrap;
}

.btn-contact-us:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 99, 167, 0.3);
}

.btn-privacy-policy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(95deg, #0063A7, #3193D5, #62C0FF) border-box;
    border: 2px solid transparent;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Instrument Sans";
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0063A7;
}

.btn-privacy-policy:hover {
    color: #3193D5;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(95deg, #3193D5, #62C0FF, #0063A7) border-box;
}

/* Terms Responsive */
@media (min-width: 640px) and (max-width: 1023px) {
    .terms-hero {
        padding: 50px 20px;
    }

    .terms-breadcrumb {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .terms-title {
        font-size: 42px;
        margin: 20px 0 15px;
        line-height: 1.2;
    }

    .terms-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .terms-intro {
        font-size: 16px;
    }

    .terms-content {
        margin: 50px auto;
        padding: 0 20px;
    }

    .terms-content h2 {
        font-size: 20px;
        margin-top: 35px;
    }

    .terms-content h3 {
        font-size: 18px;
    }

    .terms-content p,
    .terms-content li {
        font-size: 16px;
        line-height: 1.6;
    }

    .company-info-card {
        padding: 24px;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .company-info-header {
        flex-direction: column;
        gap: 12px;
    }

    .company-updated {
        text-align: left;
    }

    .company-info-item {
        gap: 12px;
    }

    .company-info-icon {
        width: 36px;
        height: 36px;
    }

    .company-info-text p,
    .company-info-text a {
        font-size: 14px;
    }

    .company-info-footer {
        gap: 10px;
    }

    .btn-contact-us {
        font-size: 13px;
        padding: 12px 28px;
        border-radius: 22px;
    }

    .btn-privacy-policy {
        font-size: 13px;
        padding: 9px 18px;
        border-radius: 9999px;
    }
}

@media (max-width: 639px) {
    .terms-hero {
        padding: 40px 20px;
    }

    .terms-breadcrumb {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .terms-title {
        font-size: 36px;
        margin: 15px 0 12px;
        line-height: 1.2;
    }

    .terms-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .terms-intro {
        font-size: 14px;
    }

    .terms-content {
        margin: 40px auto;
        padding: 0 15px;
    }

    .terms-content h2 {
        font-size: 18px;
        margin-top: 30px;
    }

    .terms-content h3 {
        font-size: 16px;
    }

    .terms-content p,
    .terms-content li {
        font-size: 14px;
        line-height: 1.6;
    }

    .back-to-home {
        margin: 40px 0;
    }

    .back-to-home a {
        padding: 12px 28px;
        font-size: 14px;
        gap: 0.5rem;
    }

    .back-to-home a i {
        font-size: 16px;
    }

    .company-info-card {
        padding: 20px;
        margin-top: 40px;
        margin-bottom: 40px;
        border-radius: 12px;
    }

    .company-info-header {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .company-name {
        font-size: 18px;
    }

    .company-tagline {
        font-size: 13px;
    }

    .company-updated {
        font-size: 12px;
        text-align: left;
    }

    .company-info-details {
        gap: 16px;
        margin-bottom: 20px;
    }

    .company-info-item {
        gap: 12px;
    }

    .company-info-icon {
        width: 35px;
        height: 35px;
    }

    .company-info-icon i {
        font-size: 18px;
    }

    .company-info-text p,
    .company-info-text a {
        font-size: 13px;
        line-height: 1.5;
    }

    .company-info-footer {
        gap: 10px;
        flex-direction: column;
    }

    .btn-contact-us {
        width: 100%;
        font-size: 13px;
        padding: 12px 24px;
        border-radius: 22px;
    }

    .back-to-home a {
        border-radius: 22px;
    }

    .btn-privacy-policy {
        width: 100%;
        font-size: 13px;
        padding: 10px 16px;
    }
}

@media (min-width: 1024px) {
    .terms-hero {
        padding: 60px 20px;
    }

    .terms-container {
        max-width: 900px;
    }

    .terms-breadcrumb {
        font-size: 14px;
    }

    .terms-title {
        font-size: 54px;
        margin: 20px 0 15px;
        line-height: 1.2;
    }

    .terms-subtitle {
        font-size: 18px;
        font-style: normal;
        line-height: 24px;
        letter-spacing: 0.18px;
        margin-bottom: 20px;
    }

    .terms-intro {
        font-size: 18px;
        font-style: normal;
        line-height: 24px;
        letter-spacing: 0.18px;
    }

    .terms-content {
        margin: 60px auto;
        padding: 0 20px;
    }

    .terms-content h2 {
        font-size: 24px;
        margin-top: 40px;
    }

    .terms-content h3 {
        font-size: 20px;
    }

    .terms-content p,
    .terms-content li {
        font-size: 18px;
        font-style: normal;
        line-height: 24px;
        letter-spacing: 0.18px;
    }

    .back-to-home {
        margin: 60px 0;
    }

    .back-to-home a {
        padding: 14px 32px;
        font-size: 14px;
    }

    .company-info-card {
        padding: 32px;
        margin-top: 60px;
        margin-bottom: 60px;
        border-radius: 16px;
    }

    .company-info-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .company-updated {
        text-align: right;
    }

    .company-info-details {
        gap: 24px;
    }

    .company-info-item {
        gap: 15px;
    }

    .company-info-icon {
        width: 40px;
        height: 40px;
    }

    .company-info-text p,
    .company-info-text a {
        font-size: 15px;
    }

    .company-info-footer {
        gap: 12px;
        justify-content: flex-start;
    }

    .btn-contact-us {
        width: auto;
        font-size: 14px;
        padding: 14px 32px;
        border-radius: 25px;
    }

    .back-to-home a {
        border-radius: 25px;
    }

    .btn-privacy-policy {
        width: auto;
        font-size: 14px;
        padding: 10px 20px;
        border-radius: 9999px;
    }
}

@media (min-width: 1280px) {
    .terms-title {
        font-size: 48px;
        line-height: 1.25;
    }
}