/* ============================================
   CSS CUSTOM PROPERTIES & RESET
   ============================================ */
:root {
    --black: #0F0F0F;
    --black-light: #1A1A1A;
    --black-lighter: #222222;
    --gold: #C9A96E;
    --gold-light: #D4BA86;
    --gold-dark: #A88B52;
    --white: #FFFFFF;
    --white-off: #F5F5F5;
    --gray-100: #E8E8E8;
    --gray-200: #CCCCCC;
    --gray-300: #999999;
    --gray-400: #666666;
    --gray-500: #444444;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --container-width: 1280px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: preloaderSpin 1.5s linear infinite;
}

.preloader-ring:nth-child(1) {
    width: 100px;
    height: 100px;
    border-top-color: var(--gold);
    animation-duration: 1.5s;
}

.preloader-ring:nth-child(2) {
    width: 76px;
    height: 76px;
    border-right-color: var(--gold-light);
    animation-duration: 1.2s;
    animation-direction: reverse;
}

.preloader-ring:nth-child(3) {
    width: 52px;
    height: 52px;
    border-bottom-color: var(--gold-dark);
    animation-duration: 0.9s;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    position: absolute;
    bottom: -40px;
    white-space: nowrap;
}

.preloader-text .gold {
    -webkit-text-fill-color: var(--gold);
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-200);
    background-color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.gold {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark), var(--gold-light));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 6s ease-in-out infinite;
}

@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================
   TEXT SHINE SWEEP — Kinclong Flash Effect
   ============================================ */
.text-shine {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.text-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0) 35%,
        rgba(255, 255, 255, 0.4) 45%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.4) 55%,
        rgba(255, 255, 255, 0) 65%,
        transparent 80%
    );
    animation: shineSweep 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shineSweep {
    0% { left: -120%; }
    15% { left: 130%; }
    100% { left: 130%; }
}

/* Gold text with shine */
.gold-shine {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark), var(--gold-light));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 6s ease-in-out infinite;
}

.gold-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0) 35%,
        rgba(255, 255, 255, 0.5) 45%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.5) 55%,
        rgba(255, 255, 255, 0) 65%,
        transparent 80%
    );
    animation: shineSweepGold 4s ease-in-out infinite;
    animation-delay: 1.5s;
    pointer-events: none;
    z-index: 1;
}

@keyframes shineSweepGold {
    0% { left: -120%; }
    20% { left: 140%; }
    100% { left: 140%; }
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding: 6px 24px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-xl);
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.section-tag::before { right: 100%; }
.section-tag::after { left: 100%; }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.section-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0) 35%,
        rgba(255, 255, 255, 0.15) 45%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.15) 55%,
        rgba(255, 255, 255, 0) 65%,
        transparent 80%
    );
    animation: shineSweep 6s ease-in-out infinite;
    animation-delay: 0.5s;
    pointer-events: none;
    z-index: 1;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   ANIMATION CLASSES
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    background-size: 200% 100%;
    color: var(--black);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
    animation: btnShimmer 4s ease-in-out infinite;
}

@keyframes btnShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(201, 169, 110, 0.5), 0 0 20px rgba(201, 169, 110, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    font-size: 24px;
    color: var(--gold);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link.nav-cta {
    background: var(--gold);
    color: var(--black);
    font-weight: 500;
    margin-left: 8px;
}

.nav-link.nav-cta:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-1px);
}

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

.nav-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

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

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

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

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 0 2px 2px 0;
    z-index: 10;
    transition: width 0.05s linear;
    box-shadow: 0 0 8px rgba(201, 169, 110, 0.4), 0 0 16px rgba(201, 169, 110, 0.2);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 169, 110, 0.3);
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 4px 25px rgba(201, 169, 110, 0.35);
    transform: translateY(-3px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Particle Canvas */
.particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Hero Glow Orbs */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.35) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: glowFloat1 8s ease-in-out infinite alternate;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.2) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: glowFloat2 10s ease-in-out infinite alternate;
}

@keyframes glowFloat1 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    100% { transform: translate(-60px, 80px) scale(1.2); opacity: 0.5; }
}

@keyframes glowFloat2 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.2; }
    100% { transform: translate(60px, -60px) scale(1.3); opacity: 0.35; }
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 15, 15, 0.92) 0%,
        rgba(15, 15, 15, 0.75) 50%,
        rgba(15, 15, 15, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 100px 24px 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 17px;
    color: var(--gray-200);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-300);
    margin-top: 6px;
    display: block;
}

/* Agent Photo — Enhanced 3D + Glow */
.hero-agent {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 800px;
}

.agent-photo-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.agent-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 4px solid transparent;
    background-clip: padding-box;
    box-shadow:
        0 0 60px rgba(201, 169, 110, 0.4),
        0 0 120px rgba(201, 169, 110, 0.15),
        inset 0 0 30px rgba(201, 169, 110, 0.05);
    position: relative;
    z-index: 2;
    animation: photoGlow 4s ease-in-out infinite alternate;
}

@keyframes photoGlow {
    0% { box-shadow: 0 0 40px rgba(201, 169, 110, 0.3), 0 0 80px rgba(201, 169, 110, 0.1); }
    100% { box-shadow: 0 0 70px rgba(201, 169, 110, 0.5), 0 0 140px rgba(201, 169, 110, 0.2); }
}

/* Gold border ring via pseudo element */
.agent-photo-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--gold), var(--gold-dark), var(--gold-light), var(--gold), var(--gold-dark), var(--gold-light), var(--gold)
    );
    z-index: 1;
    animation: borderRotate 6s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.agent-photo-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--black);
    z-index: 1;
}

.agent-photo-ring {
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.3);
    animation: ringPulse 3s ease-in-out infinite;
}

.agent-photo-ring-2 {
    inset: -30px;
    border: 1px dashed rgba(201, 169, 110, 0.15);
    animation: ringPulse2 5s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.06); opacity: 0.15; }
}

@keyframes ringPulse2 {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.08) rotate(180deg); opacity: 0.1; }
}

/* Agent Photo Glow */
.agent-photo-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.2) 0%, transparent 70%);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 0.3; }
}

/* Sparkles */
.agent-photo-sparkle {
    position: absolute;
    color: var(--gold);
    font-size: 14px;
    z-index: 3;
    animation: sparkle 3s ease-in-out infinite;
    pointer-events: none;
    text-shadow: 0 0 8px rgba(201, 169, 110, 0.8);
}

.sparkle-1 {
    top: 5%;
    right: 10%;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 15%;
    left: 5%;
    animation-delay: 1s;
    font-size: 10px;
}

.sparkle-3 {
    top: 45%;
    right: 0;
    animation-delay: 2s;
    font-size: 12px;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-300);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gold);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--black-light);
}

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

.about-image {
    position: relative;
    perspective: 800px;
    transform-style: preserve-3d;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(201, 169, 110, 0.1);
    transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.about-image-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: -1;
    transition: var(--transition);
}

.about-image:hover .about-image-accent {
    top: 15px;
    left: 15px;
    right: -25px;
    bottom: -25px;
    opacity: 0.5;
}

.about-image-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
    border-radius: var(--radius-lg);
    z-index: -2;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-slow);
}

.about-image:hover .about-image-glow {
    opacity: 1;
}

.about-intro {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.7;
}

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

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

.highlight {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--black-lighter);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.highlight:hover {
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.08);
    background: linear-gradient(135deg, var(--black-lighter), rgba(201, 169, 110, 0.03));
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-sm);
    color: var(--black);
}

.highlight h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 4px;
}

.highlight p {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.6;
}

/* ============================================
   FEATURED PROPERTIES
   ============================================ */
.featured {
    background: var(--black);
}

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

/* Property Card — 3D Enhanced */
.property-card {
    background: var(--black-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99), box-shadow 0.4s ease, border-color 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
}

.property-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, transparent 50%, rgba(201, 169, 110, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

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

.property-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(201, 169, 110, 0.1);
}

.property-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius-xl);
}

.property-badge.sale {
    background: var(--gold);
}

.property-badge.rent {
    background: linear-gradient(135deg, #4a9eff, #0066cc);
    color: var(--white);
}

.property-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.property-view-btn {
    padding: 12px 28px;
    background: var(--gold);
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transform: translateY(10px);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.property-card:hover .property-view-btn {
    transform: translateY(0);
}

.property-info {
    padding: 24px;
}

.property-price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.price-period {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-300);
}

.property-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-300);
    margin-bottom: 12px;
}

.property-location svg {
    color: var(--gold);
    flex-shrink: 0;
}

.property-desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 16px;
}

.property-meta {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.property-meta span {
    font-size: 13px;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================
   LISTINGS SECTION
   ============================================ */
.listings {
    background: var(--black-light);
}

.listings-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    background: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

.listing-card .property-desc {
    display: none;
}

.listing-card.hidden {
    display: none;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--black);
}

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

.service-card {
    padding: 48px 36px;
    background: var(--black-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99), box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(34, 34, 34, 0.6));
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(201, 169, 110, 0.25);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(201, 169, 110, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
    border-radius: var(--radius-md);
    color: var(--gold);
    margin-bottom: 28px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.service-desc {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list li {
    font-size: 14px;
    color: var(--gray-200);
    padding-left: 22px;
    position: relative;
}

.service-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--black-light);
}

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

.testimonial-card {
    padding: 40px 32px;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(26, 26, 26, 0.7));
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99), box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--gold);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(201, 169, 110, 0.25);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(201, 169, 110, 0.08);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars span {
    color: var(--gold);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    font-style: italic;
    color: var(--gray-200);
    line-height: 1.8;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.testimonial-role {
    font-size: 13px;
    color: var(--gray-400);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--black);
}

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

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--black-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 16px;
    transition: var(--transition);
    cursor: pointer;
}

.contact-card:hover {
    border-color: rgba(201, 169, 110, 0.2);
    transform: translateX(6px);
}

.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-lighter);
    border-radius: var(--radius-sm);
    color: var(--gold);
}

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

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--white);
    margin-bottom: 2px;
}

.contact-card p {
    font-size: 14px;
    color: var(--gray-300);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--gray-300);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    padding: 40px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(34, 34, 34, 0.7));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

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

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-200);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    background: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.form-group select option {
    background: var(--black-lighter);
    color: var(--white);
}

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

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-submit svg {
    transition: var(--transition);
}

.btn-submit:hover svg {
    transform: translate(4px, -4px);
}

/* Form Success State */
.form-success {
    text-align: center;
    padding: 40px;
}

.form-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.2), rgba(201, 169, 110, 0.05));
    border-radius: 50%;
    color: var(--gold);
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-300);
    font-size: 15px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black-light);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand p {
    font-size: 15px;
    color: var(--gray-400);
    margin-top: 16px;
    max-width: 300px;
    line-height: 1.7;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

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

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--black);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow-sm);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--white);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   CHATBOT
   ============================================ */
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
}

.chatbot-toggle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    position: absolute;
    bottom: 0;
    right: 0;
}

.chatbot-toggle:hover {
    transform: scale(1.08);
}

.chatbot-icon-close {
    display: none;
}

.chatbot-container.open .chatbot-icon-open {
    display: none;
}

.chatbot-container.open .chatbot-icon-close {
    display: block;
}

.chatbot-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 380px;
    background: var(--black-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: var(--transition);
}

.chatbot-container.open .chatbot-popup {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.chatbot-header h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
}

.chatbot-status {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--black);
    cursor: pointer;
    padding: 4px;
    opacity: 0.6;
    transition: var(--transition);
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    height: 300px;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--gray-500);
    border-radius: 4px;
}

.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    line-height: 1.5;
    animation: messageIn 0.3s ease;
}

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

.chat-message.bot {
    align-self: flex-start;
    background: var(--black-lighter);
    color: var(--gray-200);
    border-bottom-left-radius: 4px;
}

.chat-message.user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-bottom-right-radius: 4px;
}

.chat-typing {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    align-self: flex-start;
    background: var(--black-lighter);
    border-radius: var(--radius-md);
    border-bottom-left-radius: 4px;
}

.chat-typing span {
    width: 6px;
    height: 6px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

.chatbot-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 12px;
}

.quick-reply {
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.quick-reply:hover {
    background: var(--gold);
    color: var(--black);
}

.chatbot-input {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chatbot-input input {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--white);
    background: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
}

.chatbot-input input:focus {
    border-color: var(--gold);
}

.chatbot-input input::placeholder {
    color: var(--gray-500);
}

.chatbot-input button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.chatbot-input button:hover {
    background: var(--gold-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-agent {
        order: -1;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .agent-photo-wrapper {
        width: 280px;
        height: 280px;
    }

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

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .featured-grid,
    .listings-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 40px;
        transition: var(--transition-slow);
    }

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

    .nav-link {
        font-size: 18px;
        padding: 14px 24px;
        width: 100%;
        text-align: center;
    }

    .nav-link.nav-cta {
        margin-left: 0;
        margin-top: 12px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 120px 24px 80px;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .agent-photo-wrapper {
        width: 220px;
        height: 220px;
    }

    .featured-grid,
    .listings-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .listings-filter {
        flex-wrap: wrap;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: auto;
    }

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

    .chatbot-popup {
        width: calc(100vw - 48px);
        right: -6px;
    }

    .whatsapp-float {
        bottom: 24px;
        right: 24px;
        width: 54px;
        height: 54px;
    }

    .chatbot-container {
        bottom: 88px;
        right: 24px;
    }

    .chatbot-toggle {
        width: 50px;
        height: 50px;
    }

    .scroll-top-btn {
        bottom: 24px;
        left: 24px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .agent-photo-wrapper {
        width: 180px;
        height: 180px;
    }
}

/* ============================================
   AWARDS SECTION
   ============================================ */
.awards {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.award-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.award-card:hover {
    border-color: rgba(201, 169, 110, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 169, 110, 0.1);
}

.award-image {
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
    position: relative;
    transform: translateZ(50px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.award-year {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: var(--radius-xl);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    transform: translateZ(30px);
}

.award-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    transform: translateZ(40px);
}

.award-org {
    font-size: 14px;
    color: var(--gray-400);
    transform: translateZ(30px);
}

@media (max-width: 1024px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .award-card {
        padding: 40px 30px;
    }
}

/* ============================================
   VIDEO TOUR SECTION
   ============================================ */
.video-tour {
    background: var(--black-light);
}

.video-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.video-player-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(201, 169, 110, 0.1);
    aspect-ratio: 16/9;
}

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

.video-features {
    display: flex;
    gap: 30px;
    margin: 30px 0 40px;
}

.video-feature {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.video-feature span {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
}

.video-feature p {
    font-size: 13px;
    color: var(--gray-400);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.item-wide {
    grid-column: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.8), transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cat {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.gallery-overlay h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--white);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--black-lighter);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: var(--shadow-lg);
}

.blog-img {
    height: 240px;
    overflow: hidden;
}

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

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

.blog-info {
    padding: 30px;
}

.blog-date {
    display: block;
    font-size: 12px;
    color: var(--gold);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
    transition: var(--transition);
}

.blog-card:hover .blog-title {
    color: var(--gold);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 24px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.blog-card:hover .blog-link {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        flex-direction: column;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BLOG DETAIL PREMIUM UPGRADE
   ============================================ */
.article-header {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, var(--black), var(--black-light));
}

.article-category {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.article-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 30px;
    max-width: 900px;
    margin-inline: auto;
}

.article-meta {
    color: var(--gray-400);
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-300);
}

.article-content h2 {
    color: var(--white);
    margin: 60px 0 30px;
    font-family: var(--font-heading);
    font-size: 32px;
}

.article-content p {
    margin-bottom: 30px;
}

.article-featured-image {
    width: 100%;
    margin-bottom: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Author Box */
.author-box {
    margin-top: 80px;
    padding: 60px;
    background: var(--black-lighter);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    gap: 40px;
    align-items: center;
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--black);
    flex-shrink: 0;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 10px;
}

.author-info p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-400);
    margin-bottom: 0;
}

/* Related Posts */
.related-posts {
    padding: 100px 0;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.related-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .article-header {
        padding-top: 120px;
    }
}

/* ============================================
   VISUAL SEPARATION & NAV REFINEMENT
   ============================================ */
.section:nth-of-type(even) {
    background-color: #0f0f0f;
}

.section:nth-of-type(odd) {
    background-color: #050505;
}

/* Fix Hero/About transition */
#hero { background-color: var(--black); }
#awards { background-color: #0a0a0a; }
#video { background-color: #050505; }
#about { background-color: #0a0a0a; }
#listings { background-color: #050505; }
#gallery { background-color: #0a0a0a; }
#services { background-color: #050505; }
#blog { background-color: #0a0a0a; }
#testimonials { background-color: #050505; }
#contact { background-color: #0a0a0a; }

.logo-text {
    display: flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
}

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

/* Blog Detail Image and Profile Fixes */
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-avatar {
    overflow: hidden;
    border: 2px solid var(--gold);
}

.related-post-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}

.related-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* ============================================
   HIGH-CONTRAST SECTION REFINEMENT (BLACK -> GREY)
   ============================================ */
/* BLACK SECTIONS (#000000) */
#hero, 
#video, 
#listings, 
#services, 
#testimonials {
    background-color: #000000 !important;
}

/* GREY/CHARCOAL SECTIONS (#121212) */
#awards, 
#about, 
#gallery, 
#blog, 
#contact {
    background-color: #121212 !important;
}

/* Ensure cards and elements are visible on both backgrounds */
.award-card, .listing-card, .service-card, .testimonial-card, .blog-card, .contact-card {
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.award-card:hover, .listing-card:hover, .service-card:hover, .testimonial-card:hover, .blog-card:hover, .contact-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
    background: rgba(255, 255, 255, 0.055);
}

/* Navbar Logo & Spacing Refinement */
.navbar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 8px; /* High-end spacing */
    letter-spacing: 0.5px;
    font-size: 21px; 
}

.logo-text .gold {
    margin-left: 2px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Fix for footer logo */
.footer-brand .nav-logo {
    justify-content: flex-start;
}

/* ============================================
   STRICT HIGH-CONTRAST (BLACK -> GREY RHYTHM)
   ============================================ */
/* BLACK SECTIONS (#000000) */
#hero, 
#video, 
#listings, 
#services, 
#testimonials {
    background-color: #000000 !important;
    background: #000000 !important;
}

/* DARK GREY SECTIONS (#1a1a1a) */
#awards, 
#about, 
#gallery, 
#blog, 
#contact {
    background-color: #1a1a1a !important;
    background: #1a1a1a !important;
}

/* Ensure glassmorphism is perfect on both backgrounds */
.award-card, .listing-card, .service-card, .testimonial-card, .blog-card, .contact-card {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.logo-text {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    letter-spacing: 0.5px !important;
    font-size: 22px !important;
}

.nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
}

.nav-links a {
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: var(--gray-300) !important;
}

.nav-links a:hover {
    color: var(--gold) !important;
}

.nav-links .btn-primary {
    padding: 10px 24px !important;
    color: var(--black) !important;
}

/* ============================================
   STRICT 1:1 HIGH-CONTRAST (BLACK -> GREY)
   ============================================ */
/* BLACK SECTIONS (#000000) */
#hero, 
#awards, 
#listings, 
#services, 
#blog {
    background: #000000 !important;
    background-color: #000000 !important;
}

/* DARK GREY SECTIONS (#1a1a1a) */
#about, 
#video, 
#gallery, 
#testimonials, 
#contact {
    background: #1a1a1a !important;
    background-color: #1a1a1a !important;
}

/* Ensure ALL section backgrounds are cleared */
.section { border: none !important; }

/* Navbar Expansion Support */
.nav-menu {
    gap: 15px !important; /* Slightly tighter gap for 8 items */
}

.nav-link {
    font-size: 13px !important; /* Elegant 13px for density */
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.logo-text {
    font-size: 20px !important;
    gap: 6px !important;
}

/* Navbar Restoration for Blog Details */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-toggle {
    display: none;
}

@media (max-width: 991px) {
    .nav-toggle { display: flex !important; }
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 300px;
        background: #0e0e0e;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px !important;
        transition: 0.3s ease;
        padding: 40px;
    }
    .nav-menu.active {
        right: 0;
    }
}

/* ============================================
   CLEANUP & FINAL CONTRAST (BLACK/GREY RHYTHM)
   ============================================ */
/* UNIVERSAL SECTION CONTRAST */
#hero, #awards, #listings, #services, #blog {
    background-color: #000000 !important;
    background: #000000 !important;
}

#about, #video, #gallery, #testimonials, #contact {
    background-color: #1a1a1a !important;
    background: #1a1a1a !important;
}

/* CARD CONTRAST (ALIGNED TO SECTION COLOR) */

/* 1. BLACK SECTIONS -> GREY CARDS (#1a1a1a) */
#awards .award-card, 
#listings .property-card, 
#services .service-card, 
#blog .blog-card {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

#awards .award-card:hover, 
#listings .property-card:hover, 
#services .service-card:hover, 
#blog .blog-card:hover {
    background: #222222 !important;
    border-color: rgba(201, 169, 110, 0.3) !important;
}

/* 2. GREY SECTIONS -> BLACK CARDS (#000000) */
#about .highlight, 
#testimonials .testimonial-card, 
#contact .contact-card, 
#contact .contact-form {
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

#about .highlight:hover, 
#testimonials .testimonial-card:hover, 
#contact .contact-card:hover {
    background: #0a0a0a !important;
    border-color: rgba(201, 169, 110, 0.3) !important;
}

/* Specific Card elements */
.gallery-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-overlay {
    background: rgba(0, 0, 0, 0.8) !important;
}

/* Ensure the navbar glassmorphism is perfect */
.navbar {
    background: rgba(0, 0, 0, 0.92) !important;
    backdrop-filter: blur(20px) !important;
}

/* ============================================
   PREMIUM GRADIENT CONTRAST (BLACK/GREY)
   ============================================ */

/* 1. BLACK SECTIONS -> GREY GRADIENT CARDS */
#awards .award-card, 
#listings .property-card, 
#services .service-card, 
#blog .blog-card {
    background: linear-gradient(145deg, #1e1e1e, #141414) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 
        10px 10px 20px rgba(0, 0, 0, 0.4),
        -5px -5px 15px rgba(255, 255, 255, 0.02) !important;
}

#awards .award-card:hover, 
#listings .property-card:hover, 
#services .service-card:hover, 
#blog .blog-card:hover {
    background: linear-gradient(145deg, #252525, #1a1a1a) !important;
    transform: translateY(-5px) !important;
    border-color: rgba(201, 169, 110, 0.4) !important;
}

/* 2. GREY SECTIONS -> BLACK GRADIENT CARDS */
#about .highlight, 
#testimonials .testimonial-card, 
#contact .contact-card, 
#contact .contact-form {
    background: linear-gradient(145deg, #111111, #000000) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 
        10px 10px 20px rgba(0, 0, 0, 0.6),
        -5px -5px 15px rgba(255, 255, 255, 0.01) !important;
}

#about .highlight:hover, 
#testimonials .testimonial-card:hover, 
#contact .contact-card:hover {
    background: linear-gradient(145deg, #1a1a1a, #050505) !important;
    transform: translateY(-5px) !important;
    border-color: rgba(201, 169, 110, 0.4) !important;
}

/* Specific Card elements refinements */
.property-info, .service-info, .award-info, .testimonial-info {
    background: transparent !important;
}

/* Subtle Top Light Effect for Cards */
.award-card::after, .property-card::after, .service-card::after, .testimonial-card::after, .contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

/* ============================================
   FINAL FOOTER RHYTHM (BLACK)
   ============================================ */
.footer {
    background: #000000 !important;
    background-color: #000000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* ============================================
   REFINED GOLDEN-GREY GRADIENTS (NO SOLID LOOK)
   ============================================ */

/* 1. BLACK SECTIONS -> REFINED CHARCOAL GREY CARDS */
#awards .award-card, 
#listings .property-card, 
#services .service-card, 
#blog .blog-card {
    background: linear-gradient(135deg, #2c2c2c 0%, #181818 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.05) !important;
}

#awards .award-card:hover, 
#listings .property-card:hover, 
#services .service-card:hover, 
#blog .blog-card:hover {
    background: linear-gradient(135deg, #353535 0%, #1e1e1e 100%) !important;
    border-color: rgba(201, 169, 110, 0.5) !important;
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(201, 169, 110, 0.15) !important;
}

/* 2. GREY SECTIONS -> REFINED ONYX GOLD CARDS */
#about .highlight, 
#testimonials .testimonial-card, 
#contact .contact-card, 
#contact .contact-form {
    background: linear-gradient(135deg, #1c1a16 0%, #000000 100%) !important;
    border: 1px solid rgba(201, 169, 110, 0.15) !important;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.7),
        inset 0 1px 1px rgba(201, 169, 110, 0.05) !important;
}

#about .highlight:hover, 
#testimonials .testimonial-card:hover, 
#contact .contact-card:hover {
    background: linear-gradient(135deg, #2a261f 0%, #050505 100%) !important;
    border-color: rgba(201, 169, 110, 0.6) !important;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.8),
        0 0 25px rgba(201, 169, 110, 0.2) !important;
}

/* Enhancing the "Top Light" with a hint of gold for Dark Cards */
#about .highlight::after, 
#testimonials .testimonial-card::after, 
#contact .contact-form::after {
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.2), transparent) !important;
}

/* ============================================
   PREMIUM MODAL SYSTEM
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: #0e0e0e;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9);
}

.modal.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    max-height: 85vh;
}

.modal-image-col {
    position: relative;
    overflow: hidden;
}

.modal-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.modal-info-col {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.modal-tag {
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.modal-price {
    font-size: 24px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 30px;
}

.modal-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.modal-meta span {
    color: var(--gray-300);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-desc {
    color: var(--gray-400);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    .modal-image-col {
        height: 300px;
    }
    .modal-info-col {
        padding: 40px;
    }
}
