/* ============================================================
   PARSVANATH ESTATE — Premium Real Estate Design System
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Colors */
    --navy-900: #000000;
    --navy-800: #0a0a0a;
    --navy-700: #141414;
    --navy-600: #1f1f1f;
    --navy-500: #292929;
    --blue-400: #C5A059; /* Using gold for call buttons */
    --blue-300: #D8B770;
    --gold-500: #C5A059;
    --gold-400: #D8B770;
    --gold-300: #ECD293;
    --white: #ffffff;
    --gray-100: #f5f6f8;
    --gray-200: #e8eaed;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --green-500: #10b981;
    --green-400: #34d399;
    --red-500: #ef4444;
    --red-400: #f87171;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 40%, var(--navy-500) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold-500), var(--gold-300));
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    --gradient-cta: linear-gradient(135deg, var(--gold-500), var(--gold-400));

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--navy-900);
    color: var(--gray-200);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Utility Classes ---------- */
.section {
    padding: var(--section-padding);
}

.section-dark {
    background: var(--navy-800);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-500);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.section-title p {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

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

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy-900);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--gold-500);
    color: var(--gold-500);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-call {
    background: var(--blue-400);
    color: var(--white);
}

.btn-call:hover {
    background: var(--blue-300);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 111, 182, 0.3);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(6, 13, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
}

.nav-logo-text small {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--gold-500);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-300);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: width var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-500);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-500);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212,168,83,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45,111,182,0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(30px, -20px); }
}

/* Floating shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border: 1px solid rgba(212,168,83,0.1);
    border-radius: var(--radius-md);
    animation: shapeFloat 20s linear infinite;
}

.hero-shape:nth-child(1) { width: 80px; height: 80px; top: 15%; left: 8%; animation-duration: 25s; }
.hero-shape:nth-child(2) { width: 120px; height: 120px; top: 60%; right: 5%; animation-duration: 30s; animation-delay: -5s; }
.hero-shape:nth-child(3) { width: 60px; height: 60px; bottom: 20%; left: 15%; animation-duration: 22s; animation-delay: -10s; }
.hero-shape:nth-child(4) { width: 100px; height: 100px; top: 30%; right: 20%; animation-duration: 28s; animation-delay: -8s; }

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-30px) rotate(5deg); opacity: 0.5; }
    50% { transform: translateY(-15px) rotate(-3deg); opacity: 0.4; }
    75% { transform: translateY(-40px) rotate(8deg); opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--gold-400);
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 650px;
    margin: 0 auto 36px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

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

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.hero-stat-number .accent {
    color: var(--gold-500);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 4px;
}

/* ---------- USP Strip ---------- */
.usp-strip {
    background: var(--navy-800);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 30px 0;
}

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

.usp-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.usp-item:hover {
    background: var(--glass-bg);
}

.usp-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.usp-text h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2px;
}

.usp-text p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ---------- Property Cards ---------- */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
}

.property-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.property-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-500);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212,168,83,0.1);
}

.property-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--navy-700);
}

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

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

.property-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-rent {
    background: rgba(16, 185, 129, 0.9);
    color: var(--white);
}

.badge-sell {
    background: rgba(59, 130, 246, 0.9);
    color: var(--white);
}

.property-card-featured {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 12px;
    background: rgba(212, 168, 83, 0.9);
    color: var(--navy-900);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-card-body {
    padding: 20px;
}

.property-card-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-500);
    margin-bottom: 4px;
}

.property-card-price small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray-400);
}

.property-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.property-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.property-card-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--gray-300);
}

.property-card-meta-item svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.property-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.property-card-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.82rem;
}

/* ---------- Property Detail Page ---------- */
.property-detail {
    padding-top: 100px;
}

.property-gallery {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.gallery-main {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000000;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.gallery-thumb {
    width: 100px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--gold-500);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.property-info h1 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.property-location-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 1rem;
    margin-bottom: 24px;
}

.property-price-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.property-price-main {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-500);
}

.property-price-main small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-400);
}

.property-deposit {
    padding-left: 24px;
    border-left: 1px solid var(--glass-border);
}

.property-deposit label {
    font-size: 0.8rem;
    color: var(--gray-400);
    display: block;
    margin-bottom: 2px;
}

.property-deposit span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.property-specs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.spec-item {
    padding: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    text-align: center;
}

.spec-item-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.spec-item-value {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
}

.spec-item-label {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 2px;
}

.property-description h3,
.property-amenities h3,
.property-videos h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
}

.property-description p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 24px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.amenity-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--gray-300);
}

.amenity-tag::before {
    content: '✓';
    color: var(--green-500);
    font-weight: 700;
}

/* Video Embeds */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

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

/* Property Contact Sidebar */
.property-sidebar {
    position: sticky;
    top: 100px;
}

.contact-box {
    padding: 28px;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.contact-box h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}

.contact-box .contact-person {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.contact-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-900);
    flex-shrink: 0;
}

.contact-name {
    font-weight: 600;
    color: var(--white);
    font-size: 1.05rem;
}

.contact-role {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.contact-box .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}

.contact-box .btn:last-child {
    margin-bottom: 0;
}

/* ---------- Filter Bar ---------- */
.filter-bar {
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.filter-form {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 10px 14px;
    background: var(--navy-700);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition-fast);
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--gold-500);
}

.filter-group select option {
    background: var(--navy-700);
    color: var(--white);
}

.filter-btn {
    padding: 10px 28px;
    height: fit-content;
}

/* ---------- Placeholder Images ---------- */
.property-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
    color: var(--gray-500);
}

.property-placeholder svg {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    opacity: 0.4;
}

.property-placeholder span {
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ---------- About Page ---------- */
.about-hero {
    padding: 140px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-image .profile-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 24px;
}

.about-image h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 4px;
}

.about-image p {
    color: var(--gold-500);
    font-size: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.value-card {
    padding: 32px;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-500);
}

.value-card-icon {
    width: 64px;
    height: 64px;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.value-card h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ---------- Contact Page ---------- */
.contact-hero {
    padding: 140px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
}

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

.contact-form-card {
    padding: 40px;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.contact-form-card h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-300);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--navy-700);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

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

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

.contact-info-card {
    padding: 40px;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.contact-info-card h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--glass-border);
}

.contact-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-info-text p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.contact-info-text a {
    color: var(--gold-500);
    transition: color var(--transition-fast);
}

.contact-info-text a:hover {
    color: var(--gold-400);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--navy-800);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
}

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

.footer-about h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-500);
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-500);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ---------- Floating CTA ---------- */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn-whatsapp {
    background: #25D366;
}

.floating-btn-whatsapp:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.floating-btn-call {
    background: var(--blue-400);
}

.floating-btn-call:hover {
    box-shadow: 0 6px 30px rgba(45, 111, 182, 0.4);
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
    padding: 140px 0 60px;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--gray-400);
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray-500);
    position: relative;
}

.breadcrumb a {
    color: var(--gold-500);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ---------- Lightbox ---------- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10000;
    background: none;
    border: none;
    padding: 8px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

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

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---------- No Properties ---------- */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results svg {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
    opacity: 0.3;
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--gray-400);
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Success/Error Messages ---------- */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green-400);
    border-color: rgba(16, 185, 129, 0.2);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--red-400);
    border-color: rgba(239, 68, 68, 0.2);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .properties-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .property-detail-grid {
        grid-template-columns: 1fr;
    }

    .property-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-800);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 24px;
        transition: right var(--transition-normal);
        border-left: 1px solid var(--glass-border);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

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

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-stat-number {
        font-size: 1.8rem;
    }

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

    .section-title h2 {
        font-size: 1.8rem;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .filter-form {
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .gallery-main {
        height: 280px;
    }

    .property-info h1 {
        font-size: 1.5rem;
    }

    .property-price-box {
        flex-direction: column;
        gap: 12px;
    }

    .property-deposit {
        padding-left: 0;
        border-left: none;
        padding-top: 12px;
        border-top: 1px solid var(--glass-border);
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
