    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        .container {
        max-width: 1300px!important;
    }
        
        body {
            font-family: 'Inter', sans-serif!important;
            font-weight: 300;
            color: #333;
            line-height: 1.8;
            background-color: #ffffff;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* WordPress Link Underline Fix */
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        a:hover {
            text-decoration: none!important;
        }
        
        /* Headings */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif!important;
            font-weight: 300;
            letter-spacing: 0.5px;
            color: #111111;
            margin-bottom: 1.5rem;
        }
        
        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .section-padding {
            padding: 100px 0;
        }
        
        /* ===== PREMIUM HERO SECTION ===== */
        .hero-section {
            position: relative;
            height: 70vh;
            min-height: 500px;
            overflow: hidden;
            background: #000;
        }
        
        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
        }
        
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #ffffff;
            z-index: 3;
            width: 90%;
            max-width: 800px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
            color:white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            line-height: 1.7;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 2.5rem;
            color: rgba(255,255,255,0.9);
        }
        
        /* ===== ELEGANT FILTER SECTION ===== */
        .filter-section {
            background: #ffffff;
            padding: 50px 40px;
            margin-top: -50px;
            position: relative;
            z-index: 10;
            border: 1px solid #f0f0f0;
            box-shadow: 0 5px 30px rgba(0,0,0,0.03);
        }
        
        .filter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            align-items: end;
        }
        
        .filter-group {
            position: relative;
        }
        
        .filter-group label {
            display: block;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #666666;
            margin-bottom: 12px;
            font-weight: 400;
        }
        
        .filter-select {
            width: 100%;
            /*padding: 15px 0;*/
            background: transparent;
            border: none;
            border-bottom: 1px solid #e0e0e0;
            font-size: 1rem;
            font-family: 'Inter', sans-serif!important;
            font-weight: 300;
            color: #111111;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right center;
            background-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-select:focus {
            outline: none;
            border-bottom-color: #111111;
        }
        
        .filter-select:hover {
            border-bottom-color: #888888;
        }
        
        .apply-filter-btn {
            padding: 15px 0;
            background: transparent;
            border: none;
            border-bottom: 1px solid #111111;
            font-size: 0.95rem;
            font-weight: 400;
            color: #111111;
            cursor: pointer;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-align: left;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif!important;
        }
        
        .apply-filter-btn:hover {
            opacity: 0.7;
            border-bottom-color: #888888;
        }
        
        /* ===== PROPERTIES SECTION ===== */
        .properties-section {
            background: #ffffff;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-pretitle {
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #888888;
            margin-bottom: 20px;
            font-weight: 400;
        }
        
        .section-titleone {
            font-size: 2.5rem;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
            color: #111111;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            font-weight: 300;
            line-height: 1.7;
            color: #666666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* ===== PROPERTIES COUNTER ===== */
        .properties-counter {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
            padding-bottom: 30px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .properties-count {
            font-size: 1rem;
            color: #666666;
            font-weight: 300;
        }
        
        .properties-count-number {
            color: #111111;
            font-weight: 400;
        }
        
        .sort-select {
            padding: 10px 35px 10px 15px;
            border: 1px solid #e0e0e0;
            background: transparent;
            font-size: 0.9rem;
            font-family: 'Inter', sans-serif!important;
            font-weight: 300;
            color: #666666;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 12px;
            transition: all 0.3s ease;
        }
        
        .sort-select:focus {
            outline: none;
            border-color: #111111;
        }
        
        /* ===== PREMIUM PROPERTY CARDS ===== */
        .properties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .property-card {
            background: #ffffff;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .property-card:hover {
            opacity: 0.95;
        }
        
        .property-image {
            height: 300px;
            overflow: hidden;
            position: relative;
            margin-bottom: 30px;
        }
        
        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .property-card:hover .property-image img {
            transform: scale(1.05);
        }
        
        .property-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.95);
            color: #111111;
            padding: 8px 18px;
            font-size: 0.75rem;
            letter-spacing: 1px;
            font-weight: 400;
            text-transform: uppercase;
            backdrop-filter: blur(10px);
        }
        
        .property-content {
            padding: 15px 15px;
        }
        
        .property-price {
            font-family: 'Inter', sans-serif!important;
            font-weight: 400;
            font-size: 1.3rem;
            color: #111111;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }
        
        .property-title {
            font-family: 'Playfair Display', serif!important;
            font-weight: 300;
            font-size: 1.5rem;
            margin-bottom: 12px;
            line-height: 1.3;
            color: #111111;
        }
        
        .property-location {
            font-size: 0.95rem;
            color: #666666;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 300;
        }
        
        .property-features {
            display: flex;
            gap: 25px;
            padding-top: 25px;
            border-top: 1px solid #f0f0f0;
            font-size: 0.9rem;
            color: #888888;
        }
        
        .property-feature {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .property-feature i {
            font-size: 1rem;
            color: #aaaaaa;
        }
        
        /* ===== ELEGANT PAGINATION ===== */
        .pagination-container {
            text-align: center;
            margin-top: 80px;
            padding-top: 50px;
            border-top: 1px solid #f0f0f0;
        }
        
        .pagination {
            display: inline-flex;
            gap: 15px;
            list-style: none;
        }
        
        .page-item {
            margin: 0;
        }
        
        .page-item a {
            display: inline-block;
            padding: 12px 18px;
            color: #666666;
            font-size: 0.9rem;
            border: 1px solid #e0e0e0;
            min-width: 45px;
            text-align: center;
            transition: all 0.3s ease;
            font-weight: 300;
        }
        
        .page-item.active a {
            color: #111111;
            border-color: #111111;
            background: #f9f9f9;
        }
        
        .page-item a:hover {
            color: #111111;
            border-color: #888888;
            text-decoration: none;
        }
        
        /* ===== FEATURED LOCATIONS ===== */
        .featured-locations {
            background: #f9f9f9;
            padding: 100px 0;
        }
        
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .location-card {
            text-align: center;
            padding: 50px 25px;
            background: #ffffff;
            transition: all 0.3s ease;
        }
        
        .location-card:hover {
            transform: translateY(-5px);
        }
        
        .location-name {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #111111;
            font-weight: 300;
        }
        
        .location-count {
            font-size: 0.9rem;
            color: #666666;
            margin-bottom: 20px;
            font-weight: 300;
        }
        
        .location-description {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #666666;
            font-weight: 300;
        }
        
        /* ===== CTA SECTION ===== */
        .cta-section {
            text-align: center;
            padding: 100px 0;
            background: #ffffff;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 30px;
            color: #111111;
        }
        
        .cta-subtitle {
            font-size: 1.1rem;
            font-weight: 300;
            line-height: 1.7;
            color: #666666;
            max-width: 600px;
            margin: 0 auto 50px;
        }
        
        .cta-button {
            display: inline-block;
            color: #111111;
            font-weight: 400;
            font-size: 0.9rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: 1px solid #111111;
            padding: 16px 45px;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background: #111111;
            color: #ffffff;
            text-decoration: none;
        }
        
      
        
        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .section-titleone {
                font-size: 2.2rem;
            }
            
            .properties-grid {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
                gap: 30px;
            }
        }
        
        @media (max-width: 992px) {
            .container {
                padding: 0 30px;
            }
            
            .hero-section {
                height: 60vh;
                min-height: 400px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .filter-section {
                padding: 40px 30px;
                margin-top: -40px;
            }
            
            .filter-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .section-padding {
                padding: 80px 0;
            }
            
            .properties-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .featured-locations {
                padding: 80px 0;
            }
            
            .cta-section {
                padding: 80px 0;
            }
            
            .cta-title {
                font-size: 2.2rem;
            }
            
            footer {
                padding: 80px 0 40px;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 25px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            .filter-section {
                padding: 30px 25px;
                margin-top: -30px;
            }
            
            .filter-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .properties-counter {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                margin-bottom: 40px;
            }
            
            .properties-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .section-titleone {
                font-size: 2rem;
            }
            
            .pagination-container {
                margin-top: 60px;
                padding-top: 40px;
            }
            
            .locations-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 20px;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-section {
                height: 55vh;
                min-height: 350px;
            }
            
            .property-image {
                height: 250px;
            }
            
            .property-title {
                font-size: 1.3rem;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
        }
        
        /* WordPress Specific Fixes */
        .wp-block-button__link,
        .wp-block-button.is-style-outline .wp-block-button__link {
            text-decoration: none !important;
            border: none !important;
        }
        
        /* Prevent default link styling */
        a:not([class]) {
            text-decoration: none;
            border-bottom: none;
        }