:root {
    --navy: #000000;
    --navy-light: #000000;
    --gold: #d4af37;
    --gold-light: #f4cf6d;
    --white: #ffffff;
    --text-muted: #8892b0;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    overflow-x: hidden;
}

.section-padding {
    padding: 100px 0;
}

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

.bg-navy {
    background-color: var(--navy) !important;
}

/* Glassmorphism */
.bg-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Typography */
.navbar-brand img {
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand img {
    height: auto;
    max-width: 184px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: #000;
    border: none;
    transition: var(--transition);
}

.btn-gold:hover {
    background-color: var(--gold-light);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgb(36 37 38 / 95%);
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--white) !important;
}

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

.navbar .navbar-brand img {
    max-width: 250px;
    height: auto;
}

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

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('../img/hero_bg.png') no-repeat center center/cover;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(6 9 14 / 70%), rgb(18 19 20 / 90%));
    z-index: 1;
}

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

/* About Section */
.about-image-wrapper {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.icon-circle {
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Property Cards */
.property-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.property-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.property-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.property-content {
    padding: 25px;
}

.property-content h4 {
    margin-bottom: 10px;
}

.location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

/* Investment Plans */
.investment-plan-card {
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.investment-plan-card:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.plan-badge {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.plan-badge.basic {
    background: #555;
}

.plan-badge.growth {
    background: var(--gold);
}

.plan-badge.premium {
    background: #d32f2f;
}

.price-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
}

.plan-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Service Cards */
.service-card {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    background: var(--navy);
    color: var(--white);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--white);
    transform: scale(1.1);
}

/* Stats and Why Choose Us */
.stat-card {
    border-radius: 15px;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

/* Contact */
.contact-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.form-control:focus {
    box-shadow: none;
    background: #f0f0f0 !important;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    transform: rotate(360deg);
}

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

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

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-up-delay {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.animate-up-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .experience-badge {
        right: 0;
        bottom: -20px;
        padding: 15px 20px;
    }
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    /* Hidden by default */
    width: 320px;
    height: 100%;
    background: #000;
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 50px rgba(0, 0, 0, 0.2);
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-logo {
    max-width: 130px;
}

.navbar-toggler {
    background-color: gold;
    margin-right: 12px;
}

.btn-close-custom {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #f2f2f2;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.btn-close-custom:hover {
    background: rgba(0, 0, 0, 0.05);
}

.sidebar-content {
    flex-grow: 1;
    padding: 0 25px;
    overflow-y: auto;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.sidebar-nav li:last-child {
    border-bottom: none;
}

.sidebar-nav a {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    transition: var(--transition);
}

.sidebar-nav a:hover {
    color: var(--gold);
    transform: translateX(10px);
}

.sidebar-footer {
    padding: 15px;
    background: #000;
    border-top: 1px solid rgba(0, 0, 0, 0.05);

}

/* Clock Widget */
.clock-widget {
    background: linear-gradient(135deg, var(--navy), #1a1a1a);
    color: var(--gold);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.clock-time {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.clock-date {
    font-size: 0.85rem;
    opacity: 0.9;
    color: var(--white);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}