        :root {
            --primary-blue: #2563eb;
            --accent-purple: #8b5cf6;
            --sky-blue: #87CEEB;
            --primary-yellow: #FFD700;
            --card-dark: #141414;
        }

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

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: #fdfdfd;
            color: #111;
            overflow-x: hidden;
        }

        /* ===== LOADER ===== */
        #loaderOverlay {
            position: fixed; top: 0; left: 0;
            width: 100vw; height: 100vh;
            background: linear-gradient(135deg, #9000bc 0%, #0178ff 60%, #00c6fd 100%);
            z-index: 9999;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            transition: opacity 0.2s ease;
        }
        #loaderOverlay.fade { opacity: 0; pointer-events: none; }

        .loader-logo-wrap {
            position: relative;
            width: 170px;
            height: 170px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.8rem;
        }

        /* Instagram-style shimmer ring without glare */
        .loader {
            --b: 25%;
            height: 140px;
            aspect-ratio: 1/cos(30deg);
            position: absolute;
            clip-path: polygon(50% 0,100% 100%,0 100%,50% 0,50% var(--b),calc(var(--b)*cos(30deg)) calc(100% - var(--b)/2),calc(100% - var(--b)*cos(30deg)) calc(100% - var(--b)/2),50% var(--b));
            filter: blur(12px);
        }
        .loader:before {
            content: "";
            position: absolute;
            inset: -8% 0;
            background: conic-gradient(#0000 35%,#0B486B,#0000 65%);
            animation: l5 2s linear infinite;
        }
        @keyframes l5 { to { rotate: 1turn; } }

        .loader-logo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            position: relative;
            z-index: 2;
        }

        .loader-headline {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 400; font-size: 2rem;
            color: #fff; text-align: center; margin-bottom: 0.5rem;
        }
        .loader-subtext { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
/* ===== HEADER ===== */
        header {
            background: linear-gradient(to right, rgb(0,198,253), rgb(83,152,255));
            padding: 1rem 2rem; position: fixed; top: 0; left: 0;
            width: 100%; z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            display: flex; justify-content: space-between; align-items: center;
            max-width: 1200px; margin: 0 auto;
        }
        .logo {
            display: flex; align-items: center;
            font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400;
            font-size: 1.6rem; color: white; gap: 10px; text-decoration: none;
        }
        .logo img { height: 40px; width: auto; border-radius: 50%; }
        .desktop-nav ul { display: flex; list-style: none; gap: 0.3rem; }
        .desktop-nav ul li a {
            color: white; text-decoration: none; font-weight: 600; font-size: 0.95rem;
            padding: 0.5rem 0.9rem; border-radius: 20px;
            transition: background 0.2s, color 0.2s;
        }
        .desktop-nav ul li a:hover { background: rgba(255,255,255,0.2); color: #FFD700; }
        .desktop-nav ul li a.active { background: rgba(255,255,255,0.25); }
        .mobile-menu-toggle {
            display: none; background: none; border: none;
            color: #003366; font-size: 1.5rem; cursor: pointer;
        }
        @media (max-width: 768px) {
            header { padding: 1rem; }
            .desktop-nav { display: none; }
            .mobile-menu-toggle { display: none; }
        }

        /* ===== HERO ===== */
        .hero {
            height: 90vh; margin-top: 68px;
            position: relative; overflow: hidden;
            display: flex; align-items: center; justify-content: center; text-align: center;
        }
        .hero-bg {
            position: absolute; inset: 0;
            background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.62)),
                url('https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
        }
        .hero-content { position: relative; z-index: 2; padding: 0 20px; max-width: 720px; }
        .hero-pill {
            display: inline-block;
            background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3); color: #FFD700;
            font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
            padding: 6px 18px; border-radius: 30px; margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out both;
        }
        .hero-content h1 {
            font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400;
            font-size: clamp(2.4rem, 6vw, 4.2rem);
            color: white; line-height: 1.1; margin-bottom: 1.2rem;
            animation: fadeInUp 0.9s 0.1s ease-out both;
        }
        .hero-content p {
            color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2.5rem;
            animation: fadeInUp 1s 0.2s ease-out both;
        }
        .hero-actions {
            display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
            animation: fadeInUp 1s 0.3s ease-out both;
        }
        .btn-hero-primary {
            background: linear-gradient(135deg, #2563eb, #8b5cf6);
            color: white; border: none; padding: 14px 32px; border-radius: 50px;
            font-weight: 700; font-size: 1rem; cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s; text-decoration: none;
            box-shadow: 0 8px 24px rgba(37,99,235,0.4);
        }
        .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,99,235,0.5); }
        .btn-hero-ghost {
            background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
            color: white; border: 1.5px solid rgba(255,255,255,0.4);
            padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem;
            cursor: pointer; transition: background 0.2s; text-decoration: none;
        }
        .btn-hero-ghost:hover { background: rgba(255,255,255,0.25); }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(28px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ===== SECTION COMMONS ===== */
        .section-wrap { padding: 80px 5%; }
        .section-wrap.dark  { background: #0a0a0a; }
        .section-wrap.tinted { background: #f4f7fb; }
        .section-inner { max-width: 1200px; margin: 0 auto; }
        .section-header {
            display: flex; align-items: flex-end; justify-content: space-between;
            margin-bottom: 36px; flex-wrap: wrap; gap: 12px;
        }
        .section-header-left { flex: 1; }
        .section-tag {
            font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px;
            text-transform: uppercase; color: #2563eb; margin-bottom: 8px; display: block;
        }
        .section-title {
            font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400;
            font-size: clamp(1.6rem, 3vw, 2.4rem); color: #111; line-height: 1.1;
        }
        .dark .section-title { color: white; }
        .dark .section-tag  { color: var(--sky-blue); }
        .view-all-link {
            color: #2563eb; font-weight: 700; text-decoration: none; font-size: 0.9rem;
            display: flex; align-items: center; gap: 6px; white-space: nowrap; transition: gap 0.2s;
        }
        .view-all-link:hover { gap: 10px; }
        .dark .view-all-link { color: var(--sky-blue); }

        /* ===== PROPERTY GRID ===== */
        .property-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px;
        }

        /* Property card */
        .property-card {
            background: white; border-radius: 12px; overflow: hidden;
            box-shadow: 0 10px 30px -12px rgba(60,40,120,0.25);
            transition: transform 0.18s, box-shadow 0.18s; cursor: pointer;
        }
        .property-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px -16px rgba(60,40,120,0.3);
        }

        /* Card carousel — mirrors Listings.html exactly */
        .card-carousel {
            position: relative; width: 100%; height: 200px;
            background: #f4f4f7; overflow: hidden;
        }
        .card-carousel .carousel-image {
            width: 100%; height: 100%; object-fit: cover; display: block;
            transition: transform 0.4s ease;
        }
        .property-card:hover .card-carousel .carousel-image { transform: scale(1.04); }

        .card-carousel .carousel-prev,
        .card-carousel .carousel-next {
            position: absolute; top: 50%; transform: translateY(-50%);
            background: rgba(0,0,0,0.5); color: white; border: none;
            width: 36px; height: 36px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; font-size: 1.1rem; z-index: 2;
            transition: background 0.2s;
        }
        .card-carousel .carousel-prev:hover,
        .card-carousel .carousel-next:hover { background: rgba(0,0,0,0.85); }
        .card-carousel .carousel-prev { left: 8px; }
        .card-carousel .carousel-next { right: 8px; }
        .card-carousel .carousel-indicator {
            position: absolute; bottom: 8px; right: 8px;
            background: rgba(0,0,0,0.6); color: white;
            padding: 4px 8px; border-radius: 12px;
            font-size: 0.75rem; font-weight: 600; z-index: 2;
        }

        /* Badges on image */
        .news-category.property-type {
            position: absolute; left: 12px; top: 12px;
            background: rgba(255,255,255,0.93); color: #3a2c62;
            padding: 6px 12px; border-radius: 999px;
            font-weight: 700; font-size: 0.8rem; z-index: 2;
            box-shadow: 0 4px 10px -4px rgba(0,0,0,0.2);
        }
        .property-price {
            position: absolute; right: 12px; top: 12px;
            background: linear-gradient(135deg, #7c5cf0, #9a6eff);
            color: #fff; padding: 8px 12px; border-radius: 10px;
            font-weight: 800; font-size: 0.95rem; z-index: 2;
            box-shadow: 0 8px 20px -12px rgba(124,92,240,0.45);
        }

        /* Card body */
        .property-content { padding: 14px 16px 18px; }
        .property-content h3 {
            font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
            font-size: 1.1rem; color: #111; margin: 0 0 6px;
        }
        .property-location {
            color: #6b6487; font-size: 0.95rem; margin: 0 0 12px; line-height: 1.3;
        }
        .property-details {
            display: flex; gap: 10px; align-items: center; margin-bottom: 12px; flex-wrap: wrap;
        }
        .property-room,
        .property-amenities {
            background: #f7f2ff; color: #44307a;
            padding: 6px 10px; border-radius: 999px;
            font-weight: 600; font-size: 0.85rem;
            display: flex; align-items: center; gap: 5px;
        }
        .property-amenities i { color: #27ae60; font-size: 0.8rem; }
        .view-property-link {
            display: inline-flex; align-items: center; gap: 6px;
            color: #2563eb; font-weight: 700; font-size: 0.88rem;
            cursor: pointer; background: none; border: none; padding: 0;
            transition: gap 0.2s; text-decoration: none;
        }
        .view-property-link:hover { gap: 10px; }

        /* ===== DISCOVER GRID ===== */
        .discover-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px;
        }
        .discover-card {
            background: var(--card-dark); border-radius: 16px; overflow: hidden;
            box-shadow: 0 12px 36px rgba(0,0,0,0.4);
            transition: transform 0.3s; cursor: pointer; color: white;
        }
        .discover-card:hover { transform: translateY(-6px); }
        .discover-media { position: relative; height: 240px; overflow: hidden; }
        .discover-media img,
        .discover-media video { width: 100%; height: 100%; object-fit: cover; }
        .melt-badge {
            position: absolute; top: 14px; right: 14px;
            background: var(--primary-blue); padding: 7px 12px;
            font-weight: 800; border-radius: 10px; color: white; font-size: 0.8rem;
            animation: melt 4s infinite alternate;
        }
        @keyframes melt {
            0%   { border-radius: 10px; }
            100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; background: var(--accent-purple); }
        }
        .discover-info { padding: 18px 20px 22px; }
        .discover-meta {
            font-size: 0.7rem; color: var(--sky-blue); font-weight: 700;
            text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
        }
        .discover-info h3 {
            font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
            font-size: 1.2rem; color: white; margin-bottom: 12px;
        }
        .btn-going {
            background: var(--primary-blue); color: white; border: none;
            padding: 10px 22px; border-radius: 20px; font-weight: 800;
            cursor: pointer; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px;
            transition: background 0.2s, transform 0.15s;
        }
        .btn-going:hover { background: var(--accent-purple); transform: translateY(-1px); }

        /* ===== HOW IT WORKS ===== */
        .how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
        .how-step {
            text-align: center; padding: 36px 24px; background: white; border-radius: 20px;
            box-shadow: 0 6px 24px -10px rgba(0,0,0,0.12); transition: transform 0.2s;
        }
        .how-step:hover { transform: translateY(-4px); }
        .how-icon {
            width: 72px; height: 72px;
            background: linear-gradient(135deg, #e0edff, #f0e8ff);
            border-radius: 20px; display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1.2rem;
        }
        .how-icon i { font-size: 1.8rem; color: #2563eb; }
        .how-step h3 {
            font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400;
            font-size: 1rem; margin-bottom: 8px;
        }
        .how-step p { color: #666; font-size: 0.88rem; line-height: 1.5; }

        /* ===== MARQUEE ===== */
        .marquee-wrap { padding: 50px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; overflow: hidden; }
        .marquee-label {
            text-align: center; font-size: 0.8rem; font-weight: 700;
            letter-spacing: 2px; text-transform: uppercase; color: #999; margin-bottom: 24px;
        }
        .marquee-track { display: flex; gap: 60px; animation: marqueeScroll 20s linear infinite; width: max-content; }
        @keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
        .marquee-track img { height: 44px; opacity: 0.35; filter: grayscale(1); transition: opacity 0.2s, filter 0.2s; }
        .marquee-track img:hover { opacity: 0.7; filter: grayscale(0); }

        /* ===== SKELETONS ===== */
        .skeleton-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 28px -12px rgba(60,40,120,0.1); }
        .skeleton-img  { height: 200px; background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
        .skeleton-body { padding: 14px 16px 18px; }
        .skeleton-line { height: 14px; border-radius: 6px; background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; margin-bottom: 10px; }
        .skeleton-line.short { width: 60%; }
        @keyframes shimmer { to { background-position: -200% 0; } }
        .skeleton-discover { background: #1a1a1a; border-radius: 16px; overflow: hidden; }
        .skeleton-discover .skeleton-img  { height: 240px; background: linear-gradient(90deg, #222 25%, #2a2a2a 50%, #222 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
        .skeleton-discover .skeleton-body { padding: 16px 20px 20px; }
        .skeleton-discover .skeleton-line { background: linear-gradient(90deg, #222 25%, #2a2a2a 50%, #222 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }

        /* ===== PROPERTY MODAL — matches Listings.html layout ===== */
        .modal-overlay {
            display: none; position: fixed; inset: 0;
            background: rgba(0,0,0,0.75); z-index: 2000;
            justify-content: center; align-items: center;
            padding: 1rem; overflow-y: auto;
        }
        .modal-overlay.active { display: flex; }

        .modal-box {
            background: white; border-radius: 12px;
            width: 95%; max-width: 1400px; max-height: 90vh; overflow-y: auto;
            position: relative; animation: modalIn 0.2s;
            display: flex; flex-direction: column;
        }
        @keyframes modalIn {
            from { opacity: 0; transform: translateY(40px) scale(0.98); }
            to   { opacity: 1; transform: none; }
        }
        .modal-close {
            position: absolute; top: 1rem; right: 1rem;
            background: rgba(255,255,255,0.95); border: none;
            font-size: 1.8rem; color: #333; width: 40px; height: 40px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; z-index: 15; transition: all 0.2s;
        }
        .modal-close:hover { transform: scale(1.1); }

        /* Two-column grid */
        .modal-content-wrapper {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 2rem; padding: 2rem; flex: 1;
        }
        @media (max-width: 1200px) { .modal-content-wrapper { grid-template-columns: 1fr; gap: 1.5rem; } }

        /* Left — carousel */
        .modal-left-side { display: flex; flex-direction: column; gap: 1rem; }

        .modal-carousel {
            width: 100%; height: 450px;
            background: #f0f0f0; border-radius: 12px;
            overflow: hidden; position: relative;
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }
        @media (max-width: 1200px) { .modal-carousel { height: 350px; } }
        @media (max-width: 768px)  { .modal-carousel { height: 250px; } }

        .modal-carousel-image {
            width: 100%; height: 100%; object-fit: cover; display: block;
        }
        .modal-prev, .modal-next {
            position: absolute; top: 50%; transform: translateY(-50%);
            background: rgba(0,0,0,0.5); color: white; border: none;
            width: 44px; height: 44px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; font-size: 1.3rem; z-index: 5; transition: background 0.2s;
        }
        .modal-prev:hover, .modal-next:hover { background: rgba(0,0,0,0.85); }
        .modal-prev { left: 12px; }
        .modal-next { right: 12px; }
        .modal-img-counter {
            position: absolute; bottom: 12px; right: 12px;
            background: rgba(0,0,0,0.6); color: white;
            padding: 4px 10px; border-radius: 12px; font-size: 0.78rem; font-weight: 600; z-index: 5;
        }

        /* Thumbnails */
        .modal-carousel-thumbnails {
            display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px;
        }
        .modal-carousel-thumbnails::-webkit-scrollbar { height: 4px; }
        .modal-carousel-thumbnails::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
        .modal-carousel-thumbnails img {
            width: 60px; height: 60px; object-fit: cover;
            border-radius: 8px; cursor: pointer;
            border: 2px solid transparent; transition: border-color 0.2s; flex-shrink: 0;
        }
        .modal-carousel-thumbnails img.active { border-color: #7c5cf0; }

        /* Right — details */
        .modal-right-side {
            display: flex; flex-direction: column;
            overflow-y: auto; max-height: calc(90vh - 4rem);
        }
        @media (max-width: 1200px) { .modal-right-side { max-height: none; } }

        .modal-content-container { display: flex; flex-direction: column; gap: 1.5rem; }

        .modal-category {
            display: inline-block; background: #e0e0e0; color: #333;
            border-radius: 4px; padding: 0.3em 0.8em; font-size: 0.9em; font-weight: 500; width: fit-content;
        }
        .modal-title {
            font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400;
            font-size: 1.8rem; color: #222; line-height: 1.3; margin: 0;
        }

        /* Action buttons */
        .modal-top-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        @media (max-width: 768px) { .modal-top-actions { grid-template-columns: 1fr; } }

        .btn-enquire-now {
            background: linear-gradient(135deg, #dc52ff, #dc52ff);
            color: white; border: none; padding: 1rem; border-radius: 20px;
            font-weight: 600; font-size: 1rem; cursor: pointer;
            display: flex; align-items: center; justify-content: center; gap: 0.5rem;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 12px rgba(220,82,255,0.3);
        }
        .btn-enquire-now:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(220,82,255,0.4); }

        /* Property stats */
        .property-stats {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
            padding: 1rem; background: #f8f7ff; border-radius: 8px;
        }
        @media (max-width: 768px) { .property-stats { grid-template-columns: 1fr; } }
        .stat-item { display: flex; flex-direction: column; gap: 0.3rem; }
        .stat-label { font-size: 0.85rem; color: #999; font-weight: 500; text-transform: uppercase; }
        .stat-value { font-size: 1.2rem; font-weight: 700; color: #333; }

        /* Features */
        .features-section { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
        @media (max-width: 768px) { .features-section { grid-template-columns: 1fr; } }
        .feature-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.6rem 0; }
        .feature-item i { color: #27ae60; font-weight: 600; }
        .feature-item span { color: #555; font-weight: 500; font-size: 0.95rem; }

        /* Description */
        .modal-description-section { padding: 1rem 0; border-top: 1px solid #eee; }
        .modal-description-section h3 { font-size: 1.1rem; margin: 0 0 0.8rem; color: #222; font-weight: 600; }
        .modal-full-content { font-size: 0.95rem; line-height: 1.6; color: #555; }
        .modal-full-content p { margin-bottom: 0.8rem; }

        /* Amenities */
        .modal-amenities-section { padding: 1rem 0; border-top: 1px solid #eee; }
        .modal-amenities-section h3 { font-size: 1.1rem; margin: 0 0 0.8rem; color: #222; font-weight: 600; }
        .amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
        .amenity-badge {
            background: #f0efff; color: #7c5cf0;
            padding: 0.5rem 0.8rem; border-radius: 20px;
            font-size: 0.9rem; font-weight: 500; text-align: center;
        }

        /* Contact */
        .modal-contact-section { padding-top: 1rem; border-top: 1px solid #eee; }
        .btn-contact-owner {
            width: 100%; background: linear-gradient(135deg, #25d366, #34a853);
            color: white; border: none; padding: 1.1rem; border-radius: 8px;
            font-weight: 600; font-size: 1rem; cursor: pointer;
            display: flex; align-items: center; justify-content: center; gap: 0.8rem;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 12px rgba(37,211,102,0.3);
        }
        .btn-contact-owner:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(37,211,102,0.4); }

        /* Related listings */
        .modal-related {
            margin-top: 1.5rem; padding: 1.5rem 2rem;
            border-top: 1px solid #eee; background: #f9f9fb;
            border-radius: 0 0 12px 12px;
        }
        .related-title {
            font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400;
            font-size: 1.3rem; margin: 0 0 1.5rem; color: #222;
        }
        .related-articles { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
        .related-article {
            background: white; border-radius: 8px; overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1); cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .related-article:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
        .related-article-img { width: 100%; height: 150px; object-fit: cover; display: block; }
        .related-article-content { padding: 1rem; }
        .related-article-title { font-size: 0.95rem; font-weight: 600; margin: 0 0 0.5rem; color: #222; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .related-article-link { display: inline-block; color: #7c5cf0; text-decoration: none; font-size: 0.9rem; font-weight: 600; margin-top: 0.5rem; }
        .related-article-link:hover { color: #5f43cf; text-decoration: underline; }

        /* ===== DISCOVER MODAL (dark) ===== */
        .modal-box.dark { background: #0d0d0d; color: white; }
        .modal-box.dark .modal-close { background: #222; color: white; }
        .modal-box.dark .modal-title { color: white; }
        .modal-box.dark .modal-category { background: rgba(139,92,246,0.3); color: #c4b5fd; }
        .modal-box.dark .property-stats { background: #1a1a1a; }
        .modal-box.dark .stat-label { color: #555; }
        .modal-box.dark .stat-value { color: var(--sky-blue); }
        .modal-box.dark .modal-full-content { color: #aaa; }
        .modal-box.dark .modal-carousel { background: #1a1a1a; }
        .btn-event {
            width: 100%; background: linear-gradient(135deg, #2563eb, #8b5cf6);
            color: white; border: none; padding: 14px; border-radius: 12px;
            font-weight: 700; font-size: 0.95rem; cursor: pointer;
            transition: transform 0.15s; box-shadow: 0 6px 16px rgba(37,99,235,0.3);
        }
        .btn-event:hover { transform: translateY(-2px); }

        /* ===== FOOTER ===== */
        footer {
            background: linear-gradient(160deg, rgb(143,219,255), rgb(83,152,255), rgb(1,47,115));
            color: white; padding: 3.5rem 2rem 1.5rem;
        }
        .footer-inner {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2.5rem; margin-bottom: 2.5rem;
        }
        .footer-logo {
            display: flex; align-items: center; gap: 10px;
            font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400;
            font-size: 1.4rem; margin-bottom: 1rem;
        }
        .footer-logo img { height: 40px; border-radius: 50%; }
        .footer-about p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 1rem; }
        .footer-social { display: flex; gap: 10px; }
        .footer-social a {
            color: white; background: rgba(255,255,255,0.12); width: 38px; height: 38px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            text-decoration: none; transition: background 0.2s;
        }
        .footer-social a:hover { background: #b603fc; }
        .footer-links h3, .footer-contact h3 {
            font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400; font-size: 1rem; margin-bottom: 1rem;
        }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 0.5rem; }
        .footer-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
        .footer-links a:hover { color: #FFD700; }
        .footer-contact p { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 0.7rem; }
        .footer-contact i { color: #FFD700; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.5rem; text-align: center; color: rgba(255,255,255,0.6); font-size: 0.85rem; }

       /* ===== MOBILE FLOATING NAVBAR ===== */
/* ================================
   MOBILE NAVBAR
================================ */

.mobile-nav{
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    
    width: calc(100% - 24px);
    max-width: 500px;

    background: #e8f2ff;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px;

    border-radius: 40px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);

    z-index: 9999;

    overflow: hidden;
}

/* hide on desktop */

@media (min-width:768px){
    .mobile-nav{
        display:none;
    }
}


/* NAV ITEMS */

.nav-item{
    flex:1;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:black;

    font-size:14px;

    padding:10px 0;

    border-radius:25px;

    transition: all .3s ease;
}

/* ICON */

.nav-item i{
    font-size:18px;
    margin-bottom:3px;
}


/* ACTIVE TAB */

.nav-item.active{
    background:#7a3cff;
    color:white;

    padding:10px 14px;

    box-shadow:0 5px 12px rgba(122,60,255,0.4);
}

.nav-item.active i{
    color:white;
}


/* NAV ITEMS */





