 /* ================= GLOBAL LINK RESET ================= */
a {
    color: inherit;            /* remove default blue */
    text-decoration: none;     /* remove underline */
    transition: 0.2s ease;
}

/* Hover state */
a:hover {
    color: var(--gold);        /* your brand interaction color */
}

/* Visited links (prevents purple) */
a:visited {
    color: inherit;
}
 /* Additional premium styles matching index.html */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Jost', sans-serif;
            background: #ffffff;
            color: #111827;
            scroll-behavior: smooth;
        }

        :root {
            --primary-dark: #0a0f1c;
            --whatsapp-green: #25D366;
            --accent-gold: #EFBF04;
            --text-primary: #111827;
            --text-secondary: #4b5563;
            --text-muted: #6b7280;
            --border-soft: #f1f5f9;
            --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 20px 35px -8px rgba(0, 0, 0, 0.1);
            --transition-smooth: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        /* Typography */
        h1, h2, h3, h4, .heading-serif {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Glass Navbar */
        .navbar-premium {
            position: sticky;
            top: 0;
            z-index: 1100;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            padding: 16px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .logo-img {
            height: 48px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 1.8rem;
            align-items: center;
            list-style: none;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links li a {
            text-decoration: none;
            font-weight: 500;
            color: var(--text-primary);
            font-size: 14px;
            transition: color 0.2s;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-links li a:hover {
            color: var(--accent-gold);
        }

        .dropdown-menu {
            position: absolute;
            top: 40px;
            left: 0;
            min-width: 220px;
            background: white;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            padding: 12px 0;
            opacity: 0;
            visibility: hidden;
            transition: 0.25s ease;
            border: 1px solid var(--border-soft);
            z-index: 100;
        }

        .nav-links li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        .dropdown-menu li {
            list-style: none;
        }

        .dropdown-menu li a {
            padding: 10px 20px;
            display: block;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .dropdown-menu li a:hover {
            background: #f8f8f8;
            color: var(--accent-gold);
            padding-left: 24px;
        }

        .btn-nav-cta {
            background: var(--whatsapp-green);
            color: white !important;
            padding: 8px 18px;
            border-radius: 40px;
            font-weight: 600;
            gap: 8px;
        }

        .btn-nav-cta:hover {
            background: #128C7E;
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            z-index: 2100;
        }

        /* Mobile Bottom Navigation */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            padding: 8px 12px 16px;
            z-index: 1000;
            justify-content: space-around;
            gap: 4px;
        }

        .mobile-bottom-nav a {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            text-decoration: none;
            font-size: 10px;
            color: var(--text-muted);
            transition: 0.2s;
            flex: 1;
            text-align: center;
        }

        .mobile-bottom-nav a i {
            font-size: 20px;
        }

        .mobile-bottom-nav a.active {
            color: var(--whatsapp-green);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 380px;
            height: 100vh;
            background: #ffffff;
            z-index: 2000;
            padding: 0;
            transition: 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
            display: flex;
            flex-direction: column;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 24px 16px;
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-menu-header .mobile-logo {
            height: 36px;
            width: auto;
        }

        .mobile-close {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f5f5f5;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.2s;
            font-size: 18px;
            color: #333;
        }

        .mobile-search {
            padding: 20px 24px;
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-search input {
            width: 100%;
            padding: 14px 18px;
            border-radius: 44px;
            border: 1px solid #e8e8e8;
            font-size: 15px;
            font-family: 'Jost', sans-serif;
            background: #fafafa;
        }

        .mobile-nav-links {
            flex: 1;
            padding: 16px 0;
            overflow-y: auto;
        }

        .mobile-nav-links .nav-item {
            padding: 12px 24px;
        }

        .mobile-nav-links .nav-item > a {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            color: #1a1a2e;
        }

        .mobile-nav-links .nav-item > a i {
            width: 24px;
            color: var(--whatsapp-green);
        }

        .mobile-trust {
            padding: 16px 24px;
            background: #fafaf8;
            margin: 0 20px 20px;
            border-radius: 16px;
            text-align: center;
        }

        .mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(6px);
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            z-index: 1999;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Page Header Premium */
        .page-header--compact {
            background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 100%);
            padding: 80px 0 60px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .page-header--compact::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 20%, rgba(239, 191, 4, 0.12), transparent 50%);
            pointer-events: none;
        }

        .page-header-inner {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .page-header-inner h1 {
            font-size: 42px;
            margin-bottom: 16px;
        }

        .hero-search {
            max-width: 560px;
            margin: 24px auto;
            display: flex;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
        }

        .hero-search-input {
            flex: 1;
            padding: 14px 20px;
            background: transparent;
            border: none;
            color: white;
            font-size: 15px;
        }

        .hero-search-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .hero-search-btn {
            background: var(--accent-gold);
            border: none;
            padding: 0 20px;
            cursor: pointer;
            color: #0a0f1c;
        }

        .header-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-top: 24px;
            flex-wrap: wrap;
        }

        .btn-whatsapp {
            background: var(--whatsapp-green);
            color: white;
            padding: 10px 24px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary {
            background: transparent;
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 10px 24px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* Filters Section */
        .property-filters {
            background: white;
            position: relative;
            z-index: 10;
        }

        .filters-wrap {
            background: white;
            border-radius: 24px;
            padding: 28px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
            margin-top: -30px;
            border: 1px solid var(--border-soft);
        }

        .filter-tabs {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 10px 24px;
            border-radius: 40px;
            background: #f3f4f6;
            border: none;
            font-weight: 600;
            font-family: 'Jost', sans-serif;
            cursor: pointer;
            transition: 0.2s;
        }

        .tab-btn.active {
            background: #0a0f1c;
            color: white;
        }

        .filters-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            align-items: end;
        }

        .filter-group {
            display: flex;
            flex-direction: column;
        }

        .filter-group label {
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text-secondary);
        }

        .filter-select, .filter-input {
            padding: 12px 14px;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            font-family: 'Jost', sans-serif;
            font-size: 14px;
            transition: 0.2s;
        }

        .filter-select:focus, .filter-input:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(239, 191, 4, 0.15);
        }

        .filter-btns {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .btn-primary {
            background: var(--whatsapp-green);
            color: white;
            padding: 12px 24px;
            border-radius: 40px;
            border: none;
            font-weight: 600;
            cursor: pointer;
        }

        .btn-link {
            background: transparent;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            font-weight: 500;
        }

        /* Results Header */
        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 32px 0 24px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .results-count {
            font-size: 14px;
            color: var(--text-muted);
        }

        .results-count span {
            font-weight: 700;
            color: var(--whatsapp-green);
        }

        /* Properties Grid */
        .properties-grid {
            display: grid;
            gap: 32px;
            margin: 32px 0;
        }

        @media (min-width: 1200px) {
            .properties-grid { grid-template-columns: repeat(4, 1fr); }
        }
        @media (min-width: 768px) and (max-width: 1199px) {
            .properties-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 767px) {
            .properties-grid { grid-template-columns: 1fr; gap: 24px; }
        }

        .property-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-soft);
        }

        .property-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }

        .property-img {
            position: relative;
            height: 240px;
            overflow: hidden;
        }

        .property-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .property-card:hover .property-img img {
            transform: scale(1.06);
        }

        .property-img::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%);
            pointer-events: none;
        }

        .badge-verified {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--accent-gold);
            color: #0a0f1c;
            padding: 4px 12px;
            border-radius: 40px;
            font-size: 10px;
            font-weight: 700;
            z-index: 2;
        }

        .property-price {
            position: absolute;
            bottom: 16px;
            left: 16px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(8px);
            padding: 6px 16px;
            border-radius: 40px;
            font-weight: 800;
            font-size: 16px;
            color: var(--primary-dark);
            z-index: 2;
        }

        .property-details {
            padding: 18px 20px 20px;
        }

        .property-title {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            margin: 6px 0;
            line-height: 1.3;
        }

        .property-location {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .property-features {
            display: flex;
            gap: 16px;
            margin: 12px 0;
            padding: 10px 0;
            border-top: 1px solid #f0f0f0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 13px;
            color: #4b5563;
        }

        .property-actions {
            display: flex;
            gap: 12px;
            margin-top: 12px;
        }

        .btn-whatsapp-sm {
            flex: 1;
            background: var(--whatsapp-green);
            color: white;
            padding: 10px;
            border-radius: 40px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            text-align: center;
            display: inline-block;
        }

        .btn-outline-sm {
            flex: 1;
            background: transparent;
            border: 1.5px solid var(--whatsapp-green);
            color: var(--whatsapp-green);
            padding: 10px;
            border-radius: 40px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .pagination-btn {
            padding: 10px 16px;
            border: 1px solid #e5e7eb;
            background: white;
            border-radius: 40px;
            cursor: pointer;
            transition: 0.2s;
            font-family: 'Jost', sans-serif;
        }

        .pagination-btn:hover {
            border-color: var(--whatsapp-green);
            color: var(--whatsapp-green);
        }

        .pagination-btn.active {
            background: var(--whatsapp-green);
            color: white;
            border-color: var(--whatsapp-green);
        }

        /* Trust Block */
        .trust-block {
            background: #f8fafc;
            padding: 60px 0;
            margin-top: 40px;
        }

        .trust-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .trust-icons {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .trust-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .trust-icon i {
            font-size: 32px;
            color: var(--whatsapp-green);
        }

        /* FAQ Section */
        .faq-section {
            background: white;
            padding: 60px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 24px;
        }

        .faq-item {
            background: #f8fafc;
            padding: 24px;
            border-radius: 20px;
        }

        .faq-item h3 {
            font-size: 18px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Final CTA */
        .final-cta {
            background: #0a0f1c;
            color: white;
            text-align: center;
            padding: 60px 0;
        }

        .final-cta h2 {
            color: var(--accent-gold);
        }

        /* Footer Premium */
        .premium-footer {
            background: #0a0f1c;
            color: #cbd5e1;
            position: relative;
        }

        .premium-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--whatsapp-green), var(--accent-gold), var(--whatsapp-green));
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 70px 32px 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1.2fr 1.2fr 1.5fr 1.2fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo-img {
            height: 52px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .footer-heading {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 24px;
            position: relative;
            display: inline-block;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 35px;
            height: 2px;
            background: var(--accent-gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 14px;
            transition: 0.25s;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
            font-size: 14px;
        }

        .contact-info i {
            color: var(--accent-gold);
            width: 20px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            font-size: 13px;
            color: #9ca3af;
        }

        .developer-credit {
            font-size: 12px;
            color: #9ca3af;
        }

        .developer-credit a {
            color: var(--accent-gold);
            text-decoration: none;
        }

        .footer-legal-links {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-legal-links a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 12px;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 80px;
            right: 20px;
            background: var(--whatsapp-green);
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: 0.2s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        @media (max-width: 1100px) {
            .footer-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-brand { grid-column: span 3; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .menu-toggle { display: block; }
            .mobile-bottom-nav { display: flex; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-brand { grid-column: span 1; }
            .filters-container { grid-template-columns: 1fr; }
            .filter-btns { flex-direction: column; }
            .btn-primary, .btn-link { width: 100%; text-align: center; }
            .page-header-inner h1 { font-size: 32px; }
            .whatsapp-float { bottom: 70px; }
        }

        @media (max-width: 480px) {
            .mobile-bottom-nav { padding: 6px 8px 14px; }
            .mobile-bottom-nav a i { font-size: 18px; }
        }