/* ===== CSS Reset & Variables ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #3D4564;
    --dark-navy: #2B3648;
    --gold: #C49A6C;
    --gold-hover: #A87C50;
    --white: #FFFFFF;
    --light-bg: #F8F7F5;
    --off-white: #FAFAF8;
    --cream: #F5F3F0;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --border-light: #E5E5E5;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.20);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* ===== Container ===== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Language Switcher ===== */
.language-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 4px;
    border-radius: 50px;
    margin-left: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.lang-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-btn.active {
    background: var(--gold);
    color: var(--white);
}

/* ===== Navigation ===== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    position: fixed;
    background: rgba(43, 54, 72, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.7)) drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
}

.nav-menu a:not(.btn-primary-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:not(.btn-primary-nav):hover::after {
    width: 100%;
}

.nav-menu a:not(.btn-primary-nav):hover {
    color: var(--gold);
}

.btn-primary-nav {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 2px 6px rgba(196, 154, 108, 0.4);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.btn-primary-nav:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    box-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-navy);
}

/* Hero CTA buttons get enhanced shadows */
.hero-cta .btn {
    box-shadow: 0 6px 25px rgba(0,0,0,0.4), 0 3px 10px rgba(0,0,0,0.3);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-cta .btn:hover {
    box-shadow: 0 8px 35px rgba(0,0,0,0.5), 0 4px 15px rgba(0,0,0,0.35);
}

.hero-cta .btn-primary {
    box-shadow: 0 6px 25px rgba(196, 154, 108, 0.4), 0 3px 10px rgba(0,0,0,0.3);
}

.hero-cta .btn-primary:hover {
    box-shadow: 0 8px 35px rgba(196, 154, 108, 0.5), 0 4px 15px rgba(0,0,0,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.btn-outline:hover {
    background: var(--primary-navy);
    color: var(--white);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 60px; /* Compensate for navbar */
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 4px 8px rgba(0,0,0,0.7), 0 8px 16px rgba(0,0,0,0.6), 0 12px 32px rgba(0,0,0,0.5);
    opacity: 0;
    animation: fadeUp 1s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    margin-bottom: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 4px 8px rgba(0,0,0,0.7), 0 8px 16px rgba(0,0,0,0.6);
    opacity: 0;
    animation: fadeUp 1s ease-out 0.8s forwards;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 3.5rem;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s ease-out 1.1s forwards;
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 400;
    font-family: var(--font-serif);
    color: var(--white);
    margin-bottom: 0.25rem;
}

.hero-stat .stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s ease-out 1.4s forwards;
}

/* Enhanced Buttons for Hero */
.hero-cta .btn {
    padding: 16px 40px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0; /* Sharp corners for ultra-luxury feel */
    transition: all 0.4s ease;
}

.hero-cta .btn-primary {
    background: var(--white);
    color: var(--dark-navy);
    border: 1px solid var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-cta .btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-cta .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.hero-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--dark-navy);
    border-color: var(--white);
    transform: translateY(-3px);
}

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

.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.slider-prev,
.slider-next {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(196, 154, 108, 0.4);
    border-color: var(--gold);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 25px;
}

.section-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== About Section ===== */
.about {
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16 / 9;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: var(--white);
}

.overlay-stat h3 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.overlay-stat p {
    font-size: 1.1rem;
    margin: 0;
}

.about-media {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--primary-navy);
}

.about-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Residences/Buildings Section ===== */
.residences {
    background: var(--white);
}

.buildings-showcase {
    display: grid;
    gap: 50px;
}

.building-card {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0;
    align-items: center;
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.building-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.building-card:nth-child(even) {
    direction: rtl;
}

.building-card:nth-child(even) > * {
    direction: ltr;
}

.building-image {
    height: 450px;
    overflow: hidden;
}

/* More vertical space for Buildings 1&2 image */
.building-card:first-child .building-image {
    height: 550px;
}

.building-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.building-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.building-card:hover .building-image img {
    transform: scale(1.08);
}

.building-info {
    padding: 40px;
}

.building-info h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.building-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.building-features {
    list-style: none;
}

.building-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.building-features li:last-child {
    border-bottom: none;
}

.building-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== Gallery Section ===== */
.gallery {
    background: var(--off-white);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid var(--border-light);
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-text-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    text-align: center;
    transition: var(--transition-slow);
}

.gallery-item:hover .gallery-text-content {
    transform: scale(1.1);
}

.gallery-text-content p {
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

/* Gallery Item Cycling Images */
.gallery-item-cycling {
    position: relative;
    perspective: 1000px; /* Add 3D perspective for flip effect */
}

.gallery-item-cycling .cycling-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: rotateY(90deg) scale(0.8);
    transition: opacity 1.5s ease-in-out, transform 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backface-visibility: hidden;
}

.gallery-item-cycling .cycling-image.active {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
    position: relative;
}

.gallery-item-cycling:hover .cycling-image {
    transform: rotateY(0deg) scale(1.1);
}

.gallery-item-cycling:hover .cycling-image.active {
    transform: rotateY(0deg) scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 25px;
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    margin: 0;
}

/* ===== Amenities Section ===== */
.amenities {
    background: var(--white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.amenity-card {
    background: var(--light-bg);
    padding: 35px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.amenity-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--gold);
}

.amenity-card.featured {
    grid-column: span 1;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 0;
}

.amenity-card.featured .amenity-content {
    padding: 35px 30px;
}

.amenity-image {
    height: 200px;
    overflow: hidden;
    margin-bottom: 0;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.amenity-card:hover .amenity-image img {
    transform: scale(1.1);
}

.amenity-content {
    text-align: center;
}

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.amenity-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.amenity-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== Location Section ===== */
.location {
    background: var(--light-bg);
}

.location-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.location-content .lead {
    margin-bottom: 40px;
}

.location-address {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 600px;
}

.location-address h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.location-address p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin: 0;
}

.location-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    margin-bottom: 50px;
}

.location-image img {
    width: 100%;
    height: auto;
    display: block;
}

.location-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 25px;
    color: var(--white);
    text-align: center;
}

.location-image-caption p {
    font-size: 1.1rem;
    margin: 0;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
}

.location-feature {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.location-feature:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.location-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-navy);
}

.location-feature p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.contact-intro {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition);
}

a:has(.contact-item) + .contact-map-container {
    margin-top: 0;
}

a:has(.contact-item) .contact-item {
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

a:has(.contact-item) + .contact-map-container {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.contact-item:hover {
    background: var(--cream);
    transform: translateX(5px);
}

a:has(.contact-item) {
    display: block;
    cursor: pointer;
}

a:has(.contact-item) .contact-item:hover {
    background: var(--gold);
}

a:has(.contact-item) .contact-item:hover .contact-details h4,
a:has(.contact-item) .contact-item:hover .contact-details p {
    color: var(--white);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    color: var(--text-gray);
    margin: 0;
}

.contact-details a {
    color: var(--primary-navy);
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--gold);
}

.contact-cta {
    margin-top: 30px;
}

.contact-map-container {
    position: relative;
    margin-top: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

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

.contact-map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 350px;
    transition: var(--transition);
}

.contact-map-overlay:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.contact-map-overlay .contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-map-overlay .contact-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-map-overlay .contact-details p {
    font-size: 1rem;
    color: var(--primary-navy);
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: var(--light-bg);
    padding: 45px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.form-subtitle {
    color: var(--text-gray);
    margin-bottom: 35px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 15px;
    text-align: center;
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 55px;
    margin-bottom: 25px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-address p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer h4 {
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: var(--gold);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 14px;
}

.footer ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer ul a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-lang-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-lang-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-lang-btn:hover {
    background: rgba(196, 154, 108, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.footer-lang-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top .contact-text {
    display: none;
}

.scroll-to-top .scroll-arrow {
    display: block;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--gold-hover);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(196, 154, 108, 0.4);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .about-content,
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .building-card {
        grid-template-columns: 1fr;
    }
    
    .building-card:nth-child(even) {
        direction: ltr;
    }
    
    .building-image {
        height: 350px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-right {
        position: fixed;
        top: 80px;
        right: -100%;
        width: auto;
        max-width: 280px;
        height: calc(100vh - 80px);
        background: var(--dark-navy);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        align-items: flex-start;
        gap: 1.5rem;
        overflow-y: auto;
    }
    
    .nav-right.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: auto;
    }
    
    .nav-menu a {
        text-shadow: none;
    }
    
    .nav-menu a:not(.btn-primary-nav)::after {
        display: none;
    }
    
    .btn-primary-nav {
        width: auto;
        white-space: nowrap;
    }
    
    .language-switcher {
        margin-left: 0;
        margin-top: 20px;
        padding: 6px;
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        width: auto;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-stat .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .slider-controls {
        bottom: 20px;
        right: 20px;
    }
    
    .slider-prev,
    .slider-next {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        padding: 0 15px;
    }
    
    .location-address {
        padding: 25px 20px;
    }
    
    .location-image {
        margin-bottom: 40px;
    }
    
    .location-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-map-overlay {
        position: static;
        margin-top: 15px;
        max-width: 100%;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .language-switcher {
        top: 15px;
        right: 15px;
        padding: 6px;
        gap: 6px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat .stat-number {
        font-size: 2rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .building-image {
        height: 250px;
    }
    
    .building-info {
        padding: 25px;
    }
    
    .scroll-to-top {
        width: 50px;
        height: 50px;
        padding: 0;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
        border-radius: 50%;
    }
    
    .scroll-to-top .scroll-arrow {
        display: none;
    }
    
    .scroll-to-top .contact-text {
        display: block;
    }
}

/* ===== Print Styles ===== */
@media print {
    .navbar,
    .language-switcher,
    .slider-controls,
    .slider-dots,
    .scroll-to-top,
    .footer {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: 400px;
    }
}





/* ===== Central Video Luxury Layout ===== */
.about-luxury-central {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.about-header-central {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Large Central Video */
.video-central-container {
    width: 100%;
    max-width: 1600px; /* Very wide on desktop */
    margin: 80px auto 0; /* Margin top instead of bottom */
    padding: 0 40px; /* Some padding on large screens */
}

.video-wrapper-central {
    width: 100%;
    height: 70vh; /* Large vertical presence */
    min-height: 500px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2); /* Floating effect */
}

.video-wrapper-central iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Below Video */
.about-content-central {
    max-width: 1000px;
    margin: 0 auto;
}

.lead-central {
    font-size: 1.5rem;
    text-align: center;
    font-family: var(--font-serif);
    color: var(--primary-navy);
    margin-bottom: 60px;
    line-height: 1.6;
}

.luxury-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: center; /* Centered text for symmetrical look */
}

.luxury-feature-card h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.luxury-feature-card h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 10px auto 0;
    opacity: 0.5;
}

.luxury-feature-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
}

/* Responsive: Mobile Edge-to-Edge Video */
@media (max-width: 768px) {
    .about-luxury-central {
        padding: 60px 0;
    }

    .video-central-container {
        padding: 0; /* Remove padding to go edge-to-edge */
        width: 100%;
        max-width: 100%;
        margin-bottom: 50px;
    }

    .video-wrapper-central {
        height: auto;
        aspect-ratio: 16 / 9; /* Standard video ratio for mobile */
        border-radius: 0;
        box-shadow: none;
    }

    .luxury-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lead-central {
        font-size: 1.2rem;
        text-align: left; /* Better readability on mobile */
        margin-bottom: 40px;
    }
    
    .luxury-feature-card {
        text-align: left;
    }
    
    .luxury-feature-card h3 {
        display: block;
        margin-bottom: 15px;
    }
    
    .luxury-feature-card h3::after {
        margin: 10px 0 0; /* Left align underline */
    }
}
