@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- DESIGN SYSTEM & TOKENS --- */
:root {
    --color-primary: #c5a880;     /* Warm Gold / Champagne */
    --color-primary-hover: #b4966c;
    --color-primary-light: #dfc59f;
    --color-accent: #9d8059;
    --color-dark: #0f1012;         /* Rich Obsidian */
    --color-dark-card: #181a1e;
    --color-dark-light: #24272e;
    --color-white: #ffffff;
    --color-bg-light: #f9fafb;
    --color-text-dark: #1f2937;
    --color-text-muted: #6b7280;
    --color-text-light: #f3f4f6;
    --color-border: #e5e7eb;
    --color-border-gold: rgba(197, 168, 128, 0.3);
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 10px 30px rgba(197, 168, 128, 0.15);
}

/* --- RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    outline: none;
    border: none;
}

ul {
    list-style: none;
}

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.text-gold {
    color: var(--color-primary);
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- REUSABLE COMPONENTS --- */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.2rem;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-size: 3rem;
    color: var(--color-dark);
    font-weight: 400;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
}

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

.btn-outline-gold {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-outline-gold:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

.btn-dark:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

/* --- HEADER / NAVIGATION --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

.header.scrolled {
    background-color: rgba(15, 16, 18, 0.95);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    color: var(--color-white);
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    color: var(--color-primary);
    margin-top: 0.2rem;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

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

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-phone {
    color: var(--color-white);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-phone svg {
    width: 14px;
    height: 14px;
    fill: var(--color-primary);
}

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

.nav-enquire-btn {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.6rem 1.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-enquire-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Burger menu for Mobile */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.burger span {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-fast);
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none; /* Handled by side drawer in JS if mobile */
    }
    .nav-right {
        display: none;
    }
    .burger {
        display: flex;
    }
}

/* --- MOBILE DRAWER --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-dark);
    z-index: 1001;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    color: var(--color-white);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-link {
    color: var(--color-white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
}

.mobile-link:hover {
    color: var(--color-primary);
}

.mobile-contact {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    background-color: var(--color-dark);
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 10s ease-in-out;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15,16,18,0.7) 0%, rgba(15,16,18,0.4) 50%, rgba(15,16,18,0.85) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 5rem;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

.hero-btn-wrap {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.9s;
}

.hero-pagination {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 1.5rem;
}

.hero-dot {
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

.hero-dot.active {
    background-color: var(--color-primary);
}

.hero-dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--color-white);
    animation: loadingBar 6s linear forwards;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
}

/* Keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loadingBar {
    to {
        width: 100%;
    }
}

/* --- SEARCH FILTER BAR --- */
.search-container {
    position: relative;
    z-index: 10;
    margin-top: -4.5rem; /* Overlap Hero */
    margin-bottom: 5rem;
}

.search-bar {
    background-color: var(--color-white);
    box-shadow: var(--shadow-lg);
    display: flex;
    border-radius: 0px;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.search-item {
    flex: 1;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-right: 1px solid var(--color-border);
    position: relative;
}

.search-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.search-select {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-dark);
    background: transparent;
    cursor: pointer;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-item::after {
    content: '';
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--color-text-muted);
    pointer-events: none;
}

.search-btn-wrap {
    display: flex;
    align-items: stretch;
}

.search-submit-btn {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 0 2.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-smooth);
}

.search-submit-btn:hover {
    background-color: var(--color-primary);
}

.search-submit-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

@media (max-width: 1024px) {
    .search-bar {
        flex-direction: column;
    }
    .search-item {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: 1.2rem 1.5rem;
    }
    .search-item::after {
        right: 1.5rem;
        bottom: 1.6rem;
    }
    .search-submit-btn {
        width: 100%;
        padding: 1.2rem;
        justify-content: center;
    }
}

/* --- EXCLUSIVE PROPERTIES SECTION --- */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 900px) {
    .properties-grid {
        grid-template-columns: 1fr;
    }
}

/* Property Card */
.property-card {
    background-color: var(--color-bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.property-img-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #eee;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.property-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(15, 16, 18, 0.85);
    backdrop-filter: blur(5px);
    color: var(--color-white);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    text-transform: uppercase;
}

.property-info {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-loc {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.4rem;
}

.property-name {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.property-specs {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.property-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary-hover);
}

.property-link {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.property-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.properties-action-wrap {
    text-align: center;
    margin-bottom: 6rem;
}

/* --- WHY CHOOSE US (DARK STATS PANEL) --- */
.why-section {
    display: grid;
    grid-template-columns: 40% 60%;
    background-color: var(--color-dark);
    color: var(--color-white);
}

@media (max-width: 991px) {
    .why-section {
        grid-template-columns: 1fr;
    }
}

.why-left {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.why-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 16, 18, 0.85);
    z-index: 1;
}

.why-left-content {
    position: relative;
    z-index: 2;
}

.why-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    display: block;
}

.why-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.why-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.why-right {
    padding: 6rem 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 600px) {
    .why-right {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
    }
    .why-left {
        padding: 4rem 2rem;
    }
}

.why-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(197, 168, 128, 0.2);
}

.why-card-icon {
    width: 32px;
    height: 32px;
    fill: var(--color-primary);
}

.why-card-title {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-primary-light);
    text-transform: uppercase;
}

.why-card-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* --- PROPERTY LANDING DETAIL PAGES STYLING --- */

/* Breadcrumb & Top Bar */
.prop-topbar {
    background-color: var(--color-dark);
    padding: 6rem 0 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

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

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

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.35);
}

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

.prop-actions {
    display: flex;
    gap: 1.5rem;
}

.prop-action-btn {
    background: none;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.75rem;
}

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

.prop-action-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Property Hero */
.prop-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 6rem 0;
    min-height: 580px;
    display: flex;
    align-items: center;
}

.prop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15,16,18,0.9) 0%, rgba(15,16,18,0.6) 60%, rgba(15,16,18,0.85) 100%);
}

.prop-hero .container {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 55% 40%;
    gap: 5%;
    align-items: center;
}

@media (max-width: 991px) {
    .prop-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.prop-hero-left {
    display: flex;
    flex-direction: column;
}

.prop-hero-loc {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.prop-hero-title {
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.prop-hero-tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
}

.prop-hero-specs-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.prop-hero-spec-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.prop-hero-spec-item svg {
    width: 22px;
    height: 22px;
    fill: var(--color-primary);
    margin-bottom: 0.3rem;
}

.prop-hero-spec-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.prop-hero-spec-value {
    font-size: 1.1rem;
    font-weight: 500;
}

.prop-hero-price-row {
    margin-bottom: 2.5rem;
}

.prop-hero-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.prop-hero-price span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 0.5rem;
}

.prop-hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.prop-hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.prop-trust-avatars {
    display: flex;
}

.prop-trust-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--color-dark);
    margin-right: -10px;
}

.prop-trust-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Property Side Form (Right Card) */
.prop-hero-form-card {
    background-color: var(--color-white);
    border-radius: 0px;
    padding: 2.5rem;
    color: var(--color-dark);
    box-shadow: var(--shadow-lg);
}

.prop-form-title {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0.2rem;
}

.prop-form-subtitle {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.prop-form-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.prop-form-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
}

.prop-form-input {
    border: 1px solid var(--color-border);
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    width: 100%;
    transition: var(--transition-fast);
}

.prop-form-input:focus {
    border-color: var(--color-primary);
}

.prop-form-phone-row {
    display: grid;
    grid-template-columns: 25% 72%;
    gap: 3%;
}

.prop-form-checkbox-row {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.prop-form-checkbox-row input {
    margin-top: 3px;
    accent-color: var(--color-primary);
}

.prop-form-checkbox-row label {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.prop-form-checkbox-row a {
    color: var(--color-primary);
}

.prop-form-submit {
    width: 100%;
}

.prop-form-feedback {
    font-size: 0.65rem;
    text-align: center;
    color: var(--color-text-muted);
    margin-top: 0.8rem;
}

/* Page Subheading section */
.prop-desc-section {
    padding: 5rem 0;
    text-align: center;
}

.prop-desc-container {
    max-width: 800px;
    margin: 0 auto;
}

.prop-desc-p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-top: 1rem;
}

/* Icon features row */
.prop-features-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 5rem;
}

.prop-feature-box {
    padding: 2rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    border-right: 1px solid var(--color-border);
}

.prop-feature-box:last-child {
    border-right: none;
}

.prop-feature-box svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
}

.prop-feature-box-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
}

.prop-feature-box-desc {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

@media (max-width: 900px) {
    .prop-features-row {
        grid-template-columns: repeat(3, 1fr);
    }
    .prop-feature-box {
        border-bottom: 1px solid var(--color-border);
    }
    .prop-feature-box:nth-child(3), .prop-feature-box:nth-child(6) {
        border-right: none;
    }
}

@media (max-width: 500px) {
    .prop-features-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .prop-feature-box:nth-child(even) {
        border-right: none;
    }
}

/* Gallery Grid */
.prop-gallery-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 1rem;
    margin-bottom: 5rem;
}

.prop-gallery-left {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.prop-gallery-left img, .prop-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.prop-gallery-left:hover img, .prop-gallery-thumb:hover img {
    transform: scale(1.04);
}

.prop-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.prop-video-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translate(-50%, -50%) scale(1.1);
}

.prop-video-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-left: 4px;
}

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

.prop-gallery-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.prop-gallery-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 16, 18, 0.7);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    cursor: pointer;
}

.prop-gallery-more-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary-light);
}

@media (max-width: 900px) {
    .prop-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Split Info Row (Amenities + Specifications + Urgency Card) */
.prop-detail-split {
    display: grid;
    grid-template-columns: 32% 32% 30%;
    gap: 3%;
    margin-bottom: 5rem;
}

@media (max-width: 1024px) {
    .prop-detail-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.prop-amenities-col, .prop-spec-col {
    display: flex;
    flex-direction: column;
}

.prop-detail-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-primary-hover);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.prop-amenity-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.prop-amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.prop-amenity-icon {
    width: 20px;
    height: 20px;
    fill: var(--color-primary);
    margin-top: 2px;
}

.prop-amenity-text-wrap {
    display: flex;
    flex-direction: column;
}

.prop-amenity-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
}

.prop-amenity-desc {
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

.prop-specs-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.prop-spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.prop-spec-label {
    color: var(--color-text-muted);
}

.prop-spec-value {
    font-weight: 500;
    color: var(--color-dark);
}

/* Urgency Opportunity Card */
.prop-opportunity-card {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-image: radial-gradient(circle at 100% 0%, rgba(197, 168, 128, 0.15) 0%, transparent 80%);
}

.prop-opp-badge {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: block;
}

.prop-opp-title {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.prop-opp-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-weight: 300;
}

.prop-opp-units {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary-light);
    margin-bottom: 1.5rem;
}

.prop-opp-units svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Map & Location Section */
.prop-location-section {
    display: grid;
    grid-template-columns: 45% 50%;
    gap: 5%;
    background-color: var(--color-bg-light);
    padding: 5rem 0;
    margin-bottom: 5rem;
}

@media (max-width: 900px) {
    .prop-location-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.prop-loc-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem;
}

@media (max-width: 900px) {
    .prop-loc-left {
        padding-left: 0;
    }
}

.prop-loc-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
}

.prop-loc-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.prop-loc-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.prop-loc-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.prop-loc-item {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.prop-loc-item svg {
    width: 14px;
    height: 14px;
    fill: var(--color-primary);
}

.prop-loc-right {
    height: 380px;
    background-color: #e5e7eb;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Styled Map Markers (simulated map elements) */
.map-canvas {
    width: 100%;
    height: 100%;
    background-color: #f0ede5;
    position: relative;
}

.map-sea {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #ccdbe0;
    border-top: 2px dashed rgba(255,255,255,0.5);
}

.map-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.map-marker-pin {
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border: 2px solid var(--color-white);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.map-marker-label {
    background-color: var(--color-white);
    padding: 0.3rem 0.6rem;
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    white-space: nowrap;
}

.map-marker.main .map-marker-pin {
    width: 16px;
    height: 16px;
    background-color: var(--color-dark);
    border-color: var(--color-primary);
}

.map-marker.main .map-marker-label {
    background-color: var(--color-dark);
    color: var(--color-primary-light);
}

/* Trust stats (dark banner) */
.trust-banner {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 5rem;
}

.trust-banner-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    align-items: center;
    gap: 5%;
}

@media (max-width: 900px) {
    .trust-banner-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

.trust-title {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.3;
}

.trust-subtitle {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    display: block;
}

.trust-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 600px) {
    .trust-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.trust-stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary-light);
}

.trust-stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

/* Testimonial Section */
.testimonials-section {
    margin-bottom: 5rem;
}

.testimonial-container {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    display: grid;
    grid-template-columns: 55% 45%;
    overflow: hidden;
}

@media (max-width: 900px) {
    .testimonial-container {
        grid-template-columns: 1fr;
    }
}

.test-left {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

@media (max-width: 600px) {
    .test-left {
        padding: 2.5rem 1.5rem;
    }
}

.test-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.test-nav-btn {
    background: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

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

.test-quote-icon {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--color-primary-light);
    line-height: 1;
    margin-bottom: -1.5rem;
    opacity: 0.5;
}

.test-quote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.4;
    color: var(--color-dark);
    font-style: italic;
    margin-bottom: 2rem;
}

.test-author-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-dark);
}

.test-author-desc {
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

.test-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
}

.test-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-border);
    cursor: pointer;
}

.test-dot.active {
    background-color: var(--color-primary);
}

.test-right {
    height: 100%;
    min-height: 350px;
}

.test-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Brochure Legacy Download CTA Block */
.brochure-block {
    background-color: var(--color-white);
    border: 1px solid var(--color-primary-light);
    padding: 3rem;
    margin-bottom: 6rem;
    box-shadow: var(--shadow-gold);
    display: grid;
    grid-template-columns: 20% 45% 30%;
    gap: 2.5%;
    align-items: center;
}

@media (max-width: 1024px) {
    .brochure-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

.brochure-img-col {
    display: flex;
    justify-content: center;
}

.brochure-mockup {
    width: 140px;
    box-shadow: var(--shadow-md);
    transform: rotate(-3deg);
    transition: var(--transition-smooth);
}

.brochure-block:hover .brochure-mockup {
    transform: rotate(0deg) scale(1.05);
}

.brochure-text-col {
    display: flex;
    flex-direction: column;
}

.brochure-title-sub {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}

.brochure-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 0.8rem;
}

.brochure-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.brochure-checkmarks {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.brochure-check {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-dark);
}

.brochure-check svg {
    width: 12px;
    height: 12px;
    fill: var(--color-primary);
}

.brochure-form-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.brochure-form-input {
    border: 1px solid var(--color-border);
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    width: 100%;
}

.brochure-form-input:focus {
    border-color: var(--color-primary);
}

.brochure-form-submit {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
}

.brochure-form-note {
    font-size: 0.62rem;
    color: var(--color-text-muted);
    text-align: center;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    padding: 5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 28% 18% 22% 26%;
    gap: 2%;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-desc {
    line-height: 1.6;
    font-weight: 300;
}

.footer-title {
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.6rem;
    margin-bottom: 0.4rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a:hover {
    color: var(--color-primary-light);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact-item svg {
    width: 14px;
    height: 14px;
    fill: var(--color-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item a:hover {
    color: var(--color-primary-light);
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.footer-social-link {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.8rem 0;
    font-size: 0.72rem;
    font-weight: 300;
}

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

@media (max-width: 600px) {
    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

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


/* --- MODAL POPUP (ENQUIRE & GALLERY VIEW) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 16, 18, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.open {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--color-white);
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-primary-light);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 3rem;
}

.modal-overlay.open .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    font-size: 1.8rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

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

/* Success alert notification popup */
.success-alert {
    position: fixed;
    bottom: 2rem;
    right: -400px;
    background-color: var(--color-dark);
    color: var(--color-white);
    border-left: 4px solid var(--color-primary);
    padding: 1.2rem 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-alert.show {
    right: 2rem;
}

.success-alert svg {
    width: 20px;
    height: 20px;
    fill: var(--color-primary);
}

.success-alert-title {
    font-weight: 600;
    font-size: 0.85rem;
}

.success-alert-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}


/* --- LIGHTBOX MODAL --- */
#lightboxModal {
    background-color: rgba(10, 11, 12, 0.96) !important;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#lightboxModal.open .lightbox-content {
    transform: scale(1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 3.5rem;
    cursor: pointer;
    transition: color 0.3s, transform 0.2s;
    user-select: none;
    padding: 10px;
    opacity: 0.7;
    z-index: 10010;
}

.lightbox-nav:hover {
    color: var(--color-primary);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: -80px;
}

.lightbox-nav.next {
    right: -80px;
}

#lightboxCaption {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .lightbox-nav.prev {
        left: -60px;
    }
    .lightbox-nav.next {
        right: -60px;
    }
}

@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 2.5rem;
    }
    .lightbox-nav.prev {
        left: -40px;
    }
    .lightbox-nav.next {
        right: -40px;
    }
    #lightboxCaption {
        font-size: 1rem;
        margin-top: 1rem;
    }
}

