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

img {
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #137459;
    overflow-x: hidden;
}

.header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.5rem 0.5rem;
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    max-width: fit-content;
    border-radius: 500000px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-column: 1;
    padding-left: 1rem;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    height: 2.5rem;
    width: auto;
    display: block;
}

.nav-buttons {
    display: flex;
    gap: 0.15rem;
    align-items: center;
    grid-column: 2;
    justify-self: center;
    padding-left: 8rem;
    padding-right: 8rem;
}

.nav-btn {
    background: transparent;
    border: none;
    color: #212121;
    padding: 0.6rem 0.8rem;
    border-radius: 500000px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.nav-btn:hover {
    font-weight: 700;
}

.nav-btn.active {
    background: transparent;
    color: #137459;
    font-weight: 800;
}

.circular-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #137459;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    grid-column: 3;
    justify-self: end;
    margin-right: 0;
    text-decoration: none;
}

.arrow-img {
    width: 14px;
    height: 14px;
    display: block;
}

.hero {
    background-image: url('img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 18vh;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background-image: url('img/hero gradient.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 999;
    max-width: 1200px;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}

.hero-tags {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-bottom: 0.75rem;
    font-family: 'DM Sans', sans-serif;
}

.hero-title {
    font-size: 6.5rem;
    color: white;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 0.95;
    font-family: 'DM Sans', sans-serif;
}

.hero-description {
    font-size: 1.25rem;
    color: white;
    font-weight: 400;
    margin-bottom: 4rem;
    line-height: 1.6;
    font-family: 'DM Sans', sans-serif;
}

.hero-btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #137459;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 500000px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn:hover {
    background: #0f5a47;
    transform: translateY(-2px);
}

.schedule-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.hero-circles {
    position: absolute;
    bottom: 5vh;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 0 2rem;
}

.frost-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.frost-circle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.frost-circle img {
    display: block;
    margin: 0 auto;
}

.circle-icon {
    width: 28px;
    height: 28px;
    display: block;
    filter: brightness(0) invert(1);
    margin: 0;
    padding: 0;
}

.about-us {
    position: relative;
    padding: 4rem 2rem;
    background-color: #137459;
    z-index: 1;
}

.rent-section {
    position: relative;
    padding: 4rem 2rem;
    background-color: #137459;
    z-index: 1;
}

.buy-section {
    position: relative;
    padding: 4rem 2rem;
    background-color: #137459;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.buy-section-bg-icon {
    position: absolute;
    z-index: -999;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0.3;
}

.video-section {
    padding: 4rem 2rem;
    background-color: #137459;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    max-width: 1400px;
    width: 100%;
    background: white;
    border-radius: 2rem;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.video-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.video-play-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.video-play-text {
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

.footer {
    background-color: #0C624A;
    padding: 4rem 4rem 0rem 4rem;
    color: white;
    position: relative;
}

.footer-decoration {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: block;
    margin-top: 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.footer-logo-img {
    height: 100%;
    width: auto;
    display: block;
    max-height: 80px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-nav-link {
    color: white;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.footer-nav-link:hover {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.footer-social-link:hover {
    opacity: 0.7;
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.footer-location:hover {
    opacity: 0.7;
}

.footer-location-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    z-index: 10000;
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
}

.video-modal-player {
    width: 100%;
    height: auto;
    max-width: 1600px;
    border-radius: 1rem;
    display: block;
}

.video-modal-close {
    background: white;
    border: none;
    color: #212121;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 500000px;
    padding: 0.75rem 2rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.video-modal-close:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.buy-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    margin: 0;
    padding-bottom: 2rem;
}

.buy-carousel {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
}

.buy-carousel-track {
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
    cursor: grab;
    user-select: none;
    will-change: transform;
    padding-left: max(2rem, calc((100vw - 1400px) / 2 + 2rem));
    touch-action: pan-y pan-x;
    transition: transform 0.5s ease-out;
    padding-top: 2rem;
}

.buy-carousel-track.dragging {
    transition: none;
}

.buy-carousel-track:active {
    cursor: grabbing;
}

.buy-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem 2rem;
}

.buy-carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.buy-carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.buy-carousel-arrow:active {
    transform: scale(0.95);
}

.buy-carousel-arrow img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    pointer-events: none;
}

.buy-carousel-progress {
    flex: 1;
    max-width: 400px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.buy-carousel-progress-bar {
    height: 100%;
    background: white;
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

.buy-card {
    background: white;
    border-radius: 2rem;
    overflow: visible;
    flex: 0 0 min(450px, calc(100vw - 4rem));
    min-width: 0;
    flex-shrink: 0;
    max-width: 450px;
    width: min(450px, calc(100vw - 4rem));
    display: flex;
    flex-direction: column;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.buy-card:hover {
    transform: translateY(-8px) !important;
}

.buy-card-image {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
}

.buy-card-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}

.buy-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.buy-card-row-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.buy-card-row-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.buy-card-row-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #737373;
    font-weight: 400;
}

.buy-card-row-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #212121;
    font-weight: 500;
    text-align: right;
}

.buy-card-contact-btn {
    padding: 1rem 4rem;
    background-color: #137459;
    color: white;
    border: none;
    border-radius: 500000px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: fit-content;
    align-self: center;
    text-decoration: none;
}

.buy-card-contact-btn span {
    color: white;
}

.buy-card-contact-btn:hover {
    background-color: #0f5a47;
    transform: translateY(-2px);
}

.buy-card-contact-btn:active {
    transform: translateY(0);
}

.buy-card-contact-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.rent-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 2rem;
    padding: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.rent-header {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    flex: 1;
    width: 100%;
}

.rent-title {
    font-size: 2.5rem;
    color: #212121;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    font-family: 'DM Sans', sans-serif;
    flex: 1;
}

.rent-title strong {
    font-weight: 700;
}

.rent-description {
    flex: 1;
    min-width: 300px;
    font-size: 1.1rem;
    color: #737373;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

.rent-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-top: 3rem;
}

.rent-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
}

.rent-card:hover {
    transform: translateY(-4px) !important;
}

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

.rent-card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
}

.rent-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.rent-card-info {
    flex: 1;
    min-width: 0;
}

.rent-card-title {
    font-size: 0.95rem;
    color: #737373;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.rent-card-details {
    font-size: 1.25rem;
    color: white;
    font-weight: 500;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

.rent-card-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.about-us-content {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 2rem;
    padding: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    box-shadow: none;
}

.about-left,
.about-right {
    flex: 1;
    min-width: 300px;
}

.about-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-title {
    font-size: 2.5rem;
    color: #212121;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'DM Sans', sans-serif;
}

.about-description {
    font-size: 1.1rem;
    color: #737373;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-family: 'DM Sans', sans-serif;
}

.about-btn {
    background: #137459;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 500000px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-bottom: auto;
    text-decoration: none;
    display: inline-block;
}

.about-btn:hover {
    background: #0f5a47;
    transform: translateY(-2px);
}

.about-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #737373;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 2rem;
}

.about-location:hover {
    color: #137459;
}

.location-icon {
    width: 20px;
    height: 20px;
    display: block;
    filter: brightness(0) saturate(100%) invert(50%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.about-location:hover .location-icon {
    filter: brightness(0) saturate(100%) invert(31%) sepia(47%) saturate(1087%) hue-rotate(124deg) brightness(93%) contrast(89%);
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem;
    background: #F3F4F6;
    border: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.stat-left {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.stat-title {
    font-size: 1.1rem;
    color: #212121;
    font-weight: 500;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

.stat-description {
    font-size: 0.95rem;
    color: #737373;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: #e5e5e5;
    flex-shrink: 0;
}

.stat-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-width: 80px;
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    .stat-right {
        flex: 1;
        width: 100%;
        text-align: left;
        align-items: flex-start;
    }
}

.stat-number {
    font-size: 2.5rem;
    color: #212121;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #737373;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
}

.airbnb-section {
    position: relative;
    min-height: 100vh;
    padding: 4rem 2rem;
    background-color: #137459;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.airbnb-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.airbnb-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    text-align: left;
    margin-bottom: 0;
}

.airbnb-pill-small {
    background: white;
    border-radius: 500000px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.airbnb-pill-small:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.airbnb-pill-small .airbnb-full-logo {
    height: 30px;
    width: auto;
}

.airbnb-pill {
    background: white;
    border-radius: 500000px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

.airbnb-logo {
    display: flex;
    align-items: center;
    padding: 0.25rem;
}

.airbnb-full-logo {
    height: 40px;
    width: auto;
    display: block;
}

.airbnb-chips {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.airbnb-chip {
    background: #F3F4F6;
    padding: 0.75rem 1.25rem;
    border-radius: 500000px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #737373;
    white-space: nowrap;
}

.chip-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.airbnb-carousel {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
}

.airbnb-carousel-track {
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
    cursor: grab;
    user-select: none;
    will-change: transform;
    padding-left: max(2rem, calc((100vw - 1400px) / 2 + 2rem));
    touch-action: pan-y pan-x;
}

.airbnb-carousel-track:active {
    cursor: grabbing;
}

.airbnb-container {
    background: white;
    border-radius: 2rem;
    padding: 1rem;
    flex: 0 0 min(1000px, calc(100vw - 4rem));
    min-width: 0;
    flex-shrink: 0;
    max-width: 1000px;
    width: min(1000px, calc(100vw - 4rem));
    display: flex;
    flex-direction: column;
}

.apartment-images-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.apartment-image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 1rem;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.apartment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.apartment-image.active {
    display: block;

}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow img {
    width: 24px;
    height: 24px;
    display: block;
    filter: brightness(0) invert(1);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.apartment-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.5rem;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.gallery-image:hover {
    opacity: 0.8;
}



@media (max-width: 768px) {
    .apartment-images-wrapper {
        grid-template-columns: 1fr;
    }
    
    .apartment-image-carousel {
        aspect-ratio: 16 / 9;
        height: auto;
    }
    
    .carousel-arrow {
        display: flex;
    }
    
    .apartment-gallery {
        display: none;
    }
    
    .features-grid {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
    }
    
    .rent-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rent-section {
        padding: 2rem 1rem 1rem;
    }
    
    .rent-container {
        padding: 1.5rem;
    }
    
    .video-section {
        padding: 2rem 1rem 1rem;
    }
    
    .video-container {
        padding: 0.5rem;
        border-radius: 1rem;
    }
    
    .footer {
        padding: 2rem 1rem 0rem 1rem;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-right {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .footer-nav {
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
    
    .rent-header {
        width: 100%;
    }
    
    .rent-title {
        padding-top: 2rem;
        font-size: 2rem;
        width: 100%;
        text-align: center;
    }
    
    .rent-description {
        width: 100%;
    }
}


.apartment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.apartment-title {
    font-size: 1.75rem;
    color: #212121;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    margin: 0;
}

.apartment-rating {
    display: flex;
    align-items: space-between;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    width: 100%;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: 1.25rem;
    color: #212121;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.stars {
    font-size: 0.9rem;
    color: #737373;
    font-family: 'DM Sans', sans-serif;
}

.airbnb-link-btn {
    background: #FF5A5F;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 500000px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.airbnb-link-btn:hover {
    background: #e04a4f;
    transform: translateY(-2px);
}

.apartment-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    flex: 1;
}

.apartment-description {
    flex: 1;
    min-width: 250px;
    font-size: 1rem;
    color: #737373;
    line-height: 1.6;
    font-family: 'DM Sans', sans-serif;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    flex-shrink: 0;
    width: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: #737373;
}

.feature-item.feature-more {
    color: #212121;
}

.feature-item.feature-more a {
    color: #212121;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.feature-item.feature-more a:hover {
    opacity: 0.7;
}

.feature-icon {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}


/* Responsive Design */
@media (min-width: 769px) {
    .header {
        display: grid !important;
    }
    
    .mobile-header {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .header {
        padding: 0.65rem 1.25rem;
        top: 1rem;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .logo-img {
        height: 2.1rem;
    }
    
    .arrow-img {
        width: 12px;
        height: 12px;
    }
    
    .nav-btn {
        padding: 0.45rem 0.85rem;
        font-size: 0.85rem;
    }
    
    .circular-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        display: none !important;
    }
    
    .mobile-header {
        display: flex !important;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-us {
        padding: 2rem 1rem 1rem;
    }
    
    .about-us-content {
        padding: 1.5rem;
    }
    
    .airbnb-section {
        padding: 2rem 1rem 1rem;
    }
    
    .about-title {
        padding-top: 2rem;
        line-height: 1.1;
        text-align: center;
    }
    
    .about-btn {
        align-self: center;
    }
    
    .about-location {
        justify-content: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    .airbnb-title-wrapper {
        justify-content: center;
    }
    
    .airbnb-title {
        text-align: center;
    }
    
    .hero-circles {
        width: 100%;
        max-width: 100%;
    }
    
    .apartment-images-wrapper {
        flex-direction: column;
    }
    
    .apartment-gallery {
        display: none;
    }
}

@media (max-width: 480px) {
    .header {
        display: none;
    }
    
    .mobile-header {
        display: flex;
        top: 1rem;
        padding: 0.4rem 0.75rem;
    }
    
    .mobile-logo-img {
        height: 2rem;
    }
    
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-icon {
        width: 28px;
        height: 28px;
    }
    
    .mobile-menu-icon-close {
        font-size: 36px;
        width: 28px;
        height: 28px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-us {
        padding: 1.5rem 1rem 1rem;
    }
    
    .about-us-content {
        padding: 1rem;
    }
    
    .airbnb-section {
        padding: 1.5rem 1rem 1rem;
    }
    
    .rent-section {
        padding: 1.5rem 1rem 1rem;
    }
    
    .rent-container {
        padding: 1rem;
    }
    
    .video-section {
        padding: 1.5rem 1rem 1rem;
    }
    
    .video-container {
        padding: 0.5rem;
        border-radius: 1rem;
    }
    
    .footer {
        padding: 2rem 1rem 0rem 1rem;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-right {
        width: 100%;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        align-items: center;
        text-align: center;
    }
    
    .buy-section {
        padding: 1.5rem 1rem 1rem;
    }
    
    .buy-carousel-controls {
        padding: 0 1rem;
    }
    
    .about-title {
        padding-top: 2rem;
        line-height: 1.1;
        text-align: center;
    }
    
    .about-btn {
        align-self: center;
    }
    
    .about-location {
        justify-content: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    .airbnb-title-wrapper {
        justify-content: center;
    }
    
    .airbnb-title {
        text-align: center;
    }
    
    .hero-circles {
        width: 100%;
        max-width: 100%;
    }
    
    .apartment-images-wrapper {
        flex-direction: column;
    }
    
    .apartment-gallery {
        display: none;
    }
    
    .rent-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rent-container {
        padding: 1rem;
    }
    
    .rent-header {
        width: 100%;
    }
    
    .rent-title {
        padding-top: 2rem;
        font-size: 1.75rem;
        width: 100%;
        text-align: center;
    }
    
    .rent-description {
        font-size: 1rem;
        width: 100%;
    }
}

.circular-btn:hover {
    background: #0f5a47;
    transform: scale(1.05);
}

.mobile-header {
    display: none;
    position: fixed;
    top: 1.5rem;
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    z-index: 999;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 500000px;
    padding: 0.5rem 1rem;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    box-sizing: border-box;
}

.mobile-logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}


.mobile-logo-img {
    height: 2.5rem;
    width: auto;
    display: block;
}

.mobile-menu-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}


.mobile-menu-icon {
    width: 32px;
    height: 32px;
    display: block;
    filter: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-icon-close {
    position: absolute;
    color: #212121;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.mobile-menu-btn {
    position: relative;
}

.mobile-menu-btn.active .mobile-menu-icon-menu {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
    pointer-events: none;
}

.mobile-menu-btn.active .mobile-menu-icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    pointer-events: all;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease, background 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: all;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-nav {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-link {
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
    text-align: center;
}

.mobile-menu-link:hover {
    opacity: 0.7;
}

