* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    overflow-x: hidden;
}

.nav-links.active {
    right: 0;
}

    
.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 60px;
    height: auto;
}

.logo span{
    margin-left: 5px;
}

.mobile-menu.active i::before {
        content: "\f00d";
}

header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo-text{
    margin-left: 10px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
}


@media (max-width: 1024px) {
    body.no-scroll {
        overflow: hidden !important; /* Prevents scrolling when menu is open */
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 70%;
        height: 100vh;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        backdrop-filter: blur(10px);
        justify-content: flex-start;
        gap: 2rem;
        align-items: center;
        overflow: hidden;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: var(--primary);
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu.active i::before {
        content: "\f00d"; /* FontAwesome X icon */
    }
}

@media (max-width: 400px) {
    .logo-text {
        margin-left: 4px;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary);
        text-decoration: none;
        font-family: 'Inter', sans-serif;
}

}   

.gallery-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Desktop Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    height: 600px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Mobile Layout */
.mobile-gallery {
    display: none;
}

.mobile-main-image {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.mobile-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mobile-thumbnails::-webkit-scrollbar {
    display: none;
}

.mobile-thumbnail {
    flex: 0 0 180px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.mobile-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-all-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    z-index: 1000;
    opacity: 0;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    z-index: 1001;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.image-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        display: none;
    }

    .mobile-gallery {
        display: block;
    }

    .lightbox-nav {
        font-size: 1.5rem;
        padding: 0.5rem;
    }
}

/* Global Font Style */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    overflow-x: hidden !important; 
    width: 100%;
}

/* Property Header */
.property-header {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 0 !important;
    margin: 2rem auto;
    padding: 0 1rem;
}

li{
    list-style-type: none;
}

.property-title {
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
    color: #333; /* Dark Gray */
    line-height: 1.2;
    margin-bottom: 1rem;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem; /* 14px */
    color: #666; /* Medium Gray */
    line-height: 1.6;
    margin-bottom: 1rem;
}

.property-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4169E1; /* Royal Blue */
    margin-bottom: 2rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease;
    margin-top: 20px;
    margin-bottom: 20px;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
}

.property-details {
    max-width: 1200px;
    margin: 0rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.875rem; /* 14px */
    color: #666;
    line-height: 1.6;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: #4169E1;
}

.section-title {
    font-size: 1.5rem; /* 24px */
    font-weight: 600; /* Semi-Bold */
    color: #333;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 0.875rem; /* 14px */
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Agent Card */
.agent-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 2rem;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.agent-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.agent-name {
    font-size: 1rem; /* 16px */
    font-weight: 600;
    color: #333;
}

.agent-title {
    font-size: 0.875rem; /* 14px */
    color: #666;
}

/* Map */
.map-container {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
}

/* Similar Properties */
.similar-properties {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-card-content {
    padding: 1.5rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */

@media (max-width: 1075px) {
    .property-header {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}
}
@media (max-width: 768px) {
    .property-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .property-title {
        font-size: 2rem;
    }

    .agent-card {
        position: static;
        margin-top: 2rem;
        padding: 0rem 0rem 0rem 0rem;
    }
}


:root {
--primary-dark: #1a1e26;
--accent-red: #4169E1;
--text-light: #ffffffe6;
--main-font: 'Inter', system-ui, -apple-system, sans-serif;
}


.lux-footer {
margin-top: 70px !important;
background: var(--primary-dark);
color: var(--text-light);
padding: 4rem 2rem 0;
margin-top: auto;
position: relative;
z-index: 100;
}

body {
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
}

a {
color: #ffffffe6;;
text-decoration: none;
}

a:hover {
text-decoration:none; 
cursor:pointer;  
}

.footer-container {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 3rem;
padding-bottom: 3rem;
}

.footer-col {
padding: 1rem;
align-items: center;
}

.brand-col {
padding-right: 3rem;
}

* {
font-family: var(--main-font);
}

.footer-logo {
font-size: 2rem;
font-weight: 700;
color: #fff;
margin-bottom: 1.5rem;
}

.footer-col>ul{
padding: 20px;
}
.nav-links a {
font-family: var(--main-font);
font-weight: 500;
}

.footer-logo span {
color: var(--accent-red);
}

.footer-tagline {
color: rgba(255, 255, 255, 0.8);
margin-bottom: 2rem;
line-height: 1.6;
}

.social-links {
display: flex;
gap: 1.2rem;
}

.social-icon {
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
justify-content: center;
color: var(--text-light);
transition: all 0.3s ease;
}

.social-icon:hover {
background: var(--accent-red);
transform: translateY(-3px);
}

.footer-title {
color: var(--accent-red);
font-size: 1.2rem;
margin-bottom: 1.5rem;
padding-bottom: 0.8rem;
border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-links li {
margin-bottom: 1rem;
}

.footer-links a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: all 0.3s ease;
}

.footer-links a:hover {
color: var(--accent-red);
padding-left: 6px;
}

.contact-info li {
margin-bottom: 1.2rem;
display: flex;
align-items: center;
gap: 1rem;
color: rgba(255, 255, 255, 0.8);
}


li{
list-style-type: none;
}

.contact-info i {
color: var(--accent-red);
width: 20px;
text-align: center;
}

.copyright-bar {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding: 2rem 1rem;
text-align: center;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
max-width: 1400px;
margin: 0 auto;
}

.legal-links {
display: flex;
gap: 1.5rem;
}

.legal-links a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: all 0.3s ease;
}

.legal-links a:hover {
color: var(--accent-red);
}

@media (max-width: 768px) {
.footer-container {
    grid-template-columns: 1fr;
    text-align: center;
}

.brand-col {
    padding-right: 1rem;
}

.social-links {
    justify-content: center;
}

.footer-links a:hover {
    padding-left: 0;
}

.contact-info li {
    justify-content: center;
}

.copyright-bar {
    flex-direction: column;
    gap: 1rem;
}
.footer-col>ul{
padding: 0px;
}
}
.legal-links{
    justify-content: center;
}