:root {
    --primary-color: #059669; /* Emerald Green */
    --primary-dark: #065f46;
    --primary-light: #ecfdf5;
    --secondary-color: #1e3a8a; /* Deep Blue */
    --bg-dark: #0f172a;
    --accent-color: #f59e0b; /* Amber */
    --text-color: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-premium: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    --glass: rgba(255, 255, 255, 0.7);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
body {
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Hero Intro Cards Section Refined */
.hero-intro-section {
    position: relative;
    margin-top: -100px !important; /* Force overlap */
    z-index: 30 !important;
    padding-top: 0 !important;
    padding-bottom: 60px !important;
}

.intro-cards-grid {
    display: flex !important;
    gap: 30px !important;
    max-width: 1140px !important;
    margin: 0 auto !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

.intro-card {
    background: #ffffff !important;
    flex: 1 !important;
    min-width: 300px !important;
    padding: 45px 35px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08), 0 20px 50px -10px rgba(0, 0, 0, 0.12) !important;
    text-align: left !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    display: flex !important;
    flex-direction: column !important;
}

.intro-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2) !important;
}

.intro-card-icon {
    width: 65px !important;
    height: 65px !important;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%) !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 25px !important;
    color: var(--primary-color) !important;
    font-size: 28px !important;
    box-shadow: inset 0 0 0 1px rgba(5, 150, 105, 0.1) !important;
}

.intro-card h3 {
    font-size: 22px !important;
    font-weight: 800 !important;
    margin-bottom: 18px !important;
    color: var(--secondary-color) !important;
    letter-spacing: -0.5px !important;
}

.intro-card p {
    font-size: 15px !important;
    color: var(--text-muted) !important;
    margin-bottom: 25px !important;
    line-height: 1.7 !important;
    flex-grow: 1 !important;
}

.intro-card .card-link {
    display: inline-flex !important;
    align-items: center !important;
    color: var(--primary-color) !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    gap: 10px !important;
    transition: var(--transition) !important;
}

.intro-card .card-link i {
    font-size: 12px !important;
    transition: transform 0.3s ease !important;
}

.intro-card:hover .card-link i {
    transform: translateX(5px) !important;
}

.intro-card .card-link:hover {
    color: var(--secondary-color) !important;
}


body {
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.d-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.flex-wrap { display: flex; flex-wrap: wrap; align-items: stretch; }
.text-center { text-align: center; }
.text-danger { color: #ef4444; }
.py-1 { padding-top: 1rem; padding-bottom: 1rem; }
.py-2 { padding-top: 2rem; padding-bottom: 2rem; }
.py-3 { padding-top: 3rem; padding-bottom: 3rem; }
.py-4 { padding-top: 4rem; padding-bottom: 4rem; }
.py-5 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #047857;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

.btn-light {
    background-color: white;
    color: var(--primary-color);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* Form Controls */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
    background-color: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

/* Topbar */
.topbar {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.topbar .contact-info a {
    margin-right: 15px;
}

.topbar .divider {
    margin: 0 10px;
    opacity: 0.5;
}

.topbar .social-links a {
    margin-left: 10px;
}

/* Header */
.main-header {
    background-color: white;
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.logo .brand-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.logo .brand-tagline {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    border-radius: var(--radius);
    overflow: hidden;
    top: 100%;
    left: 0;
    padding: 10px 0;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 15px;
}

.dropdown-content a:hover {
    background-color: #f0fdf4;
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-bottom: 80px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.hero-content {
    text-align: center;
}

.hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Slide Content Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.slide.active .animate-up {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slider-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow { left: 40px; }
.next-arrow { right: 40px; }

@media (max-width: 768px) {
    .hero-slider { height: 450px; }
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 16px; }
    .slider-arrow { display: none; }
}






/* Features */
.section-title {
    font-size: 32px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    padding: 40px;
    width: 250px;
    margin: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.feature-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Plot Cards */
.plot-card {
    background: white;
    width: calc(33.333% - 30px);
    margin: 15px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.plot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plot-img {
    height: 200px;
    position: relative;
}

.plot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-sale {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.plot-body {
    padding: 20px;
}

.plot-title {
    font-size: 20px;
    margin-bottom: 10px;
}

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

.plot-amenities {
    padding: 0;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.plot-amenities li {
    font-size: 12px;
    color: var(--text-muted);
    margin-right: 15px;
}

.plot-amenities i {
    color: var(--primary-color);
}

.plot-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-color);
}

/* Locations */
.location-card {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 15px;
    border-radius: var(--radius);
    overflow: hidden;
}

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

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.location-overlay h3 {
    color: white;
    margin: 0;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

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

/* Contact Page */
.contact-banner {
    background-color: var(--secondary-color);
    color: white;
}

.contact-banner h1,
.contact-banner p {
    color: white !important;
}

.contact-left {
    flex: 1;
}

.contact-right {
    width: 350px;
    margin-left: 50px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-card h3 {
    margin-bottom: 20px;
}

.contact-card p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-card i {
    width: 30px;
    font-size: 18px;
}

.map-box {
    margin-top: 30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

@media (max-width: 992px) {
    .contact-left, .contact-right {
        width: 100%;
        margin-left: 0;
    }
    
    .contact-right {
        margin-top: 50px;
    }
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Footer */
.footer {
    background-color: #111827;
    color: #e5e7eb;
    padding: 80px 0 20px;
}

.footer-col {
    width: calc(25% - 30px);
    margin-bottom: 40px;
}

.footer h3, .footer h4 {
    color: white;
    margin-bottom: 25px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Mobile Toggle */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 2px 0;
    transition: var(--transition);
}

@media (max-width: 992px) {
    .plot-card { width: calc(50% - 30px); }
    .footer-col { width: calc(50% - 30px); }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 30px 20px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
        z-index: 2000;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        display: block; /* Show nested items on mobile by default or toggle? Default for simplicity */
        background: #f9fafb;
    }

    .mobile-menu-btn { display: flex; }
    .hero-content h1 { font-size: 32px; }
    .plot-card { width: 100%; margin: 15px 0; }
    .footer-col { width: 100%; }
}

/* Property Details - New Styles */
/* Property Details Redesign */
.property-gallery-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.gallery-slider .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 10s ease;
}

.property-gallery-hero:hover .hero-image {
    transform: scale(1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}

.gallery-info {
    max-width: 800px;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.gallery-info h1 {
    font-size: 3.5rem;
    color: white !important;
    margin-bottom: 15px;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0;
}

.section-box {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    margin-bottom: 2rem;
}

.section-box:hover {
    box-shadow: var(--shadow-premium);
}

.property-overview-card {
    background: white;
    padding: 0 !important; /* Managed by items */
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: -60px;
    position: relative;
    z-index: 50;
    box-shadow: var(--shadow-xl);
    border: none !important;
}

.overview-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.overview-item {
    padding: 25px 30px;
    flex: 1;
    min-width: 150px;
    text-align: left;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.overview-item:last-child {
    border-right: none;
}

.overview-item .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.overview-item .value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.overview-item .text-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.details-left { 
    flex: 0 0 65%;
    max-width: 65%;
    min-width: 0;
}

.details-right { 
    flex: 0 0 35%;
    max-width: 35%;
    min-width: 0;
    padding-left: 30px;
}

.property-overview-card .overview-item {
    padding: 10px 20px;
    text-align: center;
    border-right: 1px solid var(--border-color);
    flex: 1;
}

.property-overview-card .overview-item:last-child {
    border-right: none;
}

.property-overview-card .label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-overview-card .value {
    font-size: 20px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 24px;
    position: relative;
    padding-bottom: 15px;
    color: var(--secondary-color);
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.amenities-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.amenity-card-new {
    background: #f8fafc;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.amenity-card-new:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.amenity-card-new i {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.amenity-card-new:hover i {
    background: var(--primary-color);
    color: white;
    transform: rotate(10deg);
}

.book-visit-box {
    background: linear-gradient(135deg, #065f46 0%, #1e3a8a 100%);
    padding: 35px 25px !important;
    border-radius: var(--radius-lg);
    text-align: center;
    color: white !important;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: none;
}

.book-visit-box h4 {
    color: white !important;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.book-visit-box p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-visit {
    background: white !important;
    color: var(--primary-color) !important;
    width: 100%;
    padding: 15px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-visit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background: var(--primary-light) !important;
}

.location-spotlight h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.spotlight-list {
    padding: 0;
}

.spotlight-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 500;
    color: var(--text-color);
}

.spotlight-list li:last-child {
    border-bottom: none;
}

.spotlight-list i {
    width: 35px;
    height: 35px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 15px;
    transition: var(--transition);
}

.spotlight-list li:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.landmarks-list li {
    width: calc(50% - 20px);
    margin: 10px;
    padding: 15px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.landmarks-list li:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.landmarks-list i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 18px;
}

.contact-agent-card {
    background: white;
    padding: 30px !important;
    border-radius: var(--radius-lg) !important;
    border: none !important;
    box-shadow: var(--shadow-xl) !important;
}

/* Full-Width Gallery & Lightbox */
.gallery-item-new {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 250px;
}

.gallery-item-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 150, 105, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-item-new:hover .gallery-item-overlay i {
    transform: scale(1);
}

/* Lightbox Overlay */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--primary-color);
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 4px;
    transition: transform 0.2s ease-out;
    cursor: default;
}

.lightbox-controls {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.lightbox-controls button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.lightbox-controls button:hover {
    background: var(--primary-color);
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.contact-agent-card h3 {
    font-size: 18px;
}

@media (max-width: 992px) {
    .details-left, .details-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
    }
    .property-gallery-hero {
        height: 350px;
    }
    .landmarks-list li {
        width: 100%;
    }
    .property-overview-card {
        flex-direction: column;
    }
    .property-overview-card .overview-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

/* Property Gallery Grid */
.property-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    height: 200px;
    border: 1px solid var(--border-color);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 576px) {
    .property-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Listing Banner */
.listing-banner {
    padding: 0;
    height: 30vh;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.listing-banner h1 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.listing-banner p {
    font-size: 1.1rem;
    z-index: 2;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .listing-banner {
        padding: 60px 0;
    }
    .listing-banner h1 {
        font-size: 2rem;
    }
}

/* Blog Card Styles */
.blog-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-card {
    background: white;
    width: calc(50% - 15px);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-body {
    padding: 25px;
}

.blog-date {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--secondary-color);
}

.blog-body p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 15px;
}

.read-link {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.read-link i {
    font-size: 12px;
    margin-left: 5px;
}

/* Blog Index & Detail Refined */
.blog-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e3a8a 100%);
    position: relative;
    padding: 100px 0;
    text-align: center;
}

.blog-banner h1 {
    color: #ffffff !important;
    font-size: 42px !important;
    margin-bottom: 15px !important;
    font-weight: 800 !important;
}

.blog-banner p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 18px !important;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    max-width: 450px; /* Prevent card from getting TOO wide on single item */
    margin: 0 auto; /* Center single card */
}

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

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

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-card-body {
    padding: 30px;
}

.blog-date {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 800;
    color: var(--secondary-color);
}

.blog-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-detail {
    max-width: 900px !important;
}

.blog-detail-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-content {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
}

.blog-content h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-content p {
    margin-bottom: 25px;
}

.blog-cta-box {
    background: #f8fafc;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}


