:root {
    --primary: #D4AF37; /* Metallic Gold */
    --primary-dark: #AA8B2C;
    --dark: #070707;
    --dark-grey: #121212;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-light: #F5F5F5;
    --text-grey: #A3A3A3;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--text-light);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, .logo {
    font-family: var(--font-heading);
    font-weight: 400;
}

.subtitle {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 5%;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--text-light);
    text-transform: uppercase;
    z-index: 1001;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--primary);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary);
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.nav-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
    background-color: var(--dark);
}

/* Moving Sky Background (Looping Video Effect) */
.hero-sky-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: url('assets/sky.jpg'); /* Gambar langit yang diunggah */
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
    animation: moveClouds 50s linear infinite;
    z-index: 0;
}

@keyframes moveClouds {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Floating Apartment Object */
.hero-apartment {
    position: absolute;
    bottom: -18%;
    right: -5%;
    width: 1600px;
    z-index: 1;
    --x-trans: 0px;
    animation: buildingIntro 2.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    filter: drop-shadow(-10px -10px 50px rgba(0,0,0,0.6));
    transition: width 0.3s ease, right 0.3s ease, bottom 0.3s ease;
}

.hero-apartment img {
    width: 100%;
    display: block;
}

@keyframes buildingIntro {
    0% { transform: translate(var(--x-trans), 150px); opacity: 0; }
    100% { transform: translate(var(--x-trans), 0px); opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient to blend the sky/building into the dark theme seamlessly */
    background: linear-gradient(to bottom, rgba(7,7,7,0.3) 0%, rgba(7,7,7,0.7) 60%, var(--dark) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero h1 {
    font-size: 7rem;
    letter-spacing: 15px;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero p.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Layout Utilities */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 8rem 5%;
}

/* Facilities Section */
.facilities {
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3.5rem;
    color: var(--text-light);
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.carousel-slide {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
}

.carousel-slide.active {
    display: flex;
}

.slide-content {
    flex: 1;
    position: relative;
}

.slide-number {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -3rem;
    left: -2rem;
    z-index: -1;
}

.slide-content h3 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.15rem;
    color: var(--text-grey);
    line-height: 1.8;
}

.slide-image {
    flex: 1.3;
    padding: 1rem;
}

.slide-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-image:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.slide-image:hover img {
    transform: scale(1.03);
}

/* Fading animation */
.fade {
    animation-name: fadeAnim;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

@keyframes fadeAnim {
    from {opacity: 0; transform: translateX(30px);} 
    to {opacity: 1; transform: translateX(0);}
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
    gap: 3rem;
}

.prev, .next {
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-grey);
    transition: color 0.3s;
    user-select: none;
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    background: var(--glass-bg);
}

.prev:hover, .next:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: transparent;
}

.dots-container {
    display: flex;
    gap: 1rem;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: var(--primary);
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* About Section */
.about {
    background-color: var(--dark-grey);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateX(-10px);
    border-color: var(--primary);
}

.feature-card .icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.feature-card p {
    color: var(--text-grey);
    font-size: 1rem;
}

/* Contact Section */
.contact {
    background: url('assets/hero.png') center/cover fixed;
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(7, 7, 7, 0.85);
}

.contact .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.contact-glass-card {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    max-width: 1300px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-info-panel {
    padding: 5rem;
    text-align: left;
}

.contact-info-panel h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.contact-info-panel > p {
    color: var(--text-grey);
    margin-bottom: 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
    width: 28px;
    height: 28px;
}

.info-item h5 {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(90%) contrast(80%); /* Elegantly adapts Google Maps to dark theme */
}

/* Footer */
footer {
    background-color: #030303;
    padding: 4rem 5%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--text-grey);
}

footer p {
    color: var(--text-grey);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Offers Section - Magazine Style */
.offers {
    background-color: var(--dark);
    padding: 10rem 0;
    overflow: hidden;
}

.offers-magazine {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.offer-main {
    position: relative;
    display: flex;
    flex-direction: column;
}

.offer-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.offer-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) grayscale(0.3);
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.offer-main:hover .offer-image-wrapper img {
    transform: scale(1.05);
    filter: brightness(0.8) grayscale(0);
}

.offer-content {
    background: var(--dark-grey);
    padding: 4rem;
    margin-top: -100px;
    margin-left: 10%;
    width: 90%;
    z-index: 2;
    border: 1px solid var(--glass-border);
    position: relative;
}

.offer-content h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.offer-content p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.link-elegant {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.link-elegant:hover {
    color: var(--primary);
    padding-left: 10px;
}

.offer-side {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.offer-card-elegant {
    padding: 3rem;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: all 0.4s ease;
}

.offer-card-elegant:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.offer-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.offer-card-elegant h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.offer-card-elegant p {
    color: var(--text-grey);
    font-size: 1rem;
}

/* Testimonials Section - Typography Driven */
.testimonials {
    background-color: var(--dark-grey);
    padding: 10rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 12rem;
    color: var(--primary);
    opacity: 0.05;
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.testi-slider {
    position: relative;
    min-height: 300px;
}

.testi-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(20px);
}

.testi-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.testi-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.author-name {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

.author-title {
    font-size: 0.85rem;
    text-transform: lowercase;
    color: var(--text-grey);
    letter-spacing: 1px;
}

.testi-progress {
    width: 200px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 4rem auto 2rem;
    position: relative;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--primary);
    transition: width 0.8s ease;
}

.testi-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.testi-btn {
    background: transparent;
    border: none;
    color: var(--text-grey);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.testi-btn:hover {
    color: var(--primary);
}





/* =============================================
   RESPONSIVE - Complete Breakpoint System
   ============================================= */

/* Large Screens / Small Desktops */
@media (max-width: 1200px) {
    .about-grid {
        gap: 3rem;
    }
    .hero-apartment {
        width: 1300px;
        right: -10%;
        bottom: -15%;
    }
    .offer-content h3 {
        font-size: 2.4rem;
    }
    .offer-image-wrapper {
        height: 500px;
    }
}

/* Tablets Landscape */
@media (max-width: 992px) {
    .container {
        padding: 6rem 5%;
    }

    /* Hero */
    .hero {
        justify-content: center;
        text-align: center;
        padding: 0 5%;
    }
    .hero h1 {
        font-size: 4rem;
        letter-spacing: 8px;
    }
    .hero p.hero-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    .hero-apartment {
        width: 1000px;
        right: -15%;
        bottom: -12%;
    }
    
    /* Facilities Carousel */
    .carousel-slide {
        flex-direction: column;
        gap: 3rem;
    }
    .slide-content {
        text-align: center;
    }
    .slide-number {
        left: 50%;
        transform: translateX(-50%);
        top: -4rem;
    }
    .slide-content h3 {
        font-size: 2.4rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
    
    /* Offers */
    .offers {
        padding: 6rem 0;
    }
    .offers-magazine {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .offer-content {
        margin-left: 0;
        width: 100%;
        padding: 3rem 2rem;
        margin-top: -80px;
    }
    .offer-content h3 {
        font-size: 2.2rem;
    }
    .offer-image-wrapper {
        height: 450px;
    }
    .offer-card-elegant {
        padding: 2.5rem;
    }
    .offer-card-elegant h4 {
        font-size: 1.5rem;
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .feature-card:hover {
        transform: translateY(-10px);
    }
    
    /* Testimonials */
    .testimonials {
        padding: 6rem 0;
    }
    .testi-text {
        font-size: 1.7rem;
    }
    .testi-slider {
        min-height: 260px;
    }
    .quote-mark {
        font-size: 10rem;
        top: -4rem;
    }
    
    /* Contact */
    .contact-glass-card {
        padding: 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-panel {
        padding: 3rem 2rem;
        text-align: center;
    }
    .contact-info-panel h2 {
        font-size: 2.8rem;
    }
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-map {
        min-height: 350px;
    }
}

/* Tablets Portrait / Large Phones */
@media (max-width: 768px) {
    .container {
        padding: 5rem 6%;
    }
    
    /* Navbar */
    .desktop-only {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(7, 7, 7, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        margin: 1.5rem 0;
    }
    .nav-links a {
        font-size: 1.1rem;
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Hero */
    .hero h1 {
        font-size: 3rem;
        letter-spacing: 6px;
    }
    .hero p.hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }
    .hero-apartment {
        width: 600px !important;
        left: 50% !important;
        right: auto !important;
        --x-trans: -50% !important;
        bottom: -5% !important;
    }
    .btn-primary {
        padding: 0.85rem 2rem;
        font-size: 0.8rem;
    }
    
    /* Facilities */
    .section-header {
        margin-bottom: 3rem;
    }
    .section-title, .about-text h2, .contact-info-panel h2 {
        font-size: 2.2rem;
    }
    .slide-content h3 {
        font-size: 2rem;
    }
    .slide-image img {
        height: 300px;
    }
    .carousel-controls {
        margin-top: 3rem;
        gap: 2rem;
    }
    
    /* Offers */
    .offer-image-wrapper {
        height: 350px;
    }
    .offer-content {
        margin-top: -60px;
        padding: 2.5rem 2rem;
    }
    .offer-content h3 {
        font-size: 1.8rem;
    }
    .offer-content p {
        font-size: 1rem;
    }
    .offer-card-elegant {
        padding: 2rem;
    }
    .offer-card-elegant h4 {
        font-size: 1.3rem;
    }
    .offer-card-elegant p {
        font-size: 0.9rem;
    }
    
    /* About */
    .about-text h2 {
        font-size: 2.2rem;
    }
    .about-text p {
        font-size: 1rem;
    }
    .feature-card {
        padding: 2rem;
    }
    .feature-card h4 {
        font-size: 1.3rem;
    }
    
    /* Testimonials */
    .testi-text {
        font-size: 1.4rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    .testi-slider {
        min-height: 240px;
    }
    .quote-mark {
        font-size: 8rem;
        top: -3rem;
    }
    .testi-progress {
        margin: 3rem auto 1.5rem;
    }
    .author-name {
        font-size: 1rem;
    }
    
    /* Contact */
    .contact {
        padding: 5rem 0;
    }
    .contact-info-panel {
        padding: 2.5rem 1.5rem;
    }
    .contact-info-panel > p {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    .info-list {
        margin-bottom: 2.5rem;
    }
    .info-item h5 {
        font-size: 1.1rem;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Phones */
@media (max-width: 480px) {
    .container {
        padding: 4rem 5%;
    }
    
    /* Navbar */
    .navbar {
        padding: 1.2rem 5%;
    }
    .navbar.scrolled {
        padding: 0.8rem 5%;
    }
    .logo {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
    .nav-links a {
        font-size: 1rem;
    }
    .nav-links li {
        margin: 1.2rem 0;
    }
    
    /* Hero */
    .hero {
        padding: 0 6%;
    }
    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 4px;
        margin-bottom: 0.8rem;
    }
    .hero p.hero-subtitle {
        font-size: 0.78rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }
    .hero-apartment {
        width: 750px !important;
        left: 50% !important;
        right: auto !important;
        --x-trans: -50% !important;
        bottom: 8% !important;
    }
    .btn-primary {
        padding: 0.75rem 1.6rem;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    /* Facilities */
    .section-title {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
    .slide-content h3 {
        font-size: 1.7rem;
    }
    .slide-content p {
        font-size: 0.95rem;
    }
    .slide-number {
        font-size: 4rem;
    }
    .slide-image img {
        height: 240px;
    }
    .carousel-controls {
        margin-top: 2.5rem;
        gap: 1.5rem;
    }
    .prev, .next {
        padding: 0.7rem 1rem;
        font-size: 1.2rem;
    }
    
    /* Offers */
    .offers {
        padding: 4rem 0;
    }
    .offer-image-wrapper {
        height: 260px;
    }
    .offer-content {
        margin-top: -50px;
        padding: 2rem 1.5rem;
    }
    .offer-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .offer-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .link-elegant {
        font-size: 0.8rem;
    }
    .offer-side {
        gap: 2rem;
    }
    .offer-card-elegant {
        padding: 1.8rem;
    }
    .offer-card-elegant h4 {
        font-size: 1.15rem;
    }
    .offer-card-elegant p {
        font-size: 0.85rem;
    }
    .offer-number {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    /* About */
    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    .about-text p {
        font-size: 0.95rem;
    }
    .about-features {
        gap: 1.5rem;
    }
    .feature-card {
        padding: 1.8rem;
    }
    .feature-card h4 {
        font-size: 1.15rem;
    }
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 4rem 0;
    }
    .testi-text {
        font-size: 1.15rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    .testi-slider {
        min-height: 220px;
    }
    .quote-mark {
        font-size: 6rem;
        top: -2rem;
    }
    .author-name {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    .author-title {
        font-size: 0.75rem;
    }
    .testi-progress {
        width: 140px;
        margin: 2.5rem auto 1.5rem;
    }
    .testi-controls {
        gap: 1.5rem;
    }
    .testi-btn {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    /* Contact */
    .contact {
        padding: 4rem 0;
    }
    .contact-glass-card {
        border-radius: 16px;
        margin: 0 2%;
    }
    .contact-info-panel {
        padding: 2rem 1.5rem;
    }
    .contact-info-panel h2 {
        font-size: 1.8rem;
    }
    .contact-info-panel > p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    .info-list {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    .info-item h5 {
        font-size: 1rem;
    }
    .info-item p {
        font-size: 0.9rem;
    }
    .contact-icon {
        width: 22px;
        height: 22px;
    }
    .contact-map {
        min-height: 280px;
    }
    
    /* Footer */
    footer {
        padding: 3rem 5%;
    }
    .footer-logo {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
    footer p {
        font-size: 0.75rem;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    .hero p.hero-subtitle {
        font-size: 0.7rem;
    }
    .hero-apartment {
        width: 650px !important;
        left: 50% !important;
        right: auto !important;
        --x-trans: -50% !important;
        bottom: 5% !important;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .slide-content h3 {
        font-size: 1.4rem;
    }
    .slide-image img {
        height: 200px;
    }
    .offer-image-wrapper {
        height: 220px;
    }
    .offer-content h3 {
        font-size: 1.3rem;
    }
    .about-text h2 {
        font-size: 1.6rem;
    }
    .testi-text {
        font-size: 1.05rem;
    }
    .testi-slider {
        min-height: 200px;
    }
    .contact-info-panel h2 {
        font-size: 1.6rem;
    }
}


