:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #FFD700;
    --dark-bg: #000000;
    --light-text: #FFFFFF;
    --gray-text: #CCCCCC;
    --accent-gray: #1A1A1A;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}



.luxury-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, rgba(212, 175, 55, 0.05) 0%, transparent 30%),
        linear-gradient(135deg, rgba(197, 167, 54, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 20%, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.luxury-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    animation: float 8s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 3rem;
    margin-top: 10rem;
    margin-bottom: 0;
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-content {
    animation: luxurySlideIn 1.2s ease-out;
}

@keyframes luxurySlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}


.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 88px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #d4af37, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: luxuryGradient 4s ease-in-out infinite;
    float: left;
    width: 100%;
    padding: 0 0 10px 0;
}

@keyframes luxuryGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

}

/* .hero-highlight {
    background: linear-gradient(135deg, #d4af37, #c5a736);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #d4af37;
    padding: 0;
    line-height: 26px;
    text-align: center;
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
}

.stat-label {
    font-size: 0.775rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: auto;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: luxuryFloat 6s ease-in-out infinite;
}

@keyframes luxuryFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.luxury-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.8);
    color: #d4af37;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}

/* Featured Properties */
.featured-properties {
    padding: 70px 32px;
    background: rgba(0, 0, 0, 0.5);
    float: left;
    width: 100%;
}


section.luxury-services {
    position: relative;
    padding: 0 32px 0 32px;
    float: left;
    width: 100%;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}


/* 
.title-highlight {
    background: linear-gradient(135deg, #d4af37, #c5a736);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */

.section-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

.property-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.property-image-container {
    position: relative;
    height: auto;
    overflow: hidden;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.property-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
}



.filter-toggle-btn {
    display: none;
}

button.close-filters {
    display: none;
}




.placeholder-icon {
    font-size: 4rem;
    color: #d4af37;
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

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

.property-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.9);
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #d4af37;
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge.featured {
    background: #d4af37;
    color: #000;
}

.badge.exclusive {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border: 1px solid #d4af37;
}

.property-content {
    padding: 2rem;
}



.price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: normal;
}

.property-title a {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 0;
    display: block;
    transition: color 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    line-height: 30px;
}

.property-title a:hover {
    color: #d4af37;
}

.property-location {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
}

.property-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1rem;
}

.property-actions-bottom {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 15px;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    display: inline-block;
    text-align: center;
}

.btn-luxury {
    background: linear-gradient(135deg, #d4af37, #c5a736);
    color: #000000;
    position: relative;
    overflow: hidden;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-luxury:hover::before {
    left: 100%;
}

.btn-outline-luxury {
    background: transparent;
    border: 1px solid #d4af37 !important;
    color: #d4af37;
}

.btn-outline-luxury:hover {
    background: #d4af37;
    color: #000000;
}

.btn-view {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    flex: 1;
}

.btn-view:hover {
    background: rgba(212, 175, 55, 0.2);
}

.btn-contact {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex: 1;
}

.btn-contact:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

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

.empty-state {
    text-align: center;
    padding: 4rem 0;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.empty-state p {
    color: rgba(255, 255, 255, 0.7);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(336px, 1fr));
    gap: 3rem;
}

.service-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem;
    text-align: center;
    transition: 0.3s;
    transform: translateY(0px);
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 2rem;
}

.service-icon .icon {
    font-size: 4rem;
    color: #d4af37;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    line-height: 30px;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    font-size: 14px;
}

.service-features a {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 0.875rem 2.5rem;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    width: auto;
}

.service-features a:hover {
    background: #d4af37;
    color: #000;
}

.service-features {
    display: flex;
    justify-content: center;
}

.service-features .feature {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cta-section {
    padding: 50px 32px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin: 70px 0 0 0;
    float: left;
    width: 100%;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0rem;
    text-align: center;
    text-transform: uppercase;
    line-height: 60px;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-align: center;
}

.cta-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.luxury-gradient {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
}

.dark-gradient {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
}

.glass-effect {
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    padding: 0;
    border-radius: 0;
}



.cta-button {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--dark-bg);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

/* Main content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}



/* Section spacing */
.section {
    padding: 32px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    line-height: 60px;
}

.card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

/* Property cards */
.property-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 3rem;
}

.property-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.property-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.property-content {
    padding: 1.5rem;
}

.property-price {
    font-family: 'Inter', sans-serif !important;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.property-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.property-location {
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.property-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.footer {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    padding: 50px 32px 15px 32px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    float: left;
    width: 100%;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gray-text);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}


ul.nav-menu li a.nav-link:hover {
    border-bottom: 2px solid #fad307;
    color: #fad307;
}

ul.nav-menu li {
    padding: 10px 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 41px;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    min-width: 180px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown-content a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.hamburger {
    display: none;
    font-size: 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
}


.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    transform: translateX(5px);
}

.nav-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}





.login-container {
    min-height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    float: left;
    width: 100%;
    margin: 30px 0 0 0;
}

/* Left Side - Login Form */
.login-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.login-form-container {
    width: 100%;
    max-width: 450px;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.logo {
    text-align: center;
}

.logo_login h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(45deg, #D4AF37, #FFD700, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.logo_login p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo_login {
    text-align: center;
}

.card.setting_user a {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
}

.card.setting_user .settings-nav.active svg path {
    fill: #d4af37 !important;
}

.card.setting_user .settings-nav.active svg circle {
    fill: #d4af37 !important;
}

.welcome-text {
    text-align: center;
    margin-bottom: 2rem;
}

.welcome-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0;
}

.welcome-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.error-messages {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.error-item {
    color: #ef4444;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.error-item:last-child {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #D4AF37;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.terms-checkbox,
.newsletter-checkbox {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    gap: 3px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 10px 0 10px 0;
    line-height: 1.5;
    float: left;
    width: 100%;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.25rem;
    accent-color: #D4AF37;
}

.checkbox-text {
    flex: 1;
}

.checkbox-text a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-text a:hover {
    color: #FFD700;
}

.register-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}


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

.login-link p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.login-link a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}


/* Right Side - Register Form */
.register-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0.95) 100%);
    overflow-y: auto;
}

.register-form-container {
    width: 100%;
    max-width: 450px;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    margin: 2rem 0;
}

.error-messages {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.error-item {
    color: #ef4444;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.register-container {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.register-container .hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&h=800') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-item:last-child {
    margin-bottom: 0;
}

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

.login-link a:hover {
    color: #FFD700;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
}



.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 3px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #D4AF37;
}

.forgot-password {
    color: #D4AF37;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #FFD700;
}

.login-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.divider span {
    background: rgb(1 1 0) !important;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    z-index: 9;
    position: relative;
}

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

.register-link p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.register-link a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-link a:hover {
    color: #FFD700;
}

/* Right Side - Hero Image */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&h=800') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.hero-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.4);
}

/* .feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 600;
    font-size: 1.2rem;
} */

.feature-text h4 {
    color: #D4AF37;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}



.form-group select option {
    color: #000;
}



._proper_tries {
    padding: 6rem 3rem 6rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
}



._proper_tries .page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #d4af37, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

._proper_tries .page-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.filters-section {
    padding: 70px 0 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    float: left;
    width: 100%;
    position: relative;
}

.filters-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: end;
}

.filter-group {
    position: relative;
    width: 100%;
}


.filter-group label {
    display: block;
    color: #d4af37;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: 53px;
    border-radius: 0;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.filter-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1.75rem;
    height: 53px;
    padding: 10px !important;
}


.properties-section.proper_page {
    padding: 3rem 3rem;
}

.properties-section.proper_page .properties-container {
    max-width: 1600px;
    margin: 0 auto;
}

.properties-section.proper_page .properties-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 2rem;
}

.properties-section.proper_page .results-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.properties-section.proper_page .clear-filters {
    color: #d4af37;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.properties-section.proper_page .clear-filters:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

.properties-section.proper_page .sort-select {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    cursor: pointer;
}

.properties-section.proper_page .properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.properties-section.proper_page .luxury-property-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    cursor: pointer;
}

.properties-section.proper_page .luxury-property-card:hover {
    transform: translateY(-20px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
}

.properties-section.proper_page .property-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: contrast(1.1) brightness(1.05);
}

.properties-section.proper_page .luxury-property-card:hover .property-image {
    transform: scale(1.1);
}

.properties-section.proper_page .property-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.properties-section.proper_page .placeholder-icon {
    font-size: 4rem;
    color: #d4af37;
}

.properties-section.proper_page .property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    height: 103%;
}

.properties-section.proper_page .luxury-property-card:hover .property-overlay {
    opacity: 1;
}

.properties-section.proper_page .property-actions {
    display: flex;
    gap: 1rem;
}



.properties-section.proper_page .action-btn {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.9);
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.properties-section.proper_page .action-btn:hover {
    background: #d4af37;
    transform: scale(1.1);
}

.properties-section.proper_page .property-content {
    padding: 20px 15px;
}

.properties-section.proper_page .property-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #d4af37, #c5a736);
    color: #000000;
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.properties-section.proper_page .property-badge.exclusive {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #ffffff;
}

.properties-section.proper_page .property-badge.new {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: #ffffff;
}

.properties-section.proper_page .property-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.properties-section.proper_page .property-location {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 300;
}

.properties-section.proper_page .property-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
}







.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
}

.pagination-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    color: #d4af37;
}

.pagination-btn.active {
    background: #d4af37;
    border-color: #d4af37;
    color: #000;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


section.hero-gallery.providew_view {
    margin-top: 1rem;
    padding: 2rem 3rem;
    float: left;
    width: 100%;
    position: relative;
}

section.hero-gallery.providew_view .gallery-container {
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    height: 100%;
    float: left;
    width: 100%;
    position: relative;
}

.main-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.placeholder-main {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.placeholder-icon {
    font-size: 6rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.thumbnail-grid {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
}

.thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: brightness(0.7);
}

.thumbnail:hover img {
    filter: brightness(1);
    transform: scale(1.1);
}

section.hero-gallery.providew_view .view-all-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #d4af37;
    padding: 0.75rem 1.5rem;
    border: 1px solid #d4af37;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

section.hero-gallery.providew_view .view-all-btn:hover {
    background: #d4af37;
    color: #000000;
}

section.property-info.proper-view_info {
    padding: 0rem 3rem;
    float: left;
    width: 100%;
    position: relative;
}

.proper-view_info .info-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.property-header {
    margin-bottom: 3rem;
}

.proper-view_info .property-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
}

.proper-view_info .property-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.proper-view_info .property-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: #d4af37;
}

.proper-view_info .property-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.proper-view_info .detail-item {
    text-align: center;
}

.proper-view_info .detail-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.proper-view_info .detail-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    display: block;
}

.proper-view_info .detail-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proper-view_info .property-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 3rem;
}

.proper-view_info .features-section {
    margin: 3rem 0;
}

.proper-view_info .features-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.proper-view_info .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.proper-view_info .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.proper-view_info .feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.proper-view_info .feature-icon {
    font-size: 1.5rem;
    color: #000000;
}

.proper-view_info .feature-text {
    color: rgba(255, 255, 255, 0.9);
}

.proper-view_info .property-sidebar {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 8rem;
    border-radius: 15px;
}

.proper-view_info .sidebar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.proper-view_info .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.proper-view_info .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.proper-view_info .form-group label {
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.proper-view_info .form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.proper-view_info .form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

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

.proper-view_info .agent-info {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.proper-view_info .agent-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #c5a736);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #000000;
    font-weight: bold;
}

.proper-view_info .agent-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.proper-view_info .agent-title {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.proper-view_info .agent-contact {
    color: #d4af37;
    font-size: 0.875rem;
    line-height: 1.5;
}


section.similar-properties.proper_ty_view_similer {
    padding: 2rem 3rem;
    float: left;
    width: 100%;
    margin: 50px 0 0 0;
}

.proper_ty_view_similer .similar-container {
    max-width: 1600px;
    margin: 0 auto;
}

.proper_ty_view_similer .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #ffffff;
}

.proper_ty_view_similer .similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.proper_ty_view_similer .similar-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 15px;
}

.proper_ty_view_similer .similar-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.proper_ty_view_similer .similar-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.proper_ty_view_similer .similar-content {
    padding: 2rem;
}

.proper_ty_view_similer .similar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.proper_ty_view_similer .similar-location {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.proper_ty_view_similer .similar-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    display: inline-block;
    text-align: center;
}


.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    position: relative;
    margin: 2% auto;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #d4af37;
}

.lightbox-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.lightbox-controls button {
    background: rgba(0, 0, 0, 0.5);
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lightbox-controls button:hover {
    background: #d4af37;
    color: #000;
}

.lightbox-counter {
    color: #d4af37;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.quick_add_amin {
    float: left;
    width: 100%;
    position: relative;
    padding: 30px 3rem 50px 3rem;
}

.quick_add_amin h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
    text-align: center;
    margin: 0 0 0px 0;
}


.servisde_grod {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
}



.servisde_grod h4 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 0;
    display: block;
    transition: color 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}

.info_main_dev {
    padding: 20px 15px;
}

.servisde_grod img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}



.story-section {
    padding: 0px 3rem 70px;
    float: left;
    width: 100%;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
}

.story-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.story-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: contrast(1.1) brightness(1.05);
    border-radius: 12px;
}

.values-section {
    padding: 0 3rem 70px;
    background: rgba(212, 175, 55, 0.03);
    float: left;
    width: 100%;
    position: relative;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 50px;
}

.value-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #d4af37;
}

.value-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.value-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 0rem 3rem;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 30px;
}


.team-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.team-photo {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #d4af37, #c5a736);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #000000;
    font-weight: bold;
    font-family: 'Cormorant Garamond', serif;
}

.team-info {
    padding: 20px;
    text-align: left;
}

.team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.team-title {
    color: #d4af37;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    font-weight: 600;
}

.team-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.9rem;
}

.awards-section {
    padding: 70px 3rem 50px;
    background: rgba(212, 175, 55, 0.03);
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.award-item {
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.award-item:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.award-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
}

.award-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.award-org {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}


.cta-section.servies_cta {
    padding: 8rem 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    text-align: center;
    margin: 50px 0 0 0;
    float: left;
    width: 100%;
    position: relative;
}

.cta-section.servies_cta .cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-section.servies_cta .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-section.servies_cta .cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-section.servies_cta .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.cta-section.servies_cta .cta-btn {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section.servies_cta .cta-btn.primary {
    background: linear-gradient(135deg, #d4af37, #c5a736);
    color: #000000;
}

.cta-section.servies_cta .cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.cta-section.servies_cta .cta-btn.secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.cta-section.servies_cta .cta-btn.secondary:hover {
    background: #d4af37;
    color: #000000;
    transform: translateY(-3px);
}



.services-overview {
    padding: 0 3rem 70px;
    float: left;
    width: 100%;
}

.services-overview.servides_page .service-features {
    display: block;
}

.services-overview.servides_page .service-features li {
    text-align: left;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-overview .section-title {
    text-align: center;
    margin: 0 0 30px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(368px, 1fr));
    gap: 15px;
}

.service-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 2rem;
    display: block;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.service-features {
    list-style: none;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    padding: 0;
}

.service-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.detailed-services {
    padding: 0rem 3rem 70px;
    background: rgba(212, 175, 55, 0.03);
    float: left;
    width: 100%;
    position: relative;
}

.service-detail {
    margin-bottom: 0rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.service-detail:nth-child(even) {
    direction: rtl;
    margin: 0 0 30px 0;
}

.service-detail:nth-child(even)>* {
    direction: ltr;
}

.service-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.service-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
}

.benefit-icon {
    color: #d4af37;
    font-size: 1.25rem;
    font-weight: bold;
}

.benefit-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: contrast(1.1) brightness(1.05);
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.service-image:hover img {
    transform: scale(1.05);
}


.process-section {
    padding: 0rem 3rem;
    float: left;
    width: 100%;
    position: relative;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.process-step {
    position: relative;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #c5a736);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-section {
    padding: 2rem 3rem 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-info {
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
}

.contact-form-container {
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
}

.contact-item {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.contact-icon {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
    display: block;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-details em {
    color: #d4af37;
    font-style: italic;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 20px;
}



.success-messages {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.success-item {
    color: #22c55e;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.success-item:last-child {
    margin-bottom: 0;
}

.error-messages {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.error-item {
    color: #ef4444;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.error-item:last-child {
    margin-bottom: 0;
}

.submit-btn {
    padding: 20px;
    background: linear-gradient(135deg, #d4af37, #c5a736);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

/* Offices Section */
.offices-section {
    padding: 70px 3rem;
    background: rgba(212, 175, 55, 0.03);
}

.offices-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.office-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.office-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #d4af37, #c5a736);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #000000;
    margin-bottom: 2rem;
}

.office-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.office-address {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.office-contact {
    color: #d4af37;
    font-size: 0.875rem;
    line-height: 1.8;
}

/* Map Section */
.map-section {
    padding: 0rem 3rem 50px;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.map-placeholder {
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}







/* ----------------------------------------------- Dashboard Csss Start ----------------------------------------------- */


.dashboard-container.luxe_user_dashboard {
    float: left;
    width: 100%;
    position: relative;
    margin: 0 0 50px 0;
}

.luxe_user_dashboard aside.sidebar {
    float: left;
    width: 100%;
    position: relative;
}

.luxe_user_dashboard aside.sidebar nav ul.nav-menu {
    display: block;
    float: left;
    width: 100%;
    position: relative;
}


main.main-content.dashboard_contetn {
    padding: 40px 2rem 0;
    float: left;
    width: 80%;
    margin: 34px 0 50px 0;
}


main.main-content.dashboard_contetn h1.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 0.5rem;
    margin: 0;
}

main.main-content.dashboard_contetn .page-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin: 0;
}


.dashboard_contetn .action-btn {
    padding: 25px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    float: left;
    width: 100%;
}

.dashboard_contetn .action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.luxe_user_dashboard .notification-badge {
    background: #D4AF37;
    color: #000;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
    min-width: 18px;
    text-align: center;
    display: inline-block;
}




.luxe_user_dashboard .user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.luxe_user_dashboard .user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 600;
    cursor: pointer;
}

.luxe_user_dashboard .logout-btn {
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: #D4AF37;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.luxe_user_dashboard .logout-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
}

/* Main Layout */
.luxe_user_dashboard .dashboard-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: calc(100vh - 80px);
}

/* Sidebar */
.luxe_user_dashboard .sidebar {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0.95) 100%);
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2rem 0;
}

.luxe_user_dashboard .nav-menu {
    gap: 4rem;
}

.luxe_user_dashboard .nav-item {
    margin-bottom: 0.5rem;
}

.luxe_user_dashboard .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.luxe_user_dashboard .nav-link:hover,
.nav-link.active {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    border-left-color: #D4AF37;
}

.luxe_user_dashboard .nav-link:hover,
.nav-link.active svg path {
    fill: #D4AF37 !important;
}

.luxe_user_dashboard .nav-icon {
    width: 20px;
    height: 20px;
    text-align: center;
}

.luxe_user_dashboard .main-content {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(0, 0, 0, 1) 100%);
    margin-top: 50px;
}

.luxe_user_dashboard .page-header {
    margin-bottom: 2rem;
}




/* Stats Grid */
.luxe_user_dashboard .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 3rem;
}

.luxe_user_dashboard .stat-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.luxe_user_dashboard .stat-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.luxe_user_dashboard .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.luxe_user_dashboard .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0;
    line-height: 37px;
    margin-top: 10px;
}

.luxe_user_dashboard .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 3px;
    text-align: left;
}

.luxe_user_dashboard .stat-change {
    font-size: 0.8rem;
    color: #4ADE80;
}

/* Content Sections */
.luxe_user_dashboard .content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.luxe_user_dashboard .content-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.luxe_user_dashboard .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 20px;
    margin-top: 0;
}

/* Property List */
.luxe_user_dashboard .property-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luxe_user_dashboard .property-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.luxe_user_dashboard .property-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.luxe_user_dashboard .property-image {
    /* width: 60px; */
    /* height: 60px; */
    border-radius: 8px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 600;
}

.luxe_user_dashboard .property-info h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.luxe_user_dashboard .property-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.luxe_user_dashboard .property-price {
    margin-left: auto;
    color: #D4AF37;
    font-weight: 600;
}

/* Activity Feed */
.luxe_user_dashboard .activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.luxe_user_dashboard .activity-item:last-child {
    border-bottom: none;
}

.luxe_user_dashboard .activity-icon {
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    flex-shrink: 0;
}

.luxe_user_dashboard .activity-content h4 {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.luxe_user_dashboard .activity-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.luxe_user_dashboard .activity-time {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* Quick Actions */
.luxe_user_dashboard .quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}



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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.luxe_user_dashboard .stat-card,
.content-card {
    animation: fadeInUp 0.6s ease;
}

.stat-card:nth-child(1) {
    animation-delay: 0s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.3s;
}


.edit_proper_ty h1.page-title {
    font-size: 60px;
    margin: 0;
}

.edit_proper_ty p.page-subtitle {
    margin: 0 0 20px 0;
    text-align: center;
    float: left;
    width: 100%;
    max-width: 100%;
}

section.page-header._proper_tries.edit_proper_ty {
    padding: 0;
    float: left;
    width: 100%;
    margin: 0;
    background: none;
}

section.page-header._proper_tries.edit_proper_ty .property-status .status-badge {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 10px 20px;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 500;
}

.status-approved {
    background: #10b980e6 !important;
    color: #fff !important;
    border: 2px solid #10b980e6 !important;
}

.status-pending {
    background: #ffc107e6 !important;
    color: #000 !important;
    border: 2px solid #ffc107e6 !important;
}

.status-rejected {
    background: #ef4444e6 !important;
    color: #fff !important;
    border: 2px solid #ef4444e6 !important;
}

/* Loading States */
.edit_and_creatin_list .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.edit_and_creatin_list .form-loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Success State */
.edit_and_creatin_list .success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: #22c55e;
    margin-bottom: 2rem;
    text-align: center;
}



.form-container.edit_and_creatin_list {
    max-width: 100%;
    padding: 0;
    width: 100%;
    float: left;
    margin: 0 0 50px 0;
}

.edit_and_creatin_list .property-form {
    display: flex;
    flex-direction: column;
}

.edit_and_creatin_list .error-container {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: #ef4444;
}

.edit_and_creatin_list .error-container h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.edit_and_creatin_list .error-container ul {
    margin-left: 1.5rem;
}

.edit_and_creatin_list .form-section {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin: 30px 0 0 0;
}

.edit_and_creatin_list .form-section:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.edit_and_creatin_list .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #D4AF37;
}

.edit_and_creatin_list .section-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.edit_and_creatin_list .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.edit_and_creatin_list .form-group {
    display: flex;
    flex-direction: column;
}

.edit_and_creatin_list .form-group.full-width {
    grid-column: 1 / -1;
    margin: 0;
}

.edit_and_creatin_list .form-group label {
    margin-bottom: 5px;
    color: #D4AF37;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.edit_and_creatin_list .form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    float: left;
    width: 100%;
}

.edit_and_creatin_list .form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.edit_and_creatin_list .form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.edit_and_creatin_list .form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

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

.edit_and_creatin_list .error-text {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Features Section */
.edit_and_creatin_list .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.edit_and_creatin_list .feature-category {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.edit_and_creatin_list .category-title {
    font-size: 1.2rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.edit_and_creatin_list .checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.edit_and_creatin_list .checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.edit_and_creatin_list .checkbox-item:hover {
    background: rgba(212, 175, 55, 0.05);
    color: #ffffff;
}

.edit_and_creatin_list .checkbox-item input[type="checkbox"] {
    display: none;
}

.edit_and_creatin_list .checkmark {
    width: 20px !important;
    height: 20px !important;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: inline-block;
}

.edit_and_creatin_list .checkbox-item input[type="checkbox"]:checked+.checkmark {
    background: #D4AF37;
    border-color: #D4AF37;
}

.edit_and_creatin_list .checkbox-item input[type="checkbox"]:checked+.checkmark::after {
    content: "✓";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-size: 12px;
    font-weight: bold;
}

/* Image Upload Section */
.edit_and_creatin_list .image-upload-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.edit_and_creatin_list .image-upload-area {
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.edit_and_creatin_list .image-upload-area:hover {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
}

.edit_and_creatin_list .upload-icon {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.edit_and_creatin_list .upload-text {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.edit_and_creatin_list .upload-subtext {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.edit_and_creatin_list .image-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.edit_and_creatin_list .image-preview-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.edit_and_creatin_list .image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.edit_and_creatin_list .image-preview-item .remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(239, 68, 68, 0.9);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.edit_and_creatin_list .image-preview-item .remove-btn:hover {
    background: #ef4444;
    transform: scale(1.1);
}

.edit_and_creatin_list .image-preview-item .main-badge {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    background: rgba(212, 175, 55, 0.9);
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Form Actions */
.edit_and_creatin_list .form-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: 2rem;
}

.edit_and_creatin_list .btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.edit_and_creatin_list .btn-primary {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000000;
}

.edit_and_creatin_list .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.edit_and_creatin_list .btn-secondary {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.edit_and_creatin_list .status-pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 10px 20px;
    border-radius: 100px;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
    padding: 10px 20px;
    border-radius: 100px;
}

.status-active {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
    padding: 10px 20px;
    border-radius: 100px;
}

.edit_and_creatin_list .btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #FFD700;
    color: #FFD700;
}

.dashboard-header .header-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: #ffffff;
}

.luxe_user_dashboard aside.sidebar ul.nav-menu li a.nav-link:hover {
    border-bottom: none;
    color: #fad307;
}

.dom_size {
    float: left;
    width: 20%;
    position: relative;
}

.cuurent_upload_img img {
    float: left;
    width: 100%;
    border-radius: 5px;
}

.cuurent_upload_img div#existingImagesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.cuurent_upload_img div#existingImagesGrid .existing-image-item {
    position: relative;
}

.cuurent_upload_img div#existingImagesGrid .existing-image-item .main-badge {
    float: left;
    width: 100%;
    position: relative;
    font-size: 14px;
    margin: 5px 0 0 0;
}

.cuurent_upload_img div#existingImagesGrid .existing-image-item button.remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(239, 68, 68, 0.9);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.property-actions span.btn-icon {
    display: flex;
}

section.banner_section {
    width: 100%;
    position: relative;
    padding: 130px 0 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    height: 90vh;
}

section.banner_section h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 0;
    background: linear-gradient(135deg, #ffffff, #d4af37, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

section.banner_section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


section.properties-section {
    float: left;
    width: 100%;
    position: relative;
    padding: 50px 0px 0;
}


a.logo img {
    width: 100px;
}

.admin-nav-link:hover,
.admin-nav-link.active path {
    fill: #d4af37;
}

.logo_foter {
    float: left;
    width: 100%;
    position: relative;
    margin: 0 0 20px 0;
}

.admin_heaader_ h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 0.5rem;
    margin: 0 0 0.5rem 0;
}


.admin_heaader_ p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin: 0;
}

.pagination___ nav {
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.pagination___ nav .hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between a.relative.inline-flex.items-center.px-2.py-2.text-sm.font-medium.text-gray-500.bg-white.border.border-gray-300.rounded-l-md.leading-5.hover\:text-gray-400.focus\:z-10.focus\:outline-none.focus\:ring.ring-gray-300.focus\:border-blue-300.active\:bg-gray-100.active\:text-gray-500.transition.ease-in-out.duration-150.dark\:bg-gray-800.dark\:border-gray-600.dark\:active\:bg-gray-700.dark\:focus\:border-blue-800 {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination___ nav .hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between span.relative.z-0.inline-flex.rtl\:flex-row-reverse.shadow-sm.rounded-md {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pagination___ nav a.relative.inline-flex.items-center.px-4.py-2.-ml-px.text-sm.font-medium.text-gray-700.bg-white.border.border-gray-300.leading-5.hover\:text-gray-500.focus\:z-10.focus\:outline-none.focus\:ring.ring-gray-300.focus\:border-blue-300.active\:bg-gray-100.active\:text-gray-700.transition.ease-in-out.duration-150.dark\:bg-gray-800.dark\:border-gray-600.dark\:text-gray-400.dark\:hover\:text-gray-300.dark\:active\:bg-gray-700.dark\:focus\:border-blue-800 {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination___ nav span.relative.z-0.inline-flex.rtl\:flex-row-reverse.shadow-sm.rounded-md span.relative.inline-flex.items-center.px-2.py-2.-ml-px.text-sm.font-medium.text-gray-500.bg-white.border.border-gray-300.cursor-default.rounded-r-md.leading-5.dark\:bg-gray-800.dark\:border-gray-600 {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination___ nav .flex.justify-between.flex-1.sm\:hidden {
    display: none;
}

/* Hover */
.pagination___ nav a:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #fff;
}

.pagination___ nav span[aria-current="page"] {
    background: #d4af37;
    color: #000 !important;
    font-weight: 600;
    border: 1px solid #d4af37;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination___ nav a.relative.inline-flex.items-center.px-2.py-2.-ml-px.text-sm.font-medium.text-gray-500.bg-white.border.border-gray-300.rounded-r-md.leading-5.hover\:text-gray-400.focus\:z-10.focus\:outline-none.focus\:ring.ring-gray-300.focus\:border-blue-300.active\:bg-gray-100.active\:text-gray-500.transition.ease-in-out.duration-150.dark\:bg-gray-800.dark\:border-gray-600.dark\:active\:bg-gray-700.dark\:focus\:border-blue-800 {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination___ nav span.relative.inline-flex.items-center.px-2.py-2.text-sm.font-medium.text-gray-500.bg-white.border.border-gray-300.cursor-default.rounded-l-md.leading-5.dark\:bg-gray-800.dark\:border-gray-600 {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination___ nav .hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between p {
    text-align: center;
    margin: 0 0 20px 0;
}

/* Icons */
.pagination___ nav svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}









/* -------------------------------------- show property page -------------------------------------- */


.proper_show_page {
    float: left;
    width: 100%;
    position: relative;
}

.proper_show_page .hero-gallery {
    margin-top: 20px;
    padding: 2rem 3rem;
}

.proper_show_page .property-info {
    padding: 0px 3rem 50px;
}

.proper_show_page .property-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
}

.proper_show_page .property-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: capitalize;
}

.proper_show_page .property-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: #d4af37;
}


.proper_show_page .property-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin: 30px 0;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
}

.proper_show_page .property-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.proper_show_page .property-sidebar {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 8rem;
    border-radius: 15px;
}

.proper_show_page .sidebar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.proper_show_page .contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.proper_show_page .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.proper_show_page .form-group label {
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.proper_show_page .form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 5px;
}






section.section.negihood_section {
    float: left;
    width: 100%;
    position: relative;
    padding: 20px 3rem;
}

.serach_negihood {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 1rem;
    padding: 30px;
    margin-bottom: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form_search_neg {
    display: grid;
    gap: 15px;
    align-items: end;
    grid-template-columns: repeat(3, 1fr);
}

.form_search_hood label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-text);
    font-weight: 600;
}

.form_search_hood {
    float: left;
    width: 100%;
    position: relative;
}

.form_search_hood input,
select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: 53px;
    border-radius: 0;
    opacity: 100%;
}

.form_search_neg button.cta-button {
    background: linear-gradient(135deg, #d4af37, #c5a736);
    color: #000000;
    position: relative;
    overflow: hidden;
    height: 53px;
}


.maket_done_property {
    width: 100%;
    position: relative;
}

.item_propety_cutom {
    width: 100%;
    margin: 20px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 15px;
    margin-bottom: 3rem;
}

.maket_done_property .card {
    padding: 0;
    overflow: hidden;
    position: relative;
    transform: translateY(0px);
    transition: 0.3s;
}

.maket_done_property h2 {
    text-align: center;
}

.img-hood-section {
    float: left;
    width: 100%;
    position: relative;
}

.img_most {
    float: left;
    width: 100%;
    position: relative;
}

.img_most img {
    float: left;
    width: 100%;
    height: 400px;
    object-fit: cover;
}


.img_most .btn_upper_img {
    position: absolute;
    top: 30px;
    left: 30px;
}

.img_most .btn_upper_img p {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: #000;
    padding: 6px 23px;
    border: none;
    border-radius: 55px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

.info_negithood- {
    float: left;
    width: 100%;
    position: relative;
    padding: 20px;
}

.title_section {
    float: left;
    width: 100%;
    position: relative;
    text-align: left;
    margin: 0 0 20px 0;
}

.title_section h2 {
    font-size: 30px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    display: block;
    font-family: "Cormorant Garamond", serif;
    text-transform: uppercase;
    line-height: 15px;
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 0 15px 0;
    padding: 0px;
    text-align: left;
}

.title_section p {
    font-size: 16px;
    float: left;
    width: 100%;
}

.section_number_detail ul {
    float: left;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 90px;
}

.section_number_detail {
    float: left;
    width: 100%;
    position: relative;
}

.section_number_detail ul li {
    float: left;
    width: auto;
    list-style: none;
}

.section_number_detail ul li p {
    font-size: 30px;
    color: #dbb62e;
    font-weight: 700;
    text-align: center;
}

.section_number_detail ul li p span {
    float: left;
    width: 100%;
    position: relative;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.highlights_hood ul {
    position: relative;
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.highlights_hood ul li {
    float: left;
    width: 100%;
    position: relative;
    list-style: none;
    font-size: 16px;
}

.highlights_hood {
    float: left;
    width: 100%;
    position: relative;
    margin: 30px 0 30px 0;
}

.info_negithood- button {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--dark-bg);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    position: relative;
}


.table_look_ {
    margin: 50px 0 0 0;
}

.table_look_2 {
    margin: 50px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}


section.section.comparition_section_main {
    padding: 0;
}

section.section.my-propetty_page_new {
    float: left;
    width: 100%;
    position: relative;
}

section.section.my-propetty_page_new .card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

section.section.my-propetty_page_new .card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 10px;
    line-height: 37px;
    margin-top: 10px;
}

section.section.my-propetty_page_new .card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-top: 3px;
    text-align: center;
}


.my_propwerty_action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 1rem;
}

.my_propwerty_action h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 0.5rem;
    margin: 0;
}

.property-grid.proper-my_demo {
    position: relative;
}

.card.user_table_admni::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.card.user_table_admni::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.card.user_table_admni::-webkit-scrollbar-thumb {
    background: #d4af37;
    /* golden scrollbar */
    border-radius: 4px;
}

.card.user_table_admni::-webkit-scrollbar-thumb:hover {
    background: #bfa130;
}

.settings-nav {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--gray-text);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.settings-nav.active {
    color: var(--primary-gold);
    border-left-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}


.admin-container {
    display: block;
    grid-template-columns: 0;
    min-height: 100%;
}

.admin-sidebar {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0.95) 100%);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem 0;
    position: fixed;
    height: 100vh;
    width: 280px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.admin-sidebar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}


.admin-logo {
    text-align: center;
    padding: 0px 0 20px 0px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
    float: left;
    width: 100%;
    position: relative;
    text-align: center;
}



.admin-logo p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.admin-nav {
    list-style: none;
}

.admin-nav-item {
    margin-bottom: 0.5rem;
}

.admin-nav-link {
    display: flex;
    gap: 10px;
    padding: 1rem 2rem;
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.admin-nav-link:hover,
.admin-nav-link.active {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    border-left-color: var(--primary-gold);
}

.admin-nav-icon {
    width: 20px;
    height: 20px;
    font-size: 1.2rem;
}

/* Main Content */
.admin-main {
    margin-left: 280px;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(0, 0, 0, 1) 100%);
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 0 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.admin-breadcrumb {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.admin-user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: 700;
}




.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0.5rem;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-table th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    font-weight: 600;
}

.admin-table td {
    color: white;
    white-space: nowrap;
}





/* Status Badges */
.admin-main .status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.admin-main .status-pending {
    background: var(--warning);
    color: white;
}

.admin-main .status-approved {
    background: var(--success);
    color: white;
}

.admin-main .status-rejected {
    background: var(--danger);
    color: white;
}




.admin-main .alert {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.admin-main .alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-left-color: var(--success);
    color: var(--success);
}

.admin-main .alert-danger {
    background: rgba(220, 38, 38, 0.1);
    border-left-color: var(--danger);
    color: var(--danger);
}

.admin-main .alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-left-color: var(--warning);
    color: var(--warning);
}


.time-filter {
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin: 20px 0 0 0;
    width: auto;
    display: inline-block;
}

.time-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.time-btn.active,
.time-btn:hover {
    background: #D4AF37;
    color: #000000;
}

/* Analytics Container */
.analytics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0rem 4rem;
}

.key-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.metric-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.metric-card:nth-child(2) {
    animation-delay: 0.1s;
}

.metric-card:nth-child(3) {
    animation-delay: 0.2s;
}

.metric-card:nth-child(4) {
    animation-delay: 0.3s;
}

.metric-card:nth-child(5) {
    animation-delay: 0.4s;
}

.metric-card:nth-child(6) {
    animation-delay: 0.5s;
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.metric-change {
    font-size: 0.8rem;
    color: #4ADE80;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.metric-change.negative {
    color: #FF4444;
}

.analytics-grid {
    display: flex;
    grid-template-columns: 2fr 1fr;
    gap: 20px !important;
    margin-bottom: 2rem;
    flex-direction: column;
}

.analytics-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease;
}


/* Chart Containers */
.chart-container {
    height: 300px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.small-chart {
    height: 150px;
}

.chart-summary {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

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

.summary-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.summary-value {
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Market Trends */
.trends-list,
.roi-list,
.geo-list,
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trend-item,
.roi-item,
.geo-item,
.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trend-item:hover,
.roi-item:hover,
.geo-item:hover,
.activity-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.trend-location {
    color: #ffffff;
    font-weight: 500;
}

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

.trend-percentage {
    font-weight: 600;
}

.trend-up {
    color: #4ADE80;
}

.trend-down {
    color: #FF4444;
}

/* ROI Analysis */
.roi-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
}

.roi-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 600;
}

.roi-info h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.roi-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.roi-value {
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Geographic Distribution */
.geo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.geo-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.geo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.geo-dot.gold {
    background: #D4AF37;
}

.geo-dot.green {
    background: #4ADE80;
}

.geo-dot.blue {
    background: #3B82F6;
}

.geo-dot.purple {
    background: #A855F7;
}

.geo-name {
    color: #ffffff;
    font-weight: 500;
}

.geo-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.geo-percentage {
    color: rgba(255, 255, 255, 0.7);
    min-width: 40px;
    text-align: right;
}

.geo-bar {
    width: 100px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.geo-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Activity List */
.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}



.activity-icon.gold {
    background: #D4AF37;
    color: #000000;
}

.activity-icon.green {
    background: #4ADE80;
}

.activity-icon.blue {
    background: #3B82F6;
}

.activity-icon.purple {
    background: #A855F7;
}

.activity-content {
    flex: 1;
}

.activity-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.activity-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Performance Indicators */
.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.performance-indicator {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.performance-indicator:hover {
    border-color: #D4AF37;
    transform: translateY(-2px);
}

.indicator-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.indicator-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* Full Width Section */
.full-width-section {
    grid-column: 1 / -1;
}

/* Export Grid */
.export-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}



.export-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 2px solid;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.export-btn.primary {
    border-color: #D4AF37;
    color: #D4AF37;
}

.export-btn.secondary {
    border-color: #4ADE80;
    color: #4ADE80;
}

.export-btn.tertiary {
    border-color: #3B82F6;
    color: #3B82F6;
}

.export-btn.quaternary {
    border-color: #A855F7;
    color: #A855F7;
}

.export-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.export-btn.primary:hover {
    background: rgba(212, 175, 55, 0.1);
}

.export-btn.secondary:hover {
    background: rgba(74, 222, 128, 0.1);
}

.export-btn.tertiary:hover {
    background: rgba(59, 130, 246, 0.1);
}

.export-btn.quaternary:hover {
    background: rgba(168, 85, 247, 0.1);
}

.export-icon {
    font-size: 1.2rem;
}

.export-text {
    flex: 1;
    text-align: left;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}



@media (min-width :320px) and (max-width :991.5px) {

    .admin-container {
        grid-template-columns: 1fr;
    }



    .admin-main {
        margin-left: 0;
    }

    .proper_show_page .hero-gallery {
        margin-top: 20px;
        padding: 15px;
    }

    .proper_show_page .property-location {
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .proper_show_page .property-price {
        font-size: 30px;
        margin: 0;
    }

    .proper_show_page .property-info .property-header {
        margin-bottom: 0;
    }

    .proper_show_page .property-title {
        font-size: 30px;
        line-height: 33px;
    }

    .proper_show_page .property-info {
        padding: 20px 15px 50px;
    }

    .proper_show_page .property-info .info-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }



    a.logo img {
        width: 80px;
    }

    section.banner_section p {
        margin-bottom: 0;
    }



    section.section.negihood_section {
        padding: 15PX 15PX;
    }

    .table_look_2 {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .card {
        padding: 20px;
    }

    .card.look_prmeee h3 {
        font-size: 30px;
    }

    .form_search_neg {
        display: flex;
        gap: 20px;
        flex-direction: column;
    }

    .serach_negihood {
        padding: 20px;
    }

    .item_propety_cutom {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .highlights_hood ul {
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .cta-section.servies_cta .cta-title {
        font-size: 40px;

    }

    section.banner_section h1 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 60px;
        line-height: 53px;
        padding: 0 0 20px 0;
    }

    section.banner_section {
        padding: 70px 15px;
    }

    .cta-section.servies_cta {
        padding: 50px 15px;
    }




    .edit_and_creatin_list .form-grid {
        grid-template-columns: 1fr;
        margin: 0 0 20px;
    }

    .edit_and_creatin_list .features-grid {
        grid-template-columns: 1fr;
    }

    .edit_and_creatin_list .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .edit_and_creatin_list .btn {
        width: 100%;
    }

    .edit_and_creatin_list .image-preview-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .luxe_user_dashboard .dashboard-container {
        grid-template-columns: 1fr;
    }



    .luxe_user_dashboard .header {
        padding: 1rem;
    }

    .luxe_user_dashboard .main-content {
        padding: 1rem;
    }







    section.contact-section h2.section-title {
        margin: 0px 0 20px 0;
    }

    .section.faq_section {
        padding: 4rem 15px;
    }

    .contact-item {
        padding: 20px;
    }

    .office-card {
        padding: 20px 15px;
    }

    .proper-view_info .form-group input,
    .form-group textarea {
        width: 100%;
    }

    .contact-section .section-title {
        font-size: 35px;
        margin-bottom: 10px;
        line-height: 40px;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .offices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .contact-info,
    .contact-form-container {
        padding: 20px 15px;
    }

    .map-placeholder {
        height: 100px;
        font-size: 15px;
        padding: 10px;
    }

    .offices-section,
    .contact-section,
    .map-section {
        padding: 2rem 15px;
    }

    .servides_page .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-overview {
        padding: 2rem 15px;
    }

    .servides_page .service-detail {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .servides_page .service-detail:nth-child(even) {
        direction: ltr;
    }

    .servides_page .service-benefits {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .cta-section.servies_cta {
        margin: 00px 0 0 0;
    }





    .service-content h3 {
        font-size: 40px;
        line-height: 50px;
    }


    .story-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .story-image img {
        height: 300px;
    }

    .proper-view_info .property-sidebar {
        padding: 20px 15px;

    }

    .lightbox-content {
        margin: 50% auto;

    }

    .proper-view_info .property-details {
        margin: 2rem 0;
    }

    section.property-info.proper-view_info {
        padding: 0rem 15px;

    }

    section.property-info.proper-view_info .property-header {
        margin-bottom: 1rem;
    }

    .proper-view_info .property-title {
        font-size: 30px;
        line-height: 29px;
        margin: 0 0 20px 0;
    }


    section.hero-gallery.providew_view {
        padding: 20px 15px;

    }

    section.hero-gallery.providew_view .thumbnail-grid .thumbnail {
        overflow: visible;
    }


    section.hero-gallery.providew_view .gallery-container {
        grid-template-columns: 1fr;
        height: auto;
        gap: 2rem;
    }

    section.hero-gallery.providew_view .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }

    .proper-view_info .info-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .proper_ty_view_similer .similar-grid {
        grid-template-columns: 1fr;
    }


    .properties-section.proper_page .properties-grid {
        gap: 20px;
        margin: 0;
    }

    .properties-section.proper_page .property-content {
        padding: 15px;
    }

    .properties-section.proper_page {
        padding: 2rem 1rem;
    }

    ._proper_tries .page-title {
        font-size: 50px;
        line-height: 51px;
        padding: 0 0 6px 0;
    }

    ._proper_tries .page-subtitle {
        font-size: 16px;

    }

    .hero-content p {
        font-size: 16px;
    }

    .filters-container .btn-luxury {
        width: 100%;
    }

    .filters-section {
        padding: 2rem 1rem;
    }

    .filters-container {
        display: flex;
        gap: 1rem;
        width: 100%;
        flex-direction: column;
    }

    .properties-section.proper_page .property-details {
        justify-content: left;
        gap: 20px;
    }

    .properties-section.proper_page .filters-container {
        grid-template-columns: 1fr;
    }

    ._proper_tries {
        padding: 3rem 1.5rem 1rem;
    }

    .properties-section.proper_page .properties-section {
        padding: 3rem 0rem;
    }


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


    .properties-section.proper_page .properties-header {
        flex-direction: column;
        align-items: stretch;
        margin: 0 0 20px 0;
    }


    .register-container {
        grid-template-columns: 1fr;
    }



    .register-form-section {
        padding: 1rem;
    }

    .register-form-container {
        padding: 2rem 1.5rem;
        margin: 1rem 0;
    }


    .login-container {
        grid-template-columns: 1fr;
    }

    .hero-section {
        display: none;
    }

    .register-container .hero-section {
        display: none;
    }

    .register-container {
        display: flex !important;
        justify-content: center;
    }

    .login-form-section {
        padding: 1rem;
    }

    .login-form-container {
        padding: 2rem 1.5rem;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .welcome-text h2 {
        font-size: 34px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }


    .hero {
        padding: 0 15px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }



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

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

    .featured-properties,
    .luxury-services,
    .cta-section {
        padding: 50px 15px;
    }





    .cta-actions {
        flex-direction: column;
        align-items: center;
    }









    .navbar {
        padding: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }




    .container {
        padding: 0;
    }


    .hamburger {
        display: flex;
        flex-direction: column;
        width: 25px;
        height: 31px;
        /* background: none !important; */
        border: none !important;
        cursor: pointer;
        transition: all 0.5s ease-in-out;
        gap: 6px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        color: #fff;
        align-content: center;
        justify-content: center;
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background: #ffffff;
        border-radius: 3px;
        transition: 0.3s;
    }


    /* when active */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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


    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #010100;
        padding: 10px 0;
        border-top: 1px solid #eee;
    }

    ul.nav-menu li .cta-button {
        margin: 4px 0 0 0;
        float: left;
    }

    /* Luxury Background */
    .luxury-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            linear-gradient(45deg, rgba(212, 175, 55, 0.05) 0%, transparent 30%),
            linear-gradient(135deg, rgba(197, 167, 54, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 70% 20%, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
        z-index: -1;
    }

    /* Page Header */


    .page-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(3rem, 8vw, 6rem);
        font-weight: 700;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff, #d4af37, #ffffff);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .page-subtitle {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .filters-section {
        padding: 30px 0 0 0;
        background: rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .filters-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .filter-group {
        position: relative;
    }

    .filter-group label {
        display: block;
        color: #d4af37;
        margin-bottom: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.875rem;
    }

    .filter-group select,
    .filter-group input {
        width: 100%;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(212, 175, 55, 0.3);
        color: #ffffff;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .filter-group select:focus,
    .filter-group input:focus {
        outline: none;
        border-color: #d4af37;
        background: rgba(0, 0, 0, 0.7);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    }

    .filter-btn {
        width: 100%;
        padding: 1rem;
        margin-top: 1.75rem;
    }

    /* Properties Grid */
    .properties-section {
        padding: 6rem 3rem;
    }

    .properties-container {
        max-width: 1600px;
        margin: 0 auto;
    }

    .properties-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4rem;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .results-count {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .clear-filters {
        color: #d4af37;
        text-decoration: none;
        font-size: 0.9rem;
        border: 1px solid rgba(212, 175, 55, 0.3);
        padding: 0.5rem 1rem;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .clear-filters:hover {
        background: rgba(212, 175, 55, 0.1);
        border-color: #d4af37;
    }

    .sort-select {
        padding: 0.75rem 1.5rem;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(212, 175, 55, 0.3);
        color: #ffffff;
        cursor: pointer;
    }

    .properties-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 3rem;
    }

    .luxury-property-card {
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(212, 175, 55, 0.2);
        overflow: hidden;
        transition: all 0.5s ease;
        position: relative;
        cursor: pointer;
    }

    .luxury-property-card:hover {
        transform: translateY(-20px);
        border-color: rgba(212, 175, 55, 0.5);
        box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
    }

    .property-image {
        width: 100%;
        height: 350px;
        object-fit: cover;
        transition: transform 0.5s ease;
        filter: contrast(1.1) brightness(1.05);
    }

    .luxury-property-card:hover .property-image {
        transform: scale(1.1);
    }

    .property-placeholder {
        width: 100%;
        height: 350px;
        background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .placeholder-icon {
        font-size: 4rem;
        color: #d4af37;
    }

    .property-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

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

    .property-actions {
        display: flex;
        gap: 1rem;
    }

    .action-btn {
        width: 50px;
        height: 50px;
        background: rgba(212, 175, 55, 0.9);
        border: none;
        border-radius: 50%;
        color: #000;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .action-btn:hover {
        background: #d4af37;
        transform: scale(1.1);
    }

    .property-content {
        padding: 15px;
    }



    .property-badge.exclusive {
        background: linear-gradient(135deg, #ff6b6b, #ee5a52);
        color: #ffffff;
    }

    .property-badge.new {
        background: linear-gradient(135deg, #4ecdc4, #44a08d);
        color: #ffffff;
    }

    .property-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #ffffff;
        text-transform: uppercase;
        line-height: 24px;
    }

    .property-location {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 300;
    }

    .property-details {
        display: flex;
        gap: 2rem;
        margin-bottom: 1.5rem;
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
        flex-wrap: wrap;
    }



    .price-period {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        font-weight: normal;
    }

    .property-description {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .property-actions-bottom {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn {
        padding: 0.875rem 2rem;
        border-radius: 0;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.875rem;
        display: inline-block;
        text-align: center;
    }

    .btn-luxury {
        background: linear-gradient(135deg, #d4af37, #c5a736);
        color: #000000;
        position: relative;
        overflow: hidden;
    }

    .btn-luxury::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .btn-luxury:hover::before {
        left: 100%;
    }

    .btn-view {
        background: rgba(212, 175, 55, 0.1);
        color: #d4af37;
        border: 1px solid rgba(212, 175, 55, 0.3);
        flex: 1;
    }

    .btn-view:hover {
        background: rgba(212, 175, 55, 0.2);
    }

    .btn-contact {
        background: transparent;
        color: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.3);
        flex: 1;
    }

    .btn-contact:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    /* Pagination */
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 4rem;
    }

    .pagination-btn {
        padding: 0.75rem 1.5rem;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(212, 175, 55, 0.3);
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .pagination-btn:hover:not(:disabled) {
        background: rgba(212, 175, 55, 0.1);
        border-color: #d4af37;
        color: #d4af37;
    }

    .pagination-btn.active {
        background: #d4af37;
        border-color: #d4af37;
        color: #000;
    }

    .pagination-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* Empty State */
    .empty-state {
        text-align: center;
        padding: 4rem 0;
    }

    .empty-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
        color: #d4af37;
    }

    .empty-state h3 {
        font-size: 1.5rem;
        color: #d4af37;
        margin-bottom: 1rem;
    }

    .empty-state p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 2rem;
    }



    .nav-menu.active {
        display: block;
        position: absolute;
        top: 100%;
        width: 100%;
        left: 0;
        padding: 10px 20px 50px 20px;
    }

    .dropdown-content {
        position: relative;
        display: block;
        background: rgba(26, 26, 26, 0.95);
        border-radius: 0.25rem;
        margin-top: 0;
        top: 10px;
        width: 90%;
    }

    .nav-dropdown:hover .dropdown-content {
        display: block;
    }

    .section.comparition_section_main {
        padding: 0px 13px !important;
    }

    .servides_page .service-card {
        padding: 20px;
    }
}





















/* Toggle button */
.luxe-user-dashoned-sidebar .menu-btn {
    display: none;
}

/* Close button */
.luxe-user-dashoned-sidebar .close-btn {
    display: none;
}

/* Overlay */
.luxe-user-dashoned-sidebar .sidebar-overlay {
    display: none;
}





.profile_luxe_user {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 15px;
    align-items: start;
}

.card.setting_user {
    position: sticky;
    top: 0;
    padding: 0;
}



.list_favorite {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    text-align: center;
}



.list_favorite .cont_fav {
    color: var(--primary-gold);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.list_favorite .text_fav {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.property-grid .property-card {
    position: relative;
}


.add_and_remove_fav {
    position: absolute;
    top: 1rem;
    right: 1rem;
}


.add_and_remove_fav button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.add_and_remove_fav button span {
    color: #dc2626;
    font-size: 1.5rem;
}



.favorite_date {
    margin: 1rem 0;
    padding: 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.favorite_date p {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
}


.action__btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.action__btn a {
    text-decoration: none;
    text-align: center;
    padding: 0.75rem;
}


.action__btn button {
    background: transparent;
    border: 2px solid #dc2626;
    color: #dc2626;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}




.investment_page .card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-align: center;
}


.investment_page .card {
    margin-bottom: 2rem;
}


.calculater_roi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

div#results-panel {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

div#results-panel h3 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.analysis_result {
    margin-bottom: 2rem;
}

.result_main_show {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}


.investment_rating {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}


#roi-calculator label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.main-form-anlsysis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 2rem;
}

.form_group_dd {
    margin: 0 0 20px 0;
}

.main-form-anlsysis label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-text);
    font-weight: 600;
}

.main-form-anlsysis span {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.2rem;
}


.main-form-anlsysis input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 1rem;
}


.form_group_dd span {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.2rem;
}


.form_group_dd input {
    width: 100%;
    padding: 1rem 1rem 1rem 2.5rem;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.9);
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 600;
}


.market_trend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 0rem;
}



.market_terns_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.item_dek_investment {
    margin: 0 0 20px 0;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}



.user_face_icon_ivest {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}


.user_face_icon_ivest .dot_name {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.5rem;
}


.investment_strategies h3 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.investment_strategies_item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.investment_strategies_item_card {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;

}


.icon_dekreed {
    font-size: 3rem;
    margin-bottom: 1rem;
}



.investment_strategies_item_card h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}


.investment_strategies_item_card p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}


.roi_text {
    color: #10b981;
    font-weight: 600;
}









.luxe_user_message .chat-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* LEFT PANEL */
.luxe_user_message .conversation-panel {
    background: rgba(26, 26, 26, 0.9);
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.luxe_user_message .chat-layout .conversation-header {
    padding: 24px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.luxe_user_message .chat-layout .conversation-header h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.luxe_user_message .chat-layout .search-box {
    position: relative;
}

.luxe_user_message .chat-layout .search-box input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    background: #000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #fff;
}

.luxe_user_message .chat-layout .search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.luxe_user_message .chat-layout .conversation-list {
    overflow-y: auto;
}

.luxe_user_message .chat-layout .conversation-item {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.luxe_user_message .chat-layout .conversation-item.active {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--primary-gold);
}

.luxe_user_message .chat-layout .conversation-user {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.luxe_user_message .chat-layout .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.luxe_user_message .chat-layout .avatar.gold {
    background: var(--primary-gold);
    color: #000;
}

.luxe_user_message .chat-layout .avatar.purple {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
}

.luxe_user_message .chat-layout .avatar.small {
    width: 35px;
    height: 35px;
    font-size: 12px;
}

.luxe_user_message .chat-layout .avatar.large {
    width: 50px;
    height: 50px;
    font-size: 16px;
}

.luxe_user_message .chat-layout .name {
    color: var(--primary-gold);
    font-weight: 600;
}

.luxe_user_message .chat-layout .role,
.time,
.last-message {
    color: var(--gray-text);
    font-size: 12px;
}

/* CHAT PANEL */
.luxe_user_message .chat-layout .chat-panel {
    display: flex;
    flex-direction: column;
}

.luxe_user_message .chat-layout .chat-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.luxe_user_message .chat-layout .chat-user {
    display: flex;
    gap: 15px;
    align-items: center;
}

.luxe_user_message .chat-layout .chat-actions button {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-gold);
    padding: 8px;
    border-radius: 6px;
}

/* MESSAGES */
.luxe_user_message .chat-layout .messages-area {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.luxe_user_message .chat-layout .date-divider {
    text-align: center;
    color: var(--gray-text);
    margin: 20px 0;
}

.luxe_user_message .chat-layout .message {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.luxe_user_message .chat-layout .message.sent {
    justify-content: flex-end;
}

.luxe_user_message .chat-layout .bubble {
    max-width: 70%;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 16px;
    color: #fff;
    position: relative;
}

.luxe_user_message .chat-layout .bubble.gold {
    background: linear-gradient(135deg, var(--primary-gold), #c5a736);
    color: #000;
}

.luxe_user_message .chat-layout .msg-time {
    display: block;
    font-size: 11px;
    margin-top: 5px;
    color: var(--gray-text);
}

/* INPUT */
.luxe_user_message .chat-layout .chat-input {
    display: flex;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.luxe_user_message .chat-layout .chat-input textarea {
    flex: 1;
    padding: 14px;
    border-radius: 10px;
    background: #000;
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #fff;
    height: 45px;
    resize: none;
    overflow: hidden;
}

.luxe_user_message .chat-layout .chat-input button.send {
    background: var(--primary-gold);
    color: #000;
    padding: 12px 20px;
    border-radius: 10px;
    border: navajowhite;
}

button.attach {
    width: 50px;
    border: none;
    background: #d4af37;
    border-radius: 5px;
}


.personal_information_user {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 2rem;
}

.settings-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}




.profile_pic_user {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.profile_photo {
    position: relative;
}

.profile_pic_show {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), #c5a736);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dark-bg);
    font-weight: 700;
    overflow: hidden;
}

.profile_pic_show img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.profile_pic_change_btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-gold);
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


section.banner_section.search_pages {
    height: 400px !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.section.new_add_pages_ {
    padding: 32px 50px;
}

.new_add_pages_ .property-features {
    margin-bottom: 10px;
}

section.saeacrh_form_page {
    margin: 0px 0 0 0;
    padding: 0;
}

.saeacrh_form_page .glass-effect {
    padding: 1.5rem;
    border-radius: 1rem;
    max-width: 600px;
    margin: 0 auto;
}





/* Toggle icon */
.open_sidebar_admin {
    font-size: 22px;
    cursor: pointer;
    color: #D4AF37;
    margin-right: 10px;
}

/* Default sidebar width */
.admin-sidebar {
    width: 280px;
    transition: width 0.3s ease;
    z-index: 999;
    background: #000;
}

/* Main content default */
.admin-main {
    margin-left: 280px;
    transition: margin-left 0.3s ease;
}

/* Sidebar closed state */
.sidebar-closed .admin-sidebar {
    width: 0;
    padding: 0;
}

/* Sidebar closed main content */
.sidebar-closed .admin-main {
    margin-left: 0;
}

/* Sidebar hide content when closed */
.sidebar-closed .admin-sidebar * {
    opacity: 0;
}




.item_grid_admin h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}


.item_grid_admin .label_name__ {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.admin_user_anlysisis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 2rem;
}

.admin_user_ragistration_data {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
    padding: 2rem;
}



.recent_activity_admin {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 2rem;
}


.pending_request_approve {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 0.5rem;
    border-left: 4px solid #f59e0b;
}

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



.admni_main_page {
    background: no-repeat;
    padding: 0;
    margin: 0 0 30px 0;
    border-radius: 0;
    text-align: left;
}

.admin_heaader_ {
    width: auto;
    position: relative;
    padding: 0 0 0 0px;
}


.admin_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 2rem;
}

.item_grid_admin {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.icon_admin_grid {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}




.admin_user_statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 2rem;
    margin-top: 0px;
}


.admin_user_search_item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 15px;
    align-items: end;
}

.admin_user_search_item a {
    background: var(--primary-gold);
    text-align: center;
    color: var(--dark-bg);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    font-size: 12px;
}

.admin_users_table {
    padding: 0;
    overflow: hidden;
}


.header-users-table {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-table-admin {
    overflow: auto;
    float: left;
    width: 100%;
    position: relative;
}




.admin_section_title {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    padding: 2rem 0;
    margin: -2rem -2rem 2rem -2rem;
    border-radius: 0 0 1rem 1rem;
}

.admin_section_title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.admin_section_title p {
    color: var(--gray-text);
    font-size: 1.1rem;
}


.admin_property_statistic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(172px, 1fr));
    gap: 15px;
    margin-bottom: 2rem;
}

.admin_user_search_item_2 {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 15px;
    align-items: end;
}


.admin_user_search_item_2 a {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    font-size: 12px;
    text-align: center;
}

.admin_user_search_item_3 {
    display: grid;
    grid-template-columns: 1fr auto auto auto auto;
    gap: 15px;
    align-items: end;
}

.admin_user_search_item_3 a {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    font-size: 12px;
    text-align: center;
}


.action_transction-amdin button {
    justify-content: center;
}


.action_transction-amdin {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(4, 1fr);
    text-align: center !important;
}

.notification_types_management {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 2rem;
}


.admin_setting{
    display: grid; grid-template-columns: 250px 1fr; gap: 15px; align-items: start;
}


.admin_profile{
    display: flex; align-items: center; gap: 15px; margin-bottom: 3rem;
}

.admin_personal_detail{
    display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 2rem;
}