:root {
    --primary: #1a3a2f;
    --primary-light: #2c5545;
    --accent-gold: #b8956c;
    --accent-cream: #f8f6f3;
    --text-dark: #1a1a1a;
    --text-muted: #6b6b6b;
    --white: #ffffff;
    --bg-light: #fdfcfb;
    --border-light: rgba(0,0,0,0.05);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.8;
    font-weight: 300;
    font-size: 15px;
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

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

.intro-image img,
.split-image img,
.gallery-item img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-image:hover img,
.split-image:hover img,
.gallery-item:hover img {
    transform: scale(1.03);
}

.intro-image,
.split-image {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 300;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    color: var(--text-muted);
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ HEADER ============ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 75px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img:hover {
    opacity: 0.8;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--primary);
    text-transform: uppercase;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-top: 3px;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
}

nav a {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

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

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

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ============ HERO WITH SLIDER ============ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slides {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
}

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

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    padding: 0;
}

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

.slider-dot.active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.hero h1 {
    margin-bottom: 2rem;
    text-shadow: 0 4px 60px rgba(0,0,0,0.4);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

/* Page Hero (smaller for inner pages) */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    background-size: cover;
    background-position: center;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.btn {
    padding: 16px 40px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 0;
    border: 1px solid var(--white);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', sans-serif;
    background: transparent;
    color: var(--white);
    min-width: 180px;
    text-align: center;
    display: inline-block;
}

.btn:hover {
    background: var(--white);
    color: var(--text-dark);
}

.btn-filled {
    background: var(--white);
    color: var(--text-dark);
}

.btn-filled:hover {
    background: transparent;
    color: var(--white);
}

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

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

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.scroll-arrow svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    stroke-width: 2;
    fill: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

/* ============ SECTIONS ============ */
.section {
    padding: 80px 0;
}

.section.alt {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.section-tag {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    display: inline-block;
    position: relative;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
}

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

.section-header .section-tag::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============ INTRO SECTION ============ */
.intro {
    padding: 140px 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.intro-content {
    max-width: 520px;
}

.intro-content h2 {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.intro-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.intro-image img {
    width: 100%;
    height: auto;
}

/* ============ PILLARS ============ */
.pillars {
    padding: 60px 0;
    background: var(--bg-light);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.pillar {
    text-align: center;
    padding: 1.25rem 0.75rem;
}

.pillar-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 1rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.pillar:hover .pillar-icon {
    background: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(44,85,69,0.2);
}

.pillar-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--primary);
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.3s ease;
}

.pillar:hover .pillar-icon svg {
    stroke: var(--white);
}

.pillar h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.pillar span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

/* ============ SPLIT SECTIONS ============ */
.split-section {
    padding: 80px 0;
}

.split-section.alt {
    background: var(--bg-light);
}

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

.split-grid.reverse {
    direction: rtl;
}

.split-grid.reverse > * {
    direction: ltr;
}

.split-content {
    max-width: 480px;
}

.split-content h2 {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.split-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.split-image img {
    width: 100%;
    height: auto;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.5rem;
}

.pill {
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 8px;
}

.feature-card h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.feature-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* ============ APARTMENTS GRID ============ */
.apartments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.apartment-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.apartment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.apartment-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.apartment-card-content {
    padding: 1.5rem;
}

.apartment-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.apartment-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.apartment-specs span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.apartment-specs svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
}

.apartment-card .btn {
    width: 100%;
    padding: 12px;
    font-size: 0.85rem;
}

/* ============ AMENITIES GRID ============ */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.amenity-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    stroke-width: 1.5;
    fill: none;
}

.amenity-card h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.amenity-card p {
    font-size: 0.85rem;
    margin: 0;
}

/* ============ NEARBY PLACES ============ */
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.nearby-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nearby-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.nearby-card .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--bg-light);
}

.nearby-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

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

.nearby-card img.contain-image {
    object-fit: contain;
    background: #fff;
    padding: 20px;
}

.nearby-card-content {
    padding: 1.5rem;
}

.nearby-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.nearby-card .distance {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.nearby-card p {
    font-size: 0.88rem;
    margin: 0;
}

/* ============ GALLERY ============ */
.gallery {
    padding: 80px 0;
    background: var(--bg-light);
}

.gallery-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.gallery-header h2 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

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

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 8px;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* ============ VIDEO SECTION ============ */
.video-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.video-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.video-header h2 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============ VIRTUAL TOUR ============ */
.virtual-tour {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}

.tour-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.tour-content .section-tag {
    color: var(--accent-gold);
}

.tour-content h2 {
    color: var(--white);
    margin-bottom: 1.25rem;
}

.tour-content p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

.tour-frame {
    position: relative;
    padding-bottom: 60%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.tour-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.tour-note {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
}

.tour-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 28px;
    background: var(--accent-gold);
    color: var(--text-dark);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tour-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* ============ LOCATION CARDS ============ */
.location-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.location-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.location-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.location-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ============ MAP SECTION ============ */
.map-section {
    padding: 0;
    background: var(--bg-light);
}

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

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============ CONTACT ============ */
.contact {
    padding: 80px 0;
    background: var(--white);
}

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

.contact-form h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form > p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.92rem;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44,85,69,0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    padding: 14px 36px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-submit:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44,85,69,0.3);
}

.contact-info {
    padding-top: 2rem;
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.contact-info strong {
    color: var(--text-dark);
}

/* ============ BROCHURE DOWNLOAD ============ */
.brochure-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e3d30 100%);
    color: var(--white);
}

.brochure-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.brochure-text h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.brochure-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.brochure-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.brochure-form input {
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    min-width: 250px;
    font-family: 'Montserrat', sans-serif;
}

.brochure-form button {
    padding: 14px 28px;
    background: var(--accent-gold);
    color: var(--text-dark);
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brochure-form button:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.brochure-form button svg {
    width: 18px;
    height: 18px;
}

/* ============ WHATSAPP FLOATING BUTTON ============ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ============ UNITS REMAINING BANNER ============ */
.units-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 16px 0;
    text-align: center;
}

.units-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.units-badge {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.units-banner p {
    color: var(--white);
    font-size: 0.95rem;
    margin: 0;
}

/* ============ LIGHTBOX ============ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 20px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

/* ============ FOOTER ============ */
footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 1.5rem 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

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

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.1em;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    color: var(--accent-gold);
}

.footer-links {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

footer a {
    color: rgba(255,255,255,0.7);
    transition: all 0.4s ease;
    position: relative;
}

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

/* ============ COOKIE BANNER ============ */

/* ============ VIDEO DIVIDER ============ */

/* ============ UNITS TABLE ============ */
.units-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.units-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.9rem;
}

.units-table thead {
    background: var(--primary);
    color: white;
}

.units-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.units-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.units-table tbody tr:hover {
    background: var(--bg-light);
}

.units-table tbody tr:last-child td {
    border-bottom: none;
}

.status {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.status.available {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
}

.status.reserved {
    background: rgba(255, 152, 0, 0.1);
    color: #e65100;
}

.status.sold {
    background: rgba(211, 47, 47, 0.1);
    color: #c62828;
}

.unit-type {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.unit-type.bed-2 {
    background: linear-gradient(135deg, rgba(44, 85, 69, 0.08) 0%, rgba(44, 85, 69, 0.15) 100%);
    color: var(--primary);
    border: 1px solid rgba(44, 85, 69, 0.2);
}

.unit-type.bed-3 {
    background: linear-gradient(135deg, rgba(26, 58, 47, 0.1) 0%, rgba(26, 58, 47, 0.18) 100%);
    color: var(--primary);
    border: 1px solid rgba(26, 58, 47, 0.25);
}

.unit-type.penthouse {
    background: linear-gradient(135deg, rgba(184, 149, 108, 0.15) 0%, rgba(184, 149, 108, 0.25) 100%);
    color: #8b6914;
    border: 1px solid rgba(184, 149, 108, 0.4);
    font-weight: 600;
}

.penthouse-row {
    background: rgba(184, 149, 108, 0.05);
}

.penthouse-row:hover {
    background: rgba(184, 149, 108, 0.1) !important;
}

@media (max-width: 768px) {
    .units-table {
        font-size: 0.8rem;
    }
    
    .units-table th,
    .units-table td {
        padding: 0.75rem;
    }
    
    .unit-type {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

/* ============ VIDEO DIVIDER ============ */
.video-divider {
    width: 100%;
    height: 52vh;
    min-height: 360px;
    max-height: 520px;
    overflow: hidden;
    position: relative;
}

.video-divider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .video-divider {
        height: 30vh;
        min-height: 200px;
    }
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 47, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255,255,255,0.9);
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner.show {
    display: flex;
}

.cookie-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin: 0;
    max-width: 550px;
    line-height: 1.6;
}

.cookie-banner a {
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-gold);
    transition: opacity 0.3s ease;
}

.cookie-banner a:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 12px 28px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.cookie-btn-accept {
    background: var(--accent-gold);
    color: var(--primary);
}

.cookie-btn-accept:hover {
    background: #c9a67d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 149, 108, 0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
}

.cookie-btn-decline:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============ RESPONSIVE - TABLET ============ */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .intro-grid,
    .split-grid,
    .tour-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-grid.reverse {
        direction: ltr;
    }

    .intro-content,
    .split-content {
        max-width: 100%;
    }

    .location-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .apartments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nearby-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brochure-content {
        flex-direction: column;
        text-align: center;
    }

    .brochure-form {
        width: 100%;
        justify-content: center;
    }
}

/* ============ RESPONSIVE - MOBILE ============ */
@media (max-width: 768px) {
    .header-inner {
        padding: 16px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-img {
        height: 55px;
    }

    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 0.1em;
    }

    .logo-text span {
        font-size: 0.55rem;
        letter-spacing: 0.2em;
        margin-top: 2px;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 1.5rem;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    nav ul.open {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
        position: absolute;
        right: 0;
        padding: 10px;
        gap: 6px;
    }

    .mobile-toggle span {
        width: 28px;
        height: 2.5px;
        background: var(--text-dark);
    }

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

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

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

    /* HERO MOBILE */
    .hero {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 1.65rem;
        margin-bottom: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.85rem;
    }

    .btn-filled {
        background: var(--white);
        color: var(--text-dark);
    }

    .page-hero {
        height: 40vh;
        min-height: 300px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    /* Scroll indicator mobile */
    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-text {
        font-size: 0.6rem;
    }

    .scroll-arrow {
        width: 32px;
        height: 32px;
    }

    /* Sections mobile */
    .section,
    .intro,
    .split-section,
    .gallery,
    .video-section,
    .virtual-tour,
    .contact {
        padding: 50px 0;
    }

    .pillars {
        padding: 35px 0;
    }

    .section-tag {
        font-size: 0.65rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    /* Pillars mobile */
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .pillar {
        padding: 0.6rem 0.25rem;
    }

    .pillar-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 0.5rem;
    }

    .pillar-icon svg {
        width: 18px;
        height: 18px;
    }

    .pillar h4 {
        font-size: 0.72rem;
    }

    .pillar span {
        font-size: 0.68rem;
    }

    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    /* Cards mobile */
    .apartments-grid,
    .amenities-grid,
    .nearby-grid,
    .location-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .feature-pills {
        gap: 5px;
    }

    .pill {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    /* Map mobile */
    .map-container {
        height: 280px;
    }

    /* Brochure mobile */
    .brochure-section {
        padding: 40px 0;
    }

    .brochure-text {
        text-align: center;
    }

    .brochure-text h3 {
        font-size: 1.3rem;
    }

    .brochure-form {
        flex-direction: column;
        width: 100%;
    }

    .brochure-form input {
        min-width: 100%;
    }

    .brochure-form button {
        width: 100%;
        justify-content: center;
    }

    /* Units banner mobile */
    .units-banner {
        padding: 12px 0;
    }

    .units-banner-content {
        flex-direction: column;
        gap: 8px;
    }

    /* WhatsApp mobile */
    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    /* Footer mobile */
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    footer {
        padding: 1.5rem 0;
    }
}

/* ============ RESPONSIVE - SMALL MOBILE ============ */
@media (max-width: 400px) {
    .container {
        width: 94%;
        padding: 0 6px;
    }

    .hero h1 {
        font-size: 1.45rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.35rem;
    }

    .pillar-icon {
        width: 36px;
        height: 36px;
    }

    .pillar-icon svg {
        width: 15px;
        height: 15px;
    }

    .pillar h4 {
        font-size: 0.65rem;
    }

    .pillar span {
        font-size: 0.6rem;
    }

    .gallery-grid {
        gap: 4px;
    }
}
