/* Luxury Design System - Euphorica Realty (Light Mode) */

:root {
    /* Semantic Variables */
    --bg-body: #FAFAF5;
    /* Cream White */
    --bg-surface: #FFFFFF;
    /* Pure White */

    /* Brand Dark (Midnight Purple) instead of generic black */
    --bg-dark: #1a0b33;

    --text-main: #1a0b33;
    /* Dark Purple for main text instead of charcoal */
    --text-secondary: #555555;
    --text-light: #999999;
    --text-white: #FFFFFF;

    --accent-gold: #51229d;
    /* Deep Royal Purple */
    --accent-gold-light: #ee6306;
    /* Vibrant Orange */

    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(81, 34, 157, 0.3);

    /* Strict Brand Gradient */
    --gold-gradient: linear-gradient(135deg, #51229d 0%, #ee6306 100%);

    --transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Luxurious Shine Effects --- */

/* 1. Liquid Text Animation */
@keyframes text-shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* 2. Button Sheen (Light Beam) */
@keyframes shine-pass {
    0% {
        left: -100%;
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    50% {
        left: 100%;
        opacity: 0.8;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* 3. Subtle Pulse for Borders */
@keyframes border-pulse {
    0% {
        border-color: rgba(81, 34, 157, 0.3);
        box-shadow: 0 0 0 rgba(238, 99, 6, 0);
    }

    50% {
        border-color: rgba(238, 99, 6, 0.5);
        box-shadow: 0 0 15px rgba(238, 99, 6, 0.1);
    }

    100% {
        border-color: rgba(81, 34, 157, 0.3);
        box-shadow: 0 0 0 rgba(238, 99, 6, 0);
    }
}

/* Global Aesthetics */
::selection {
    background: var(--accent-gold-light);
    /* Orange Selection */
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-light);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    margin: 0;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Utilities */
.text-gold {
    color: var(--accent-gold);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.section-heading-large {
    font-size: 36px;
    margin: 20px 0 40px;
    color: var(--text-main);
}

.glass-panel {
    background: var(--bg-surface);
    border: 1px solid rgba(81, 34, 157, 0.1);
    /* Subtle brand border */
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    /* Shine on top edge */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 2px 0 rgba(255, 255, 255, 0.5);
    /* Inner shine */
    position: relative;
    overflow: hidden;
}

/* Luxury Form Styles */
/* Luxury Form Styles - Performance Optimized */
.form-box {
    background: rgba(255, 255, 255, 0.1);
    /* Slightly more opaque */
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* backdrop-filter: blur(10px); REMOVED for performance */
}

.form-label {
    display: block;
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Top Bar */
.top-bar-luxury {
    background-color: #1a0b33;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1001;
    /* Above navbar initially */
}

/* Sticky Mobile Bottom Bar */
.sticky-mobile-bar {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}

.call-btn {
    background-color: #51229d;
    /* Brand Purple */
}

.whatsapp-btn {
    background-color: #25D366;
    /* WhatsApp Green */
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-luxury a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-luxury a:hover {
    color: var(--accent-gold);
}

.top-bar-luxury i {
    color: var(--accent-gold);
}

.top-bar-luxury .divider {
    color: rgba(255, 255, 255, 0.2);
}

/* Navigation */
/* Navigation - Floating Glass Island */
.navbar-luxury {
    position: fixed;
    top: 60px;
    /* Below Top Bar */
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    z-index: 1000;
    padding: 15px 40px;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Initially Transparent - Force override */
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid transparent;
    border-radius: 50px;
    box-shadow: none;
}

.navbar-luxury.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    /* Almost solid opacity */
    /* backdrop-filter: blur(16px); REMOVED for performance */
    /* -webkit-backdrop-filter: blur(16px); REMOVED for performance */
    border: 1px solid rgba(81, 34, 157, 0.1);
    /* Subtle Brand Border */
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
    /* Simplified shadow */
    top: 10px;
    /* Slight movement */
    padding: 12px 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: #fff !important;
    /* Always white on dark glass */
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-item:hover,
.nav-item.active {
    color: var(--accent-gold) !important;
    font-weight: 700;
    /* Bolder interaction */
    border-bottom: 2px solid var(--accent-gold);
    /* Underline */
}

/* Scrolled Nav Items - Dark Text */
.navbar-luxury.scrolled .nav-item {
    color: var(--text-main) !important;
    text-shadow: none;
}

/* Ensure logo spans handle text color correctly */
.brand-logo span {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.navbar-luxury.scrolled .brand-logo span {
    color: var(--text-main) !important;
    text-shadow: none;
}

.brand-logo img {
    /* filter: brightness(0) invert(1); Logo is now Gold/Original */
    transition: var(--transition);
    max-height: 80px;
    /* Constraint */
}


.login-btn {
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-block;
    line-height: 1.2;
    background: rgba(255, 255, 255, 0.2);
    /* More opaque */
    /* backdrop-filter: blur(5px); REMOVED */
}

.btn-icon {
    display: none;
}

.btn-text {
    display: inline;
}

.navbar-luxury.scrolled .login-btn {
    border-color: var(--accent-gold);
    color: var(--text-main);
}

.login-btn:hover {
    background: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
}


/* Search Bar floating - Glass Card Container */
/* Hero Section */
.hero-luxury {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    /* Stack content vertically */
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-image: url('../images/luxury_hero.jpg');
    z-index: 1;
}

/* .hero-overlay removed to prevent darkening */

#gold-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: auto;
}

.hero-content {
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin-top: 80px;
    padding: 0 20px;
    color: #fff;
    /* Default white text for hero */
}

/* Inner Page Luxury Header */
.page-header-luxury {
    position: relative;
    height: 60vh;
    /* Taller, premium feel */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../images/luxury_hero.jpg');
    /* Consistent brand imagery */
    background-size: cover;
    background-position: center;
    margin-bottom: 60px;
}

/* Completely Transparent Overlay as per user request */
.page-header-luxury::before {
    display: none;
    /* Removed completely */
}

/* Hide the duplicate inner overlay if present to preventing double-darkening */
.page-header-luxury .hero-overlay {
    display: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    /* offset for fixed header */
    animation: fadeInUp 1s ease-out;
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    /* Solid White as requested */
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-family: 'Inter', sans-serif;
    color: #ffffff !important;
    /* Force White */
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-headline {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Cinzel', serif;

    /* Solid White for Clarity */
    color: #ffffff;

    /* Removed Gradient & Shimmer for cleaner look */
    /* background: linear-gradient(135deg, #51229d, #ee6306, #51229d); */
    /* -webkit-background-clip: text; */
    /* background-clip: text; */
    /* color: transparent; */

    text-shadow: 0 4px 10px rgba(81, 34, 157, 0.5);
    /* Stronger shadow for depth */
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.brand-title {
    font-family: 'Cinzel', serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;

    /* Solid White */
    color: #ffffff !important;

    /* Removed Gradient & Shimmer */
    /* background: var(--gold-gradient); */
    /* -webkit-background-clip: text; */
    /* background-clip: text; */
    /* color: transparent !important; */
    /* animation: text-shimmer 8s linear infinite; */

    text-shadow: 0 2px 4px rgba(81, 34, 157, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.hero-buttons .btn-luxury {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    position: relative;
    /* For shine */
    overflow: hidden;
    /* Contain shine */
}

/* Button Shine Effect */
.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
    z-index: 2;
    /* Sit on top */
    mix-blend-mode: overlay;
    /* Blend so text remains legible/shiny */
}

.btn-luxury:hover::before {
    animation: shine-pass 0.75s;
}

.hero-buttons .btn-luxury.btn-solid {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn-luxury.btn-gradient {
    background: var(--gold-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 15px rgba(81, 34, 157, 0.3);
}

.btn-luxury.btn-gradient:hover {
    background: var(--accent-gold);
    /* Fallback or slight shift */
    box-shadow: 0 8px 25px rgba(238, 99, 6, 0.4);
    transform: translateY(-2px);
    border-color: transparent;
}

.hero-buttons .btn-luxury:hover {
    background: #fff;
    color: var(--accent-gold);
    border-color: #fff;
}

/* Floating Search Bar - Refactored for MoneyTree Style */
.search-floating {
    position: relative;
    margin: 40px auto 0;
    width: 90%;
    max-width: 1250px;
    display: flex;
    padding: 10px;
    /* Reduced padding for the 'tight' pill look */
    gap: 10px;
    z-index: 20;
    animation: fadeInUp 1s ease-out 0.6s backwards;

    /* MoneyTree Style: Light Grey Pill */
    background: #f0f0f5;
    /* Light Greyish Blue/White */
    /* backdrop-filter: blur(10px); REMOVED */
    /* -webkit-backdrop-filter: blur(10px); REMOVED */
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Subtle white border */
    border-radius: 100px;
    /* Full Pill Shape */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Reduced shadow */
}

.search-item {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* MoneyTree Style: White Inner Cards */
    background: #ffffff;
    border-radius: 30px;
    /* Rounded Cards */
    padding: 12px 25px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    /* Very subtle shadow */
    transition: var(--transition);
    border: 1px solid transparent;
}

.search-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.search-item:focus-within {
    border-color: var(--accent-gold);
}

.search-label {
    font-size: 10px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-select {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 700;
    /* Bold text for value */
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    padding: 2px 0;
}

.search-select option {
    background: #fff;
    color: var(--text-main);
    padding: 10px;
}

.search-icon {
    color: var(--accent-gold);
    font-size: 14px;
    margin-left: 10px;
}

.search-btn-luxury {
    background: #ee6306;
    color: #fff;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 99, 6, 0.3);
    margin-left: 10px;
}

.search-btn-luxury:hover {
    transform: scale(1.05);
    background: #d95800;
    box-shadow: 0 6px 20px rgba(238, 99, 6, 0.4);
}

/* Featured Collections */
.featured-section {
    padding: 100px 50px;
    background: var(--bg-body);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 0;
    border: none;

    /* Gradient Text */
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Elegant Side Lines */
.section-subtitle::before,
.section-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    /* Slight thickness */
    background: var(--gold-gradient);
    /* Match text */
    opacity: 0.6;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.luxury-card {
    height: 500px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth Ease-Out */
}

.luxury-card:hover .card-img {
    transform: scale(1.1);
    /* Zoom Effect */
}

/* Mouse Glow Effect Overlay */
.luxury-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 5;
    pointer-events: none;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.15),
            transparent 40%);
    transition: opacity 0.3s;
}

.luxury-card:hover::after {
    opacity: 1;
}

.luxury-card:hover .card-img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    /* Gradient adapted for light mode? No, card overlay needs contrast for text */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.card-title {
    font-size: 24px;
    color: #fff;
    /* Keep white on card overlay */
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition);
}

.card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.card-meta {
    display: block;
}

.luxury-card:hover .card-meta {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.luxury-card:hover .card-title,
.luxury-card:hover .card-desc {
    transform: translateY(0);
    opacity: 1;
}

/* Slide-in Panel */
.contact-slide-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: var(--bg-surface);
    z-index: 2000;
    transition: var(--transition);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.contact-slide-panel.active {
    right: 0;
}

.panel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.panel-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        margin-top: 200px;
        /* Increased to 200px per user request */
        padding-bottom: 40px;
    }

    .hero-headline {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .search-floating {
        /* display: none; REMOVED - Making it visible */
        flex-direction: column;
        height: auto;
        border-radius: 24px;
        /* Card shape instead of full pill */
        padding: 15px;
        gap: 15px;
        background: rgba(255, 255, 255, 0.95);
        margin-top: 20px;
    }

    .search-item {
        width: 100%;
        flex: auto;
        /* Allow sizing */
    }

    /* Target the button specifically if possible, or assume last child */
    .search-floating button.search-btn-luxury {
        width: 100% !important;
        flex: auto !important;
        height: 50px !important;
        margin-left: 0 !important;
        border-radius: 16px !important;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Specific Search Button Styling */
.search-btn-luxury {
    flex: 0 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-gold);
    border-radius: 30px;
    /* Matching the cards */
    margin-left: 5px;
    height: auto;
    min-height: 100%;
    /* Fill container height */
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(81, 34, 157, 0.4);
    transition: var(--transition);
}

.search-btn-luxury:hover {
    background: var(--accent-gold-light);
    /* Orange on hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 99, 6, 0.4);
}

.search-btn-luxury i {
    color: #fff;
    font-size: 22px;
}

/* Mobile-specific overrides for Navbar and Contact Panel */
@media (max-width: 768px) {
    .navbar-luxury {
        padding: 15px 20px;
        top: 60px;
        /* Account for top bar on mobile too */
    }

    .top-bar-luxury {
        display: block;
        /* Show on mobile */
    }

    .sticky-mobile-bar {
        display: flex;
        /* Show on mobile */
    }

    body {
        padding-bottom: 50px;
        /* Prevent content blocked by sticky bar */
    }

    .top-bar-container {
        flex-direction: column;
        gap: 5px;
        padding: 5px 20px;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

    .nav-links {
        display: none;
    }

    .login-btn {
        display: none;
    }

    .contact-slide-panel {
        width: 100%;
        right: -100%;
    }

    /* Mobile Hamburger Visibility */
    .mobile-menu-btn {
        display: block;
        /* Visible only on mobile */
    }
}

/* End mobile media query */

/* Force Desktop Visibility */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
    }

    .mobile-menu-btn {
        display: none;
        /* Hide on desktop */
    }
}

/* --- Mobile Navigation Styles --- */
.mobile-menu-btn {
    display: none;
    /* Hidden by default (Desktop) */
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
    margin-left: 15px;
    z-index: 1001;
}

/* Force mobile visibility again via media query at the end to be safe */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(26, 11, 51, 0.98);
    /* Deep Brand Dark */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.close-mobile-nav {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav-item {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-nav-overlay.active .mobile-nav-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease 0.2s;
    /* Stagger effect logic would need nth-child, keeping simple delay for now */
}

/* Add minimal stagger delay manually */
.mobile-nav-overlay.active .mobile-nav-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-nav-item:hover {
    color: var(--accent-gold-light);
    transform: scale(1.1);
}

/* --- Luxury Footer --- */
.footer-luxury {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    /* Space from content */
}

/* Decoration Top Line */
.footer-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    box-shadow: 0 0 20px rgba(238, 99, 6, 0.5);
    /* Glowing Top */
}

.footer-brand {
    padding-right: 40px;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-socials a:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(81, 34, 157, 0.4);
}

.footer-heading {
    font-family: 'Cinzel', serif;
    color: var(--accent-gold);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold-light);
    transform: translateX(5px);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-contact-list i {
    color: var(--accent-gold);
    margin-top: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin: 0;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal-links a:hover {
    color: #fff;
}

/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .footer-luxury {
        padding: 50px 0 20px;
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links a:hover {
        transform: translateX(0);
        /* Minimal movement on touch */
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-legal-links {
        justify-content: center;
        margin-top: 20px;
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
    }
}

/* --- Luxury Timeline (Vertical) --- */
.luxury-timeline {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(81, 34, 157, 0.2);
    margin-top: 10px;
}

.luxury-timeline-item {
    position: relative;
    padding: 10px 0 10px 20px;
    transition: var(--transition);
}

.luxury-timeline-dot {
    position: absolute;
    left: -7px;
    top: 18px;
    width: 12px;
    height: 12px;
    background: var(--bg-surface);
    border: 2px solid var(--text-light);
    border-radius: 50%;
    transition: var(--transition);
}

.luxury-timeline-link {
    display: block;
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.luxury-timeline-date {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

/* Active State */
.luxury-timeline-item.active .luxury-timeline-dot {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(238, 99, 6, 0.2);
}

.luxury-timeline-item.active .luxury-timeline-link {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.luxury-timeline-item:hover .luxury-timeline-dot {
    border-color: var(--accent-gold);
}

.luxury-timeline-item:hover .luxury-timeline-link {
    color: var(--accent-gold);
}

/* --- Luxury Masonry Grid --- */
.luxury-masonry-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.luxury-masonry-item {
    flex: 1 1 30%;
    /* Approx 3 columns */
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.luxury-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    display: block;
}

.luxury-masonry-item:hover img {
    transform: scale(1.1);
}

/* Responsive Grid */
@media (max-width: 992px) {
    .luxury-masonry-item {
        flex: 1 1 45%;
    }

    /* 2 columns */
}

@media (max-width: 576px) {
    .luxury-masonry-item {
        flex: 1 1 100%;
        height: 200px;
    }

    /* 1 column */
}

/* --- Details Page Components --- */
.details-hero-section {
    height: 60vh;
    min-height: 400px;
    position: relative;
    background: #000;
}

.details-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.details-content-wrapper {
    max-width: 1200px;
    margin: -80px auto 50px;
    position: relative;
    z-index: 10;
    display: flex;
    gap: 30px;
    padding: 0 20px;
}

.details-main {
    flex: 1;
}


/* --- Property Details Enhancements --- */

/* Map Styling */
.property-map-location {
    margin-bottom: 60px;
}

.property-map-iframe {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(81, 34, 157, 0.1);
    position: relative;
    background: #fff;
    padding: 10px;
    /* Frame effect */
}

.property-map-iframe iframe {
    width: 100% !important;
    height: 450px !important;
    border-radius: 12px;
    display: block;
}

/* Amenities Grid Styling Override */
.property-amenities-box {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(81, 34, 157, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05) !important;
    padding: 40px !important;
}

.property-amenities-box li {
    font-size: 16px;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.property-amenities-box li:hover {
    background: rgba(81, 34, 157, 0.05);
    transform: translateX(5px);
}

.property-amenities-box i {
    font-size: 18px;
    color: var(--accent-gold);
}

/* Glass Panel Utility */
.glass-panel {
    background: var(--bg-surface);
    /* Fallback */
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Specs Grid */
.luxury-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.luxury-spec-item {
    text-align: center;
}

.luxury-spec-item i {
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 10px;
    display: block;
}

.luxury-spec-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
}

.luxury-spec-value {
    display: block;
    font-size: 16px;
    color: var(--text-main);
    font-weight: 600;
    margin-top: 5px;
}

/* Enquiry Box */
.luxury-enquiry-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    border-top: 4px solid var(--accent-gold);
}

/* Responsive Details */
@media (max-width: 900px) {
    .details-content-wrapper {
        flex-direction: column;
        margin-top: -40px;
    }

    .details-sidebar {
        width: 100%;
    }

    .luxury-specs-grid {
        gap: 10px;
    }
}

/* --- Gallery Layout (Responsive) --- */
.luxury-gallery-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.luxury-gallery-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.luxury-gallery-content {
    flex-grow: 1;
    width: calc(100% - 290px);
    /* 250px sidebar + 40px gap */
}

/* Mobile Gallery Layout (< 900px) */
@media (max-width: 900px) {
    .luxury-gallery-layout {
        flex-direction: column;
        gap: 30px;
    }

    .luxury-gallery-sidebar {
        width: 100%;
        margin-bottom: 20px;
    }

    .luxury-gallery-content {
        width: 100%;
    }

    /* Transform Vertical Timeline to Horizontal Scroll on Mobile */
    .luxury-gallery-sidebar .luxury-timeline {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 15px;
        /* Space for scrollbar */
        border-left: none;
        border-bottom: 1px solid rgba(81, 34, 157, 0.1);
        padding-left: 0;
        margin-top: 0;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling iOS */
    }

    .luxury-gallery-sidebar .luxury-timeline-item {
        flex: 0 0 auto;
        padding: 10px 15px;
        margin-right: 15px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .luxury-gallery-sidebar .luxury-timeline-dot {
        display: none;
        /* Hide dots in horizontal mode */
    }

    .luxury-gallery-sidebar .luxury-timeline-link {
        font-size: 14px;
        padding: 0;
    }

    .luxury-gallery-sidebar .luxury-timeline-item.active {
        background: var(--accent-gold);
        color: #fff;
        border-color: var(--accent-gold);
    }

    .luxury-gallery-sidebar .luxury-timeline-item.active .luxury-timeline-link {
        color: #fff;
        transform: none;
    }

    .luxury-gallery-sidebar .luxury-timeline-date {
        display: none;
        /* Hide date to save space */
    }
}

/* =========================================
   Homepage Expansion Styles (2025-12-19)
   ========================================= */

/* --- Luxury Split Layout (About) --- */
.luxury-split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.luxury-split-content {
    flex: 1;
}

.luxury-split-image {
    flex: 1;
}

.section-title-large {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    color: var(--text-main);
    margin: 15px 0 30px;
    line-height: 1.2;
}

.luxury-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.image-composition {
    position: relative;
    height: 500px;
}

.comp-img-main {
    width: 80%;
    height: 400px;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.comp-img-sub {
    width: 60%;
    height: 300px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 3;
    border: 5px solid #fff;
}

.gold-border-frame {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border: 2px solid var(--accent-gold);
    z-index: 1;
    opacity: 0.3;
}

@media (max-width: 992px) {
    .luxury-split-layout {
        flex-direction: column;
        gap: 40px;
    }

    .image-composition {
        height: 400px;
    }

    .comp-img-main {
        width: 90%;
        height: 300px;
    }

    .comp-img-sub {
        width: 70%;
        height: 200px;
    }
}

/* --- Property Category Grid --- */
.luxury-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.luxury-cat-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: block;
    text-decoration: none;
}

.luxury-cat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(81, 34, 157, 0.15);
    border-color: var(--accent-gold-light);
}

.cat-icon {
    font-size: 30px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    transition: var(--transition);
}

.luxury-cat-card:hover .cat-icon {
    transform: scale(1.2);
    color: var(--accent-gold-light);
}

.cat-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 10px;
}

.cat-link {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    transition: var(--transition);
}

.luxury-cat-card:hover .cat-link {
    color: var(--accent-gold);
}

/* --- Process Grid (How It Works) --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-card {
    background: #fff;
    padding: 50px 30px 40px;
    border-radius: 4px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    overflow: hidden;
    /* For watermark clipping */
    z-index: 1;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.process-card:hover::before {
    width: 100%;
}

.process-step-number {
    font-family: 'Cinzel', serif;
    font-size: 80px;
    color: rgba(81, 34, 157, 0.03);
    position: absolute;
    top: -10px;
    right: 10px;
    font-weight: 700;
    z-index: -1;
    line-height: 1;
    transition: var(--transition);
}

.process-card:hover .process-step-number {
    color: rgba(81, 34, 157, 0.08);
    transform: scale(1.1);
}

.process-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(81, 34, 157, 0.05) 0%, rgba(238, 99, 6, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--accent-gold);
    transition: var(--transition);
    border: 1px solid rgba(81, 34, 157, 0.1);
}

.process-card:hover .process-icon-circle {
    background: var(--gold-gradient);
    color: #fff;
    border-color: transparent;
    transform: rotateY(180deg);
}

.process-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--text-main);
    margin-bottom: 15px;
    transition: var(--transition);
}

.process-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Partners Marquee --- */
.partners-marquee {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    white-space: nowrap;
    width: 100vw;
    /* Ensure full viewport width */
    max-width: 100%;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 50px;
    animation: marqueeScroll 40s linear infinite;
}

.partner-logo-item {
    flex-shrink: 0;
    width: 150px;
    transition: var(--transition);
}

.partner-logo-item img {
    width: 100%;
    height: auto;
    display: block;
}

.partner-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partners-marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .luxury-section {
        padding: 50px 0 !important;
    }

    .partners-marquee {
        margin-top: 30px;
    }

    .marquee-content {
        gap: 30px;
        animation-duration: 20s;
    }

    .partner-logo-item {
        width: 100px;
    }
}

/* --- Luxury Form Components --- */

/* Wrapper for sidebar forms */
.luxury-enquiry-box {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

/* Subtle gold line at top to brand it */
.luxury-enquiry-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
}

/* Standard Inputs */
.form-control {
    display: block;
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: #fcfcfc;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.form-control:hover {
    background-color: #fff;
    border-color: #d0d0d0;
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(81, 34, 157, 0.1);
    outline: none;
    transform: translateY(-1px);
}

/* Labels */
.form-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.form-control:focus+.form-label,
.form-control:active+.form-label {
    color: var(--accent-gold);
}

/* Select inputs */
select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2351229d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    appearance: none;
    -webkit-appearance: none;
}

/* Dark Mode Input Variant */
.form-control.dark-mode {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.form-control.dark-mode:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

.form-control.dark-mode:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(238, 99, 6, 0.2);
}

.form-control.dark-mode::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Fix select overlap in dark mode */
select.form-control.dark-mode option {
    background-color: #1a0b33;
    color: #fff;
}

/* Premium Gradient Button */
.btn-gradient {
    background: var(--gold-gradient);
    color: white;
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ee6306 0%, #51229d 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-gradient:hover::before {
    opacity: 1;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(238, 99, 6, 0.4);
    color: white;
}

/* --- About Page Components --- */

/* Core Values Grid (4 Pillars) */
.luxury-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.luxury-value-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.luxury-value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(81, 34, 157, 0.1);
}

.luxury-value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.luxury-value-item:hover::before {
    transform: scaleX(1);
}

.value-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(81, 34, 157, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-gold);
    font-size: 24px;
    transition: all 0.3s ease;
}

.luxury-value-item:hover .value-icon-wrapper {
    background: var(--accent-gold);
    color: #fff;
}

/* Founder Split Section */
.founder-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 100px 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.founder-image-col {
    height: 100%;
    min-height: 400px;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-content-col {
    padding: 60px;
}

.quote-box-luxury {
    border-left: 4px solid var(--accent-gold);
    padding-left: 25px;
    margin: 30px 0;
    font-family: 'Cinzel', serif;
    font-style: italic;
    color: var(--text-main);
    font-size: 18px;
    line-height: 1.8;
}

/* Luxury Team Card */
.team-card-luxury {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    padding-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-card-luxury:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.team-img-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.team-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card-luxury:hover .team-member-img {
    transform: scale(1.05);
}

.team-name {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 5px;
}

.team-role {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    font-weight: 600;
}

/* Mobile responsive for About */
@media (max-width: 991px) {
    .founder-split {
        grid-template-columns: 1fr;
    }

    .founder-image-col {
        min-height: 300px;
    }

    .founder-content-col {
        padding: 40px 25px;
    }
}

/* --- Career Page Components --- */

/* Culture Section */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.culture-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--accent-gold);
    transition: transform 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-5px);
}

/* Job Grid */
.job-grid-luxury {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.job-card-luxury {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.job-card-luxury:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(81, 34, 157, 0.1);
    border-color: rgba(81, 34, 157, 0.2);
}

.job-head {
    margin-bottom: 20px;
}

.job-title-lux {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.job-loc-lux {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.job-tag {
    background: rgba(81, 34, 157, 0.04);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(81, 34, 157, 0.1);
}

.desc-preview {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Apply Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.career-modal {
    background: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .career-modal {
    transform: scale(1);
}

.modal-left {
    padding: 40px;
    background: #f9f9f9;
    overflow-y: auto;
    border-right: 1px solid #eee;
}

.modal-right {
    padding: 40px;
    background: #fff;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.close-modal:hover {
    background: #ddd;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .career-modal {
        grid-template-columns: 1fr;
        max-width: 95%;
        height: 85vh;
        overflow-y: auto;
    }

    .modal-left,
    .modal-right {
        padding: 25px;
        overflow: visible;
    }
}

/* --- Enhanced Listing Page --- */

/* Sidebar Filter */
.filter-panel {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 120px;
    /* Sticky below header */
}

.filter-heading {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(81, 34, 157, 0.1);
}

.form-group-lux {
    margin-bottom: 20px;
}

.form-label-lux {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-select-lux {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    background: #fafaf5;
    border-radius: 6px;
    color: var(--text-main);
    font-size: 14px;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2351229d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.form-select-lux:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(81, 34, 157, 0.1);
    outline: none;
    background-color: #fff;
}

/* Premium Listing Card */
.listing-card-premium {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.listing-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.lc-img-box {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.lc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.listing-card-premium:hover .lc-img {
    transform: scale(1.1);
}

.lc-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lc-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lc-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 5px;
    line-height: 1.4;
}

.lc-loc {
    color: #888;
    font-size: 13px;
    margin-bottom: 20px;
    display: block;
}

.lc-specs {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 13px;
}

.lc-spec-item i {
    color: var(--accent-gold);
    margin-right: 6px;
}


/* --- Horizontal Filter Bar --- */
.filter-bar-container {
    max-width: 1400px;
    margin: -40px auto 40px;
    /* Overlap hero slightly */
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.filter-bar-horizontal {
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Stronger shadow */
    display: flex;
    align-items: center;
    /* Vertically align items */
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.fb-group {
    flex: 1;
    /* Equal width for inputs */
}

.fb-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.fb-select {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #eee;
    background: transparent;
    font-size: 14px;
    color: var(--text-main);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.fb-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.fb-btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
    height: 48px;
    /* Match input visual height */
    box-shadow: 0 5px 15px rgba(81, 34, 157, 0.2);
}

@media (max-width: 991px) {
    .filter-bar-horizontal {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-bar-container {
        margin-top: 20px;
    }
}

/* --- Luxury Header Dropdown --- */
.nav-item {
    position: relative;
    padding: 10px 0;
    /* Add vertical padding for hover area */
}

/* Dropdown Container */
.dropdown-menu-luxury {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 10px);
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px 0;
    z-index: 1000;
    border-top: 3px solid var(--accent-gold);
    transition: all 0.3s ease;
    margin-top: 15px;
    /* Spacing */
    pointer-events: none;
}

/* Invisible Bridge for gap */
.dropdown-menu-luxury::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

/* Show on Hover */
.nav-item:hover .dropdown-menu-luxury {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #fafaf5;
    color: var(--accent-gold);
    padding-left: 25px;
    /* Slide effect */
}

/* Chevron */
.nav-item i.fa-chevron-down {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.nav-item:hover i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Swiper Navigation Arrows - Fix for misplacement */
.swiper {
    position: relative !important;
}

.swiper-arrow-prev,
.swiper-arrow-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 100 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    color: var(--accent-gold) !important;
    font-size: 18px !important;
}

.swiper-arrow-prev:hover,
.swiper-arrow-next:hover {
    background: var(--accent-gold) !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(81, 34, 157, 0.4) !important;
    border-color: var(--accent-gold) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.swiper-arrow-prev {
    left: 20px !important;
    right: auto !important;
}

.swiper-arrow-next {
    right: 20px !important;
    left: auto !important;
}

/* --- Luxury Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-dialog {
    margin: 10% auto;
    width: 90%;
    max-width: 500px;
}

.modal-content {
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.modal-body {
    padding: 30px;
}

.modal-body p img {
    height: 40px;
    margin-bottom: 15px;
}

.modal-body strong {
    display: block;
    font-size: 18px;
    font-family: 'Cinzel', serif;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: center;
}

.modal-body label {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.modal-body input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* --- NEW Luxury Popup Styles --- */
.luxury-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 20px;
}

.luxury-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.luxury-popup-card {
    background: #fff;
    width: 100%;
    max-width: 1000px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.luxury-popup-overlay.active .luxury-popup-card {
    transform: translateY(0) scale(1);
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    color: var(--text-main);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close-btn:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: rotate(90deg);
}

.popup-grid {
    display: grid;
    grid-template-columns: 45% 55%;
}

.popup-image {
    background-image: url('../images/projects/sikka-mall.jpg');
    /* Default hook */
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
}

.popup-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.popup-image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: #fff;
    z-index: 2;
}

.popup-tag {
    background: var(--accent-gold);
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.popup-image h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    line-height: 1.2;
    margin: 0;
    color: #ee6306;
}

.popup-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-header {
    margin-bottom: 25px;
}

.popup-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    margin: 5px 0 10px;
    color: var(--text-main);
}

.popup-header p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.popup-form .form-group {
    margin-bottom: 15px;
}

.popup-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
}

.popup-form input:focus {
    background: #fff;
    border-color: var(--accent-gold);
    outline: none;
    box-shadow: 0 4px 12px rgba(238, 99, 6, 0.1);
}

.privacy-note {
    text-align: center;
    font-size: 11px;
    color: #999;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .popup-grid {
        grid-template-columns: 1fr;
    }

    .popup-image {
        min-height: 200px;
    }

    .popup-content {
        padding: 30px;
    }

    .popup-header h2 {
        font-size: 24px;
    }
}
/* FIX: Override unwanted breadcrumb separator from theme */
.breadcrumb-item + .breadcrumb-item::before {
    content: '/' !important;
    font-family: var(--bs-font-sans-serif) !important;
    color: rgba(255,255,255,0.7) !important;
}

/* FIX 2: Stronger override for breadcrumbs */
.breadcrumb-item::before, .breadcrumb-item + .breadcrumb-item::before {
    content: '/' !important;
    font-family: sans-serif !important;
    color: rgba(255,255,255,0.8) !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
}

/* Team Member Image Fixes */
.team-card-luxury {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card-luxury:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.team-img-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.team-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-card-luxury:hover .team-member-img {
    transform: scale(1.05);
}

.team-name {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--text-main, #333);
    margin-bottom: 5px;
}

.team-role {
    font-size: 14px;
    color: var(--text-gold, #d4af37);
    text-transform: uppercase;
    letter-spacing: 1px;
}
