/*
 * Venus Properties - Luxury Glassmorphic Stylesheet
 */

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

:root {
    --primary-color: #060b19;      /* Ultra-Deep Space Navy */
    --secondary-color: #0d1527;    /* Sleek Mid Navy */
    --accent-color: #c5a880;       /* Luxurious Warm Gold */
    --accent-glow: #e2c9a1;        /* Champagne Gold Glow */
    --bg-light: #f8fafc;           /* Crisp Premium Ice White */
    --bg-white: #ffffff;
    --text-dark: #0f172a;          /* Slate Dark Gray */
    --text-muted: #64748b;         /* Neutral Cool Gray */
    --text-light: #f1f5f9;         /* Slate Light Gray */
    
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-logo: 'Outfit', sans-serif;
    
    --header-height: 90px;
    --header-shrink-height: 70px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 16px;
    --border-color: rgba(197, 168, 128, 0.25);
    --border-color-light: rgba(226, 232, 240, 0.8);
    
    /* Elegant Layered Shadows */
    --shadow-sm: 0 4px 12px rgba(6, 11, 25, 0.02), 0 1px 3px rgba(6, 11, 25, 0.01);
    --shadow-md: 0 12px 30px rgba(6, 11, 25, 0.05), 0 4px 12px rgba(6, 11, 25, 0.02);
    --shadow-lg: 0 30px 60px rgba(197, 168, 128, 0.08), 0 10px 20px rgba(6, 11, 25, 0.02);
    --glass-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.06);
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

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

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

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 1.5rem + 4vw, 4.2rem);
    font-weight: 400;
}

h2 {
    font-size: clamp(2rem, 1.2rem + 3vw, 3rem);
    font-weight: 400;
}

h2.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

h2.section-title span {
    font-style: italic;
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), #8e734c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 16px auto 0;
}

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

/* Glassmorphism System */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--glass-shadow);
    border-radius: var(--border-radius);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
    transform: skewX(-25deg);
    transition: 0.75s ease;
}

.btn:hover::before {
    left: 150%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(6, 11, 25, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 11, 25, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}

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

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color) 0%, #a48255 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.5);
}

.btn-white {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-white:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

/* Header & Menu */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.site-header.solid-nav:not(.scrolled) {
    background-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(6, 11, 25, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled {
    height: var(--header-shrink-height);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(6, 11, 25, 0.03);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    text-transform: uppercase;
}

.logo .logo-gold {
    display: block !important;
}
.logo .logo-black {
    display: none !important;
}

.site-header.scrolled .logo .logo-gold {
    display: none !important;
}
.site-header.scrolled .logo .logo-black {
    display: block !important;
}

.site-header.scrolled .logo-icon {
    border-color: var(--primary-color);
}

.logo:hover .logo-icon {
    transform: rotate(135deg);
    border-color: var(--accent-color);
}

/* Nav Link Styling */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 6px 0;
}

.site-header.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-glow));
    transition: var(--transition);
}

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

.nav-link:hover {
    color: #fff;
}

.site-header.scrolled .nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--accent-color) !important;
}
/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background-color: #fff;
    transition: var(--transition);
}

.site-header.scrolled .hamburger-line {
    background-color: var(--primary-color);
}

.hamburger.active .hamburger-line {
    background-color: #fff !important;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 991px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: rgba(6, 11, 25, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: var(--transition);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-link {
        color: rgba(255,255,255,0.8) !important;
        font-size: 1rem;
    }
    .nav-link:hover {
        color: #fff !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    background-image: url('../images/residential_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130vw;
    height: 73.13vw;
    min-height: 130vh;
    min-width: 231.11vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 11, 25, 0.75) 0%, rgba(6, 11, 25, 0.4) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-card {
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 60px;
    max-width: 800px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-size: clamp(2.4rem, 1.8rem + 3.5vw, 4rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title span {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent-glow), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-card {
        padding: 30px;
    }
}

/* Elegant Search/Curated Filter */
.search-filter-section {
    position: relative;
    z-index: 20;
    margin-top: -70px;
    margin-bottom: 20px;
}

.search-filter-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    padding: 30px 40px;
    box-shadow: 0 15px 35px rgba(6, 11, 25, 0.08);
}

.search-form {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1 1 200px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group select,
.form-group input {
    border: none;
    border-bottom: 2px solid var(--border-color-light);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    background-color: transparent;
    outline: none;
    padding: 10px 0;
    cursor: pointer;
    transition: var(--transition);
}

.form-group select:focus,
.form-group input:focus {
    border-bottom-color: var(--accent-color);
}

/* Sections & Grids */
.section {
    padding: 120px 0;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .grid-3, .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Property card redesigned */
.property-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.property-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-card-content .btn {
    margin-top: auto;
}

.property-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-glow));
    opacity: 0;
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 168, 128, 0.4);
}

.property-card:hover::after {
    opacity: 1;
}

.property-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

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

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

.card-meta-line {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.property-card-title {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.property-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.property-card-price {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 1px solid var(--border-color-light);
    padding-bottom: 16px;
    margin-bottom: 16px;
    margin-top: auto;
}

.property-specs {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
}

.view-details-btn {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(6, 11, 25, 0.15);
    cursor: pointer;
}

.view-details-btn::after {
    content: '\2192';
    font-weight: 700;
    transition: var(--transition);
}

.view-details-btn:hover {
    color: #ffffff;
    background: var(--accent-color);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.35);
    transform: translateY(-2px);
}

.view-details-btn:hover::after {
    transform: translateX(4px);
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '“';
    font-family: var(--font-serif);
    font-size: 5rem;
    color: rgba(197, 168, 128, 0.15);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 168, 128, 0.3);
}

.testimonial-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Why Choose Us & Partner cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

.why-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 168, 128, 0.35);
}

.why-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

.why-card h3 {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 80px 0;
    border-radius: 24px;
    margin: 0 24px;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(197, 168, 128, 0.05);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    filter: blur(40px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-sans);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
}

/* Location Card */
.location-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(6, 11, 25, 0.15);
    aspect-ratio: 1 / 1;
    display: block;
    transition: var(--transition);
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 11, 25, 0) 40%, rgba(6, 11, 25, 0.6) 100%);
    z-index: 2;
}

.location-card::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: calc(var(--border-radius) - 6px);
    pointer-events: none;
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(6, 11, 25, 0.25);
}

.location-card:hover::after {
    border-color: rgba(197, 168, 128, 0.5);
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

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

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

.location-card-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 5;
    color: #fff;
    background: rgba(6, 11, 25, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-card:hover .location-card-content {
    background: rgba(6, 11, 25, 0.7);
    border-color: rgba(197, 168, 128, 0.3);
}

.location-card-title {
    font-size: 1.45rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 6px;
    font-family: var(--font-serif);
}

.location-card-content span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.location-card:hover .location-card-content span {
    color: var(--accent-color);
}

/* Page Intro Header */
.page-intro-header {
    padding: 160px 0 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-intro-header h1 {
    color: #fff;
    font-size: clamp(2.2rem, 1.5rem + 3vw, 3.5rem);
    font-weight: 400;
}

/* Property Badge */
.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    background: rgba(6, 11, 25, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent-glow) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color-light);
    padding: 14px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.breadcrumbs a {
    color: var(--text-muted);
}

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

.bc-active {
    color: var(--primary-color);
    font-weight: 600;
}

.bc-separator {
    margin: 0 8px;
    color: var(--text-muted);
    opacity: 0.5;
}

/* Detail View Layout */
.detail-container {
    padding: 60px 0 100px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
    height: 500px;
}

.gallery-main, .gallery-sub-img {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
}

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

.gallery-main:hover img, .gallery-sub-img:hover img {
    transform: scale(1.04);
}

.gallery-sub {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .gallery-sub {
        display: none;
    }
}

.details-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

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

.sidebar-box {
    background-color: var(--bg-white);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

/* Consultation Contact form */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.form-row > div {
    flex: 1;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.contact-form label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 16px;
    margin-bottom: 6px;
    display: block;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--accent-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

/* Accordions */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color-light);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-color);
}

.faq-question {
    padding: 22px 28px;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent-color);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 28px 22px;
    max-height: 200px;
}

/* Call to Action Container */
.cta-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 60px 80px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .cta-box {
        padding: 40px 20px;
    }
}

/* Footer widget structure */
.site-footer {
    background-color: var(--primary-color);
    color: rgba(255,255,255,0.65);
    padding: 90px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 30px;
    }
}

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

.footer-widget h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Viewport Scroll reveals */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Partner Logo Hover Effect */
.why-card:hover .partner-logo-wrapper img {
    filter: grayscale(0) contrast(1) !important;
    opacity: 1 !important;
}

/* Sidebar & Stacked Button Spacing Fix */
.contact-form .btn + .btn,
.contact-form .btn + a.btn,
.contact-form a.btn + .btn,
.contact-form a.btn + a.btn {
    margin-top: 12px !important;
}

/* Blog Card Redesign */
.blog-card {
    background: #ffffff;
    border: 1px solid var(--border-color-light);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 168, 128, 0.3);
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card .blog-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    aspect-ratio: 16 / 10;
}

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

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

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    font-family: var(--font-sans);
}

.blog-title a {
    color: var(--primary-color);
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--accent-color);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color-light);
    padding-top: 14px;
    margin-bottom: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-sans);
}

.blog-card .view-details-btn {
    margin-top: auto;
    width: fit-content;
}

/* City Location Cards on locations.php */
.city-card {
    background: #ffffff;
    border: 1px solid var(--border-color-light);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 168, 128, 0.3);
}

.city-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-glow));
    opacity: 0;
    transition: var(--transition);
}

.city-card:hover::after {
    opacity: 1;
}

.city-card .city-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

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

.city-card:hover .city-img-wrapper img {
    transform: scale(1.06);
}

.city-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.city-card-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.city-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.city-card-sectors {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color-light);
}

.city-card-sectors-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.city-sectors-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sector-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(197, 168, 128, 0.06);
    border: 1px solid rgba(197, 168, 128, 0.15);
    color: var(--accent-color);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.01em;
    transition: var(--transition);
}

.city-card:hover .sector-tag {
    background: rgba(197, 168, 128, 0.1);
    border-color: rgba(197, 168, 128, 0.3);
}

.city-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.city-card-actions .btn {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 30px;
    transition: var(--transition);
}

.city-card-actions .btn-primary {
    text-align: center;
    width: 100%;
    padding: 14px 20px;
}

.city-card-sub-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.city-card-sub-actions .btn-secondary {
    text-align: center;
    padding: 12px 10px;
    font-size: 0.75rem;
}

/* Construction Showcase Grid */
.construction-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.construction-gallery-offset {
    transform: translateY(20px);
}

@media (max-width: 991px) {
    .construction-showcase-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .construction-gallery-offset {
        transform: translateY(0) !important;
    }
}

@media (max-width: 576px) {
    .construction-floating-card {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        margin: 20px auto 0 !important;
        max-width: 100% !important;
    }
}
