:root {
    --container-max-width: 1500px;
    --font-family:
        "Florentia", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --color-primary: #1a4d2e;
    --color-white: #ffffff;
    --color-overlay: rgba(0, 0, 0, 0.4);
    --color-badge-bg: rgba(255, 255, 255, 0.1);
    --color-whatsapp: #25d366;
    --color-text-dark: #222222;
    --color-text-medium: #333333;
    --color-text-placeholder: #aaaaaa;
    --color-border-light: #dddddd;
    --color-background-page: #f9f9f9;
    --color-label-bg: #f5efe6;
    --color-label-border: #d3c3b0;
    --color-label-text: #8b7765;
    --color-button-form: #2a7a4a;
}

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

body {
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    background: #f5f5f5;
    overflow-x: hidden;
}

.banner {
    position: relative;
    height: 90vh;
    display: flex;
    flex-direction: column;
    background-image: url("/assets/images/banner1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    border-radius: 20px;
    margin: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.banner__header {
    position: relative;
    z-index: 2;
    padding: 1.5rem 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.banner__header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
}

.banner__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.banner__logo img {
    display: block;
    height: auto;
    width: 65px;
    object-fit: contain;
}

.banner__nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.banner__nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9375rem;
}

.banner__nav-link:hover {
    color: var(--color-white);
    opacity: 0.9;
}

.banner__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.banner .dropdown .banner__lang {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 700;
    background: none;
    border: none;
    font-family: var(--font-family);
}

.banner .dropdown .banner__lang::after {
    border-top-color: var(--color-white);
}

.banner .dropdown .dropdown-menu {
    background: var(--color-white);
}

.banner .dropdown .dropdown-item {
    color: var(--color-text-dark);
}

.banner__cta-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    text-decoration: none;
    border-radius: 30px;
    transition:
        opacity 0.2s,
        background-color 0.2s;
}

.banner__btn:hover {
    opacity: 0.9;
}

.banner__btn--primary {
    background-color: #003e30;
    color: var(--color-white);
    border: 1px solid #ffffff;
}

.banner__btn--primary:hover {
    background-color: #0a3d2e;
}

.banner__btn--secondary {
    background-color: var(--color-white);
    color: #2b2b2b;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.banner__btn--secondary:hover {
    background-color: #f0f0f0;
}

.banner__btn-arrow {
    width: 18px;
    height: 13px;
    flex-shrink: 0;
    margin-left: 0.25rem;
}

.banner__content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 2rem 3rem 10rem;
    justify-content: flex-start;
}

.banner__text {
    max-width: 65%;
}

.banner__title {
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 30px;
    font-size: 75px;
}

.banner__details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 0;
    margin-bottom: 27px;
}

.banner__details span {
    font-weight: 500;
    color: #ffffff;
    font-size: 16px;
}

.banner__detail-sep {
    width: 1px;
    height: 1em;
    margin: 0 40px;
    background: var(--color-white);
    opacity: 0.7;
}

.banner__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.banner__badge {
    display: inline-block;
    padding: 3px 20px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 9999px;
    background: #ffffff47;
}

.banner__whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    background: linear-gradient(
        135deg,
        #11ffdb 0%,
        #219793 25%,
        #11ffdb 50%,
        #219793 75%,
        #11ffdb 100%
    );
    background-size: 800% 800%;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.2s;
    animation:
        whatsapp-pulse 20s ease-in-out infinite,
        whatsapp-gradient 20s ease infinite;
}

@keyframes whatsapp-pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 4px 20px rgba(33, 151, 147, 0.5);
    }
}

@keyframes whatsapp-gradient {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 200% 50%;
    }
}

.banner__whatsapp img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

/* Sign-up section */
.signup-section {
    position: relative;
    z-index: 9;
    padding: 0 1.5rem 0;
    margin-top: 0;
    background-color: #f5f5f5;
}

.signup-section__card {
    position: relative;
    z-index: 9;
    transform: translateY(-80px);
    width: 100%;
    max-width: 82%;
    margin: 0 auto;
    padding: 43px 180px;
    background-color: var(--color-white);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box;
}

.signup-section .section-label {
    margin-bottom: 1rem;
}

.signup-section__heading {
    font-size: 35px;
    font-weight: 300;
    color: #202222;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.signup-section__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.signup-section__fields {
    width: 100%;
}

.signup-section__field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
}

.signup-section__field-label {
    font-size: 15px;
    font-weight: 500;
    color: #202222;
    margin-bottom: 0;
}

.signup-section__input.form-control {
    width: 100%;
    padding: 9px 20px 11px;
    font-size: 0.9375rem;
    font-family: var(--font-family);
    color: var(--color-text-dark);
    background-color: var(--color-white);
    border-radius: 15px;
    border: 1px solid #d0d0d0;
}

.signup-section__input::placeholder {
    color: var(--color-text-placeholder);
}

.signup-section .iti {
    width: 100%;
}

.signup-section .iti.iti--allow-dropdown input,
.signup-section .iti.iti--show-flags input,
.signup-section .iti input {
    width: 100%;
    padding: 9px 20px 11px 3.75rem;
    font-size: 0.9375rem;
    font-family: var(--font-family);
    color: var(--color-text-dark);
    background-color: var(--color-white);
    border-radius: 15px;
    border: 1px solid #d0d0d0;
}

.signup-section .iti__flag-container {
    padding-left: 12px;
}

.iti__selected-country-primary {
    padding-left: 15px;
    gap: 6px;
}

.iti--allow-dropdown
    .iti__country-container:not(:has(+ input[disabled])):not(
        :has(+ input[readonly])
    )
    .iti__selected-country-primary:hover,
.iti--allow-dropdown
    .iti__country-container:not(:has(+ input[disabled])):not(
        :has(+ input[readonly])
    )
    .iti__selected-country:has(+ .iti__dropdown-content:hover)
    .iti__selected-country-primary {
    background: transparent;
}

.signup-section .iti--container {
    width: 100%;
}

.signup-section__submit {
    padding: 12px 28px;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--color-white);
    background-color: #003e30;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: opacity 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn:hover {
    color: white;
    background-color: #003e30;
    border-color: unset;
}

/* Shared section styles */
.section-label {
    display: inline-block;
    padding: 4px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #b87b52;
    background-color: transparent;
    border: 1px solid #b87b52;
    border-radius: 9999px;
    margin-bottom: 17px !important;
}

.section-heading {
    font-size: 65px;
    font-weight: 300;
    color: #202222;
    line-height: 1.2;
    margin-bottom: 50px;
}

.section-paragraph {
    color: #7a7a7a;
    margin: 0;
    line-height: 24px;
    flex-shrink: 0;
    font-weight: 400;
    font-size: 15px;
}

.btn--primary {
    padding: 12px 28px;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--color-white);
    background-color: #003e30;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: opacity 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn--primary:hover {
    color: var(--color-white);
    opacity: 0.9;
}

.btn--secondary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-family: var(--font-family);
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s;
}

.btn--secondary:hover {
    color: var(--color-primary);
    opacity: 0.9;
}

/* Welcome section */
.welcome-section {
    padding: 4rem 1.5rem;
    background-color: #f5f5f5;
}

.welcome-section__header {
    text-align: center;
    margin-bottom: 2rem;
}

.welcome-section .section-heading {
    text-align: center;
}

.welcome-section__grid {
    align-items: stretch;
}

.welcome-section__grid > [class*="col-"] {
    display: flex;
}

.welcome-section__grid .col-lg-8 > div {
    width: 100%;
}

.welcome-section__grid .col-lg-4 > div {
    width: 100%;
    height: 100%;
}

.welcome-section__main-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.welcome-section__main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-section__badge {
    position: absolute;
    right: 1rem;
    background: linear-gradient(
        359deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgb(0 0 0 / 0%) 100%
    );
    color: var(--color-white);
    border-radius: 0;
    flex-direction: column;
    line-height: 1.2;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 40px;
}

.welcome-section__badge-num {
    font-size: 75px;
    font-weight: 700;
    color: #ffffff;
}

.welcome-section__badge-text {
    font-size: 24px;
    font-weight: 400;
}

.welcome-section__right-col {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1rem;
}

.welcome-section__side-images {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex: 1;
    min-height: 0;
}

.welcome-section__side-img {
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    min-height: 100px;
}

.welcome-section__side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.welcome-section__text {
    width: 80%;
}

.welcome-section__right-col .btn {
    flex-shrink: 0;
    align-self: flex-start;
}

.welcome-section__right-col .btn .banner__btn-arrow {
    width: 18px;
    height: 13px;
    margin-left: 0.25rem;
}

/* Choose apartment section */
.choose-apartment-section {
    padding: 4rem 1.5rem;
    background-color: #f5f5f5;
}

.choose-apartment-section__container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.choose-apartment-section__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #c67a4a;
    background-color: transparent;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    color: #c67a4a;
    margin: 0 auto 24px;
    width: fit-content;
}

.choose-apartment-section__container {
    text-align: center;
}

.choose-apartment-section__content-wrapper {
    text-align: left;
}

.choose-apartment-section__heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.choose-apartment-section__content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.choose-apartment-section__field-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #2b2b2b;
    margin-bottom: 16px;
}

.choose-apartment-section__radios {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.choose-apartment-section__radio {
    margin: 0;
    cursor: pointer;
}

.choose-apartment-section__radio input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.choose-apartment-section__radio-label {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #2b2b2b;
    background: transparent;
    border: 1px solid #dadada;
    border-radius: 4px;
    transition:
        background-color 0.2s,
        color 0.2s,
        border-color 0.2s;
}

.choose-apartment-section__radio
    input:checked
    + .choose-apartment-section__radio-label {
    background-color: #0e4f3c;
    color: var(--color-white);
    border: none;
}

.choose-apartment-section__subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #2b2b2b;
    margin: 0 0 12px 0;
}

.choose-apartment-section__desc {
    max-width: 420px;
    margin-bottom: 32px;
}

.choose-apartment-section__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    color: #2b2b2b;
    margin-bottom: 40px;
}

.choose-apartment-section__divider {
    width: 100%;
    height: 1px;
    background: #e3e3e3;
    margin-bottom: 32px;
}

.choose-apartment-section__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.choose-apartment-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.choose-apartment-section__btn-arrow {
    width: 18px;
    height: 13px;
}

.choose-apartment-section__btn--primary {
    background-color: #0e4f3c;
    color: var(--color-white);
    border: 1px solid #0e4f3c;
}

.choose-apartment-section__btn--primary:hover {
    color: var(--color-white);
    opacity: 0.9;
}

.choose-apartment-section__btn--secondary {
    background: transparent;
    border: 1px solid #0e4f3c;
    color: #0e4f3c;
}

.choose-apartment-section__btn--secondary:hover {
    color: #0e4f3c;
    opacity: 0.9;
}

.choose-apartment-section__right-content {
    height: 100%;
}

.choose-apartment-section__image-card {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.choose-apartment-section__image-card .carousel,
.choose-apartment-section__image-card .carousel-inner,
.choose-apartment-section__image-card .carousel-item {
    height: 100%;
    border-radius: 20px;
}

.choose-apartment-section__image-card .carousel-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.choose-apartment-section__carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 2;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    margin: 0;
}

.choose-apartment-section__carousel-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    border: none;
    background-color: #ffffffb2;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.choose-apartment-section__carousel-dots button.active {
    position: relative;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border: none;
    margin-left: 5px;
    margin-right: 5px;
    transition: all 0.5s;
}

.choose-apartment-section__carousel-dots button.active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
    animation: carousel-dot-ring-pulse 2.5s ease-in-out infinite;
}

@keyframes carousel-dot-ring-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.08);
    }
}

/* See in 3D section */
.see-in-3d-section {
    padding: 100px 1.5rem;
    background-color: #f5f5f5;
}

.see-in-3d-section__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.see-in-3d-section__badge {
    display: inline-block;
    border: 1px solid #d7a47b;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #b07a4e;
    background: transparent;
    margin-bottom: 20px;
}

.see-in-3d-section__heading {
    margin-bottom: 60px;
    max-width: 900px;
}

.see-in-3d-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.see-in-3d-section__card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    height: 450px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.see-in-3d-section__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.see-in-3d-section__img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.see-in-3d-section__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.see-in-3d-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
    transition: background 0.3s ease;
}

.see-in-3d-section__card:hover .see-in-3d-section__overlay {
    background: rgba(0, 0, 0, 0.35);
}

.see-in-3d-section__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgb(255 255 255 / 24%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.see-in-3d-section__card:hover .see-in-3d-section__play-btn {
    animation: see-in-3d-play-btn-blink 1.2s ease-in-out infinite;
}

@keyframes see-in-3d-play-btn-blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.see-in-3d-section__play-btn::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 4px;
    border-left: 18px solid #ffffff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

.see-in-3d-section__caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
    pointer-events: none;
    white-space: nowrap;
}

#videoModal .modal-content {
    background: transparent;
    border: none;
}

#videoModal .modal-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

#videoModal .btn-close {
    filter: invert(1);
    opacity: 0.9;
}

#videoModal .modal-content {
    background: #000;
}

#videoModal .modal-body {
    padding: 0;
}

/* Investment section */
.investment-section {
    padding: 100px 1.5rem;
    padding-bottom: 150px;
    background: linear-gradient(180deg, #f5f5f5, white);
}

.investment-section__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 5%;
}

.investment-section__header {
    text-align: center;
    margin-bottom: 60px;
}

.investment-section__badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-label-text);
    background: transparent;
    border: 1px solid var(--color-label-border);
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.investment-section__heading {
    margin: 0;
}

.investment-section__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.investment-section__image-area {
    position: relative;
}

.investment-section__main-img {
    border-radius: 24px;
    overflow: hidden;
    width: 90%;
    height: 500px;
    margin-left: auto;
    box-sizing: border-box;
}

.investment-section__main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.investment-section__floating-card {
    position: absolute;
    bottom: -50px;
    left: -30px;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 10px 15px 10px;
    width: 280px;
}

.investment-section__floating-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.investment-section__floating-card .section-paragraph {
    color: #202222;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    margin-top: 10px;
}

.investment-section__cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.investment-section__card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 170px;
    border: 1px solid #e0e0e0;
}

.investment-section__card-icon {
    color: #000000;
    flex-shrink: 0;
}

.investment-section__card-icon svg {
    display: block;
}

.investment-section__card-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.investment-section__card-value {
    font-size: 25px;
    font-weight: 400;
    color: #202222;
    margin: 0;
}

.investment-section__card-label {
    font-size: 15px;
    color: #7a7a7a;
    margin: 4px 0 0 0;
    font-weight: 400;
}

.investment-section__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.investment-section__btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 28px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.investment-section__btn-arrow {
    width: 18px;
    height: 13px;
    margin-left: 0.35rem;
}

.investment-section__btn--primary {
    background-color: #0b4636;
    color: var(--color-white);
    border: none;
}

.investment-section__btn--primary:hover {
    color: var(--color-white);
    opacity: 0.9;
}

.investment-section__btn--secondary {
    background: transparent;
    color: #0b4636;
    border: 1px solid #0b4636;
}

.investment-section__btn--secondary:hover {
    color: #0b4636;
    opacity: 0.9;
}

/* Experience design section */
.experience-design-section {
    padding: 100px 10px 100px;
    background: #f4f4f4;
    border-radius: 55px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-top: -25px;
    overflow: hidden;
}

.experience-design-section__inner {
    background-color: #f4f4f4;
    border-radius: 30px;
    padding: 0;
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (max-width: 1199.98px) {
    .experience-design-section__inner {
        padding: 60px 48px;
    }
}

.experience-design-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.experience-design-section__badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-label-text);
    background: transparent;
    border: 1px solid var(--color-label-border);
    border-radius: 24px;
    text-transform: uppercase;
}

.experience-design-section__heading {
    font-family: var(--font-family);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #1c1c1c;
    line-height: 1.15;
    margin: 16px 0 0 0;
}

.experience-design-section__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.experience-design-section__btn {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 20px;
    border-radius: 24px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.experience-design-section__btn-arrow {
    width: 18px;
    height: 13px;
    margin-left: 0.35rem;
}

.experience-design-section__btn--primary {
    background-color: #0b4636;
    color: var(--color-white);
    border: none;
}

.experience-design-section__btn--primary:hover {
    color: var(--color-white);
    opacity: 0.9;
}

.experience-design-section__btn--secondary {
    background: transparent;
    color: #0b4636;
    border: 1px solid #0b4636;
}

.experience-design-section__btn--secondary:hover {
    color: #0b4636;
    opacity: 0.9;
}

.experience-design-section__gallery {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1.25fr 1fr;
    gap: 24px;
    min-height: 400px;
    align-items: start;
}

.experience-design-section__img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    background: var(--color-background-page);
}

.experience-design-section__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.experience-design-section__img-wrap:hover img {
    transform: scale(1.04);
}

.experience-design-section__img-wrap--small {
    aspect-ratio: 3/4;
}

.experience-design-section__img-wrap--tall {
    grid-row: span 2;
    align-self: stretch;
    min-height: 280px;
}

.experience-design-section__img-wrap--tall img {
    min-height: 100%;
}

.experience-design-section__img-wrap--medium {
    aspect-ratio: 4/5;
}

.experience-design-section__img-wrap--small-wide {
    aspect-ratio: 4/3;
}

.experience-design-section__img-wrap {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out;
}

.experience-design-section__img-wrap.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer-section {
    background-color: #003e30;
    padding: 4rem 1.5rem 2rem;
    padding-bottom: 18px;
    color: var(--color-white);
    border-radius: 20px;
    margin: 10px;
    margin-bottom: 0;
    box-sizing: border-box;
    overflow: hidden;
    padding-top: 100px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.footer-section__logo {
    width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-section__tagline {
    max-width: 670px;
    margin: 30px auto 30px;
    line-height: 1.6;
    opacity: 0.95;
    color: var(--color-white);
    font-weight: 400;
    font-size: 22px;
}

.footer-section__social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-section__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000000;
    transition: opacity 0.2s;
    background: white;
}

.footer-section__social-link svg {
    width: 12px;
}

.footer-section__social-link:hover {
    color: #003e30;
    opacity: 1;
}

.footer-section__copyright {
    font-size: 10px;
    opacity: 0.8;
    margin: 0;
    margin-top: 35px;
    color: var(--color-white);
    font-weight: 500;
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {
    .banner__content {
        padding: 2rem 1rem 4rem;
    }

    .banner__nav .banner__btn {
        width: 100%;
        justify-content: center;
    }

    .experience-design-section__inner {
        padding: 3rem 2.5rem;
    }

    .experience-design-section__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .experience-design-section__heading {
        font-size: 42px;
    }

    .experience-design-section__gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .experience-design-section__img-wrap--tall {
        grid-row: span 1;
        aspect-ratio: 4/5;
    }

    .see-in-3d-section__grid {
        grid-template-columns: 1fr 1fr;
    }

    .choose-apartment-section__heading {
        font-size: 48px;
    }

    .choose-apartment-section__content-wrapper {
        grid-template-columns: 1fr;
    }

    .investment-section__grid {
        grid-template-columns: 1fr;
    }

    .investment-section__container {
        padding: 0;
    }

    .investment-section__main-img {
        width: 100%;
    }

    .investment-section__card {
        padding: 20px;
        gap: 22px;
    }

    .investment-section__floating-card {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .banner__text {
        max-width: 100%;
    }

    .banner__title {
        font-size: 40px;
    }

    .banner {
        height: auto;
    }

    .banner__whatsapp {
        width: 50px;
        height: 50px;
    }

    .banner__whatsapp img {
        width: 24px;
        height: 24px;
    }

    .banner__header {
        padding: 20px 15px;
    }

    .banner__detail-sep {
        margin: 0 8px;
    }

    .banner__details span {
        font-size: 10px;
    }

    .banner__header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .banner__header-row {
        justify-content: space-between;
        flex: none;
    }

    .banner__lang-dropdown {
        margin-left: auto;
    }

    .banner__nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .banner__nav .banner__btn {
        width: auto;
        flex: 1;
        min-width: 0;
        justify-content: center;
        font-size: 10px;
    }

    .signup-section {
        padding: 0;
    }

    .signup-section__card {
        padding: 1.5rem;
        max-width: 100%;
        transform: unset;
    }

    .signup-section__heading {
        font-size: 1.5rem;
    }

    .welcome-section,
    .choose-apartment-section,
    .see-in-3d-section,
    .investment-section {
        padding: 3rem 1rem;
        padding-bottom: 90px;
    }

    .section-heading {
        font-size: 32px;
    }

    .welcome-section__badge-num {
        font-size: 50px;
    }

    .welcome-section__badge {
        padding: 20px;
    }

    .welcome-section__text {
        width: 100%;
    }

    .see-in-3d-section__heading {
        font-size: 36px;
    }

    .see-in-3d-section__grid {
        grid-template-columns: 1fr;
    }

    .see-in-3d-section__card {
        height: 300px;
    }

    .investment-section__heading {
        font-size: 36px;
    }

    .investment-section__buttons {
        flex-direction: column;
    }

    .investment-section__btn {
        width: 100%;
        justify-content: center;
    }

    .experience-design-section {
        margin-top: -40px;
    }

    .experience-design-section__inner {
        padding: 0;
    }

    .experience-design-section__header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        gap: 0;
    }

    .experience-design-section__heading {
        font-size: 32px;
    }

    .experience-design-section__buttons {
        flex-direction: column;
    }

    .experience-design-section__btn {
        width: 100%;
        justify-content: center;
    }

    .experience-design-section__gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: 0;
    }

    .experience-design-section__img-wrap--small {
        aspect-ratio: 3 / 3;
    }

    .experience-design-section__img-wrap--tall {
        grid-row: span 1;
        aspect-ratio: 4/5;
    }

    .choose-apartment-section__heading {
        font-size: 36px;
    }

    .choose-apartment-section__container {
        padding: 0;
    }

    .choose-apartment-section__features {
        grid-template-columns: 1fr;
    }

    .choose-apartment-section__buttons {
        flex-direction: column;
    }

    .choose-apartment-section__btn {
        width: 100%;
        justify-content: center;
    }
}

/* RTL (Arabic) – text alignment only, no layout changes */
body.is-rtl {
    text-align: right;
    direction: ltr;
}

/* Keep banner header in LTR so logo stays on the left */
body.is-rtl .banner__header,
body.is-rtl .banner__header-row {
    direction: ltr;
    text-align: right;
}

body.is-rtl .banner__content.container-fluid {
    direction: rtl;
}

body.is-rtl .signup-section__field {
    align-items: flex-end;
}

body.is-rtl .welcome-section__right-col {
    align-items: flex-end;
}

body.is-rtl .welcome-section__right-col .btn.btn--primary {
    margin-left: auto;
}

body.is-rtl .experience-design-section__header {
    flex-direction: row-reverse;
}

body.is-rtl .investment-section__card {
    flex-direction: row-reverse;
}

body.is-rtl .choose-apartment-section__features {
    text-align: right;
}

body.is-rtl .choose-apartment-section__pane {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

body.is-rtl .choose-apartment-section__buttons {
    justify-content: flex-end;
}

body.is-rtl .choose-apartment-section__radios {
    justify-content: flex-end;
}

body.is-rtl .choose-apartment-section__field-label {
    text-align: right;
}
