/* CSS Variables - Design System */
:root {
    /* Colors */
    --primary: hsl(270, 91%, 65%);
    --primary-glow: hsl(270, 100%, 75%);
    --accent: hsl(45, 93%, 77%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(240, 10%, 3.9%);
    --muted: hsl(270, 4%, 96%);
    --muted-foreground: hsl(270, 5%, 45%);
    --border: hsl(270, 6%, 90%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(270, 91%, 65%), hsl(280, 100%, 70%));
    --gradient-hero: linear-gradient(135deg, hsl(270, 91%, 65%) 0%, hsl(280, 100%, 70%) 50%, hsl(290, 100%, 75%) 100%);
    --gradient-subtle: linear-gradient(180deg, hsl(270, 3%, 99%), hsl(270, 3%, 96%));
    
    /* Shadows */
    --shadow-luxury: 0 25px 50px -12px hsl(270, 91%, 65%, 0.25);
    --shadow-elegant: 0 10px 25px -5px hsl(270, 91%, 65%, 0.1);
    --shadow-soft: 0 4px 6px -1px hsl(270, 5%, 65%, 0.1);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --container-padding: 1.5rem;
    --section-padding: 6rem 0;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    font-feature-settings: "rlig" 1, "calt" 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-elegant);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-luxury);
}

.btn-white {
    background: white;
    color: var(--primary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-luxury);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
    background: #ffffff;
}

.nav-container.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-elegant);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.nav-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 1.5rem;
    height: 0.125rem;
    background: var(--foreground);
    display: block;
    position: relative;
    transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background: var(--foreground);
    transition: var(--transition-smooth);
}

.hamburger::before {
    top: -0.5rem;
}

.hamburger::after {
    top: 0.5rem;
}

.mobile-menu {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-luxury);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 2rem var(--container-padding);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    font-size: 1.125rem;
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-btn {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('src/assets/hero-building.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(135deg, 
        hsla(270, 91%, 65%, 0.8) 0%, 
        hsla(270, 91%, 65%, 0.6) 50%, 
        hsla(270, 100%, 75%, 0.4) 100%);*/
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.accent-text {
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 2rem;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    max-width: 100%;
}

.about-text {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: justify;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, hsl(270deg 10.58% 66.7%), hsl(270deg 48.96% 66.34%));
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.image-container img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-elegant);
}

.floating-card.left {
    top: -1.5rem;
    left: -1.5rem;
}

.floating-card.right {
    bottom: -1.5rem;
    right: -1.5rem;
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Amenities Section */
.amenities-section {
    padding: var(--section-padding);
    background: var(--gradient-subtle);
}

.amenities-hero {
    margin-bottom: 4rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.amenities-hero img {
    width: 100%;
    height: clamp(16rem, 30vw, 24rem);
    object-fit: cover;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.amenity-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
}

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.75rem;
    background: #47384a;
    border-radius: 0.75rem;
    transition: var(--transition-bounce);
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.1);
}

.amenity-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.amenity-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
}

.amenities-cta {
    text-align: center;
}

.amenities-cta p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Specifications Section */
.specifications-section {
    padding: var(--section-padding);
    padding-bottom: 0px;
    background: white;
}

.subsection-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.unit-types {
    margin-bottom: 4rem;
}

.unit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.unit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.unit-type {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.unit-size {
    background: var(--muted);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.unit-details {
    margin-bottom: 1rem;
}

.detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.detail span:first-child {
    color: var(--muted-foreground);
}

.detail span:last-child {
    font-weight: 500;
}

.unit-features {
    text-align: left;
}

.feature {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.spec-tabs {
    margin-bottom: 4rem;
}

.tab-nav {
    display: flex;
    background: var(--muted);
    border-radius: 0.75rem;
    padding: 0.25rem;
    margin-bottom: 2rem;
    gap: 0.25rem;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tab-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.spec-card {
    background: var(--gradient-subtle);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.spec-card h4 {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.spec-card p {
    color: var(--primary);
    font-weight: 600;
}

.premium-cta {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--gradient-primary);
    color: white;
}

.premium-cta h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.premium-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Section */
.gallery-section {
    padding: var(--section-padding);
    background: var(--gradient-subtle);
}

.virtual-tours {
    margin-bottom: 4rem;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tour-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
}

.tour-thumbnail {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.tour-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tour-card:hover .tour-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.tour-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.play-button {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: var(--transition-bounce);
}

.tour-card:hover .play-button {
    transform: scale(1.1);
}

.tour-duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.tour-card h4 {
    padding: 1rem;
    font-family: var(--font-serif);
    font-weight: 600;
}

.photo-gallery {
    margin-bottom: 4rem;
}

.gallery-tabs {
    display: flex;
    background: white;
    border-radius: 0.75rem;
    padding: 0.25rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.gallery-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-tab.active {
    background: var(--primary);
    color: white;
}

.gallery-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-grid.active {
    display: grid;
}

.gallery-item {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
}

.gallery-item img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: var(--transition-smooth);
    position: relative;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.view-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.gallery-info {
    padding: 1rem;
}

.gallery-info h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-info p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.gallery-download {
    text-align: center;
}

.download-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-elegant);
    max-width: 24rem;
    margin: 0 auto;
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.download-card h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.download-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Floor Plans Section */
.floor-plans-section {
    padding: var(--section-padding);
    background: white;
}

.building-overview {
    margin-bottom: 4rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.floor-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floor-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 0.75rem;
    background: var(--gradient-subtle);
}

.floor-number {
    font-weight: 500;
}

.floor-type {
    color: var(--muted-foreground);
}

.building-diagram {
    position: relative;
}

.diagram-container {
    aspect-ratio: 1;
    background: var(--gradient-subtle);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.diagram-icon {
    font-size: 6rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.diagram-container h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.diagram-container p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.floorplan-tabs {
    margin-bottom: 4rem;
}

.floorplan-content {
    display: none;
}

.floorplan-content.active {
    display: block;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.plan-card:hover {
    box-shadow: var(--shadow-elegant);
}

.plan-image {
    position: relative;
    height: 16rem;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.availability-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.expand-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.expand-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.plan-info {
    padding: 1.5rem;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.plan-header h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.plan-price {
    color: var(--primary);
    font-weight: 600;
}

.plan-size {
    background: var(--muted);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.plan-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.plan-features {
    margin-bottom: 1.5rem;
}

.plan-features .feature {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.plan-buttons {
    display: flex;
    gap: 0.75rem;
}

.plan-buttons .btn-outline {
    flex: 1;
    color: var(--primary);
    border-color: var(--primary);
    background: transparent;
}

.plan-buttons .btn-primary {
    flex: 1;
}

.interactive-cta {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--gradient-primary);
    color: white;
}

.interactive-cta h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.interactive-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: var(--gradient-subtle);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.form-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-elegant);
}

.form-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1.125rem;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-section h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.info-card:hover {
    box-shadow: var(--shadow-elegant);
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.info-value {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.sales-team h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-member {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
}

.member-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.member-header h4 {
    font-family: var(--font-serif);
    font-weight: 600;
}

.member-title {
    color: var(--primary);
    font-size: 0.875rem;
}

.specialty-badge {
    background: var(--muted);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    background: transparent;
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn:hover {
    border-color: var(--primary);
    background: rgba(139, 69, 19, 0.05);
}

.map-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}


.map-container h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.map-placeholder {
    aspect-ratio: 16/9;
    background: var(--gradient-subtle);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
}

.map-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.hours-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-elegant);
    height: fit-content;
}

.hours-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
}

.hours-item span:first-child {
    color: var(--muted-foreground);
}

.hours-item span:last-child {
    font-weight: 500;
}

.status-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: #ffffff;
    color: #000000;
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-description {
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--primary);
}

.footer-links h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: white;
}

.footer-contact h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-icon {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.footer-contact-item p {
    color: #000000;
    font-weight: 500;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-newsletter h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.newsletter-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.newsletter-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.newsletter-disclaimer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}



.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: white;
}

.footer-developer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-developer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -2rem;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover {
    opacity: 0.7;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 0.75rem;
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem 1rem;
    border-radius: 0 0 0.75rem 0.75rem;
}

#lightbox-title {
    color: white;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Toast */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1500;
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-luxury);
    padding: 1rem 1.5rem;
    max-width: 20rem;
    transform: translateX(100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-message {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
        --container-padding: 1rem;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .unit-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .tab-nav {
        flex-direction: column;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .plan-buttons {
        flex-direction: column;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px; /* space between stats */
    margin-top: 40px;
    flex-wrap: wrap; /* responsive for mobile */
}

.stat {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.85;
}

/* Footer General */
.footer a {
    color: #000000;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #9b70a6;
}

/* Columns */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid #000000;
}

.footer-column {
    flex: 1 1 250px;
}

/* Brand */
.footer-brand .brand-logo {
    max-width: 150px;
    margin-bottom: 15px;
    /*background: white;*/
}

.footer-brand .brand-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.social-links a {
    font-size: 20px;
    margin-right: 10px;
}

/* Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

/* Contact */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.contact-icon {
    font-size: 20px;
    margin-right: 10px;
}

/* Map */
.footer-map h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.map-container iframe {
    width: 100%;
    min-width: 250px;
    height: 200px;
    border: 0;
    border-radius: 8px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #000000;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        
    }
    .footer-column {
        text-align: justify;
    }
    .footer-contact-item {
        justify-content: start;
    }
}