.sales-details-page {
            font-family: 'Inter', sans-serif;
            font-weight: 350;
            background: #ffffff;
            color: #333;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        .sales-details-page * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .sales-details-page a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        .sales-details-page h1, 
        .sales-details-page h2, 
        .sales-details-page h3, 
        .sales-details-page h4 {
            font-family: 'Playfair Display', serif!important;
            font-weight: 300;
            letter-spacing: 0.5px;
            color: #111111;
            margin-bottom: 1.5rem;
        }
        
        .sales-container {
            max-width: 1300px;
            margin: 0 auto;
            /*padding: 0 30px;*/
        }
        
        /* ===== HEADER SECTION ===== */
        .sales-header {
            padding: 30px 0 40px;
            text-align: left;
        }
        
        .sales-title {
            font-size: 2.8rem;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 0.75rem;
            letter-spacing: 0.5px;
            color: #1a1a1a;
        }
        
        .sales-price {
            font-family: 'Inter', sans-serif!important;
            font-weight: 350;
            font-size: 1.5rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }
        
        .sales-location {
            font-size: 1.1rem;
            color: #666666;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 300;
        }
        
        /* ===== GALLERY SECTION ===== */
        .sales-gallery-section {
            margin-bottom: 60px;
            position: relative;
        }
        
        .sales-gallery-main {
            height: 550px;
            overflow: hidden;
            position: relative;
            margin-bottom: 15px;
        }
        
        .sales-gallery-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .sales-gallery-slide.active {
            opacity: 1;
        }
        
        .sales-gallery-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Gallery Navigation */
        .sales-gallery-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10;
        }
        
        .sales-gallery-prev,
        .sales-gallery-next {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0,0,0,0.1);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #111;
            font-weight: 300;
        }
        
        .sales-gallery-prev:hover,
        .sales-gallery-next:hover {
            background: #fff;
            transform: scale(1.05);
        }
        
        /* Gallery Counter */
        .sales-gallery-counter {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 0.85rem;
            color: #111;
            font-weight: 300;
            border: 1px solid rgba(0,0,0,0.1);
            z-index: 11;
        }
        
        /* Gallery Thumbnails */
        .sales-gallery-thumbs {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 8px;
        }
        
        .sales-gallery-thumb {
            height: 80px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.6;
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid transparent;
        }
        
        .sales-gallery-thumb:hover,
        .sales-gallery-thumb.active {
            opacity: 1;
            border-color: rgba(0,0,0,0.1);
        }
        
        .sales-gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .sales-thumb-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .sales-gallery-thumb.active .sales-thumb-badge {
            opacity: 1;
        }
        
        /* ===== VIEW ALL BUTTON ===== */
        .sales-view-all-btn {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0,0,0,0.1);
            padding: 8px 16px;
            border-radius: 12px;
            font-size: 0.85rem;
            color: #111;
            font-weight: 300;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 11;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .sales-view-all-btn:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .sales-view-all-btn .total-count {
            font-weight: 350;
            color: #1a1a1a;
        }
        
        /* ===== FULLSCREEN MODAL ===== */
        .sales-gallery-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .sales-gallery-modal.active {
            display: flex;
        }
        
        .sales-modal-content {
            width: 90%;
            height: 90%;
            position: relative;
        }
        
        .sales-modal-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .sales-modal-slide.active {
            opacity: 1;
        }
        
        .sales-modal-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .sales-modal-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 1001;
        }
        
        .sales-modal-prev,
        .sales-modal-next {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0,0,0,0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #111;
            font-size: 1.2rem;
        }
        
        .sales-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0,0,0,0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #111;
            font-size: 1.2rem;
            z-index: 1001;
        }
        
        .sales-modal-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.9);
            padding: 8px 16px;
            border-radius: 12px;
            font-size: 0.9rem;
            color: #111;
            font-weight: 300;
            border: 1px solid rgba(0,0,0,0.1);
        }
        
        /* ===== DETAILS GRID ===== */
        .sales-details-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            margin-top: 40px;
        }
        
        /* ===== ACTION BUTTONS ===== */
        .sales-action-buttons {
            display: flex;
            gap: 12px;
            margin: 40px 0;
            flex-wrap: wrap;
            justify-content: flex-start;
        }
        
        .sales-action-btn {
            padding: 10px 20px;
            border: 1px solid #e0e0e0;
            background: #fff;
            font-family: 'Inter', sans-serif!important;
            font-size: 0.9rem;
            font-weight: 300;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            border-radius: 2px;
            letter-spacing: 0.3px;
        }
        
        .sales-action-btn:hover {
            border-color: #1a1a1a;
            color: #1a1a1a;
        }
        
        /* ===== PROPERTY FEATURES ===== */
        .sales-features-section {
            margin-bottom: 60px;
        }
        
        .sales-section-title {
            font-size: 1.75rem;
            font-weight: 300;
            margin-bottom: 30px;
            padding-bottom: 12px;
            border-bottom: 1px solid #eee;
            position: relative;
            text-align: left;
            color: #1a1a1a;
        }
        
        .sales-section-title:after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 60px;
            height: 1px;
            background: #1a1a1a;
        }
        
        .sales-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 12px;
        }
        
        .sales-feature-item {
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.3s ease;
            background: #fff;
            border: 1px solid #f0f0f0;
            border-radius: 2px;
            height: 70px;
        }
        
        .sales-feature-icon {
            font-size: 1.2rem;
            color: #666;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #f9f9f9;
            transition: all 0.3s ease;
            flex-shrink: 0;
            font-weight: 300;
        }
        
        .sales-feature-item:hover .sales-feature-icon {
            background: #1a1a1a;
            color: #fff;
        }
        
        .sales-feature-details {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .sales-feature-label {
            font-size: 0.95rem;
            color: #888;
            font-weight: 300;
            white-space: nowrap;
        }
        
        .sales-feature-value {
            font-size: 1.1rem;
            color: #1a1a1a;
            font-weight: 350;
            font-family: 'Inter', sans-serif!important;
            margin-left: auto;
            white-space: nowrap;
        }
        
        /* ===== DESCRIPTION SECTION ===== */
        .sales-description-section {
            margin-bottom: 60px;
        }
        
        .sales-description-content {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #444;
            text-align: left;
            font-weight: 350;
        }
        
        .sales-description-content p {
            margin-bottom: 1.5rem;
        }
        
        /* ===== AMENITIES SECTION ===== */
        .sales-amenities-section {
            margin-bottom: 60px;
        }
        
        .sales-amenities-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: flex-start;
        }
        
        .sales-amenity-tag {
            padding: 8px 16px;
            border: 1px solid #eee;
            font-size: 0.9rem;
            color: #666;
            border-radius: 2px;
            transition: all 0.3s ease;
            background: #fff;
            font-weight: 300;
            letter-spacing: 0.3px;
        }
        
        .sales-amenity-tag:hover {
            border-color: #1a1a1a;
            color: #1a1a1a;
            background: #f9f9f9;
        }
        
        /* ===== SIDEBAR ===== */
        .sales-sidebar {
            position: sticky;
            top: 120px;
        }
        
        .sales-sidebar-card {
            border: 1px solid #eee;
            padding: 30px;
            margin-bottom: 30px;
            background: #fff;
            border-radius: 2px;
        }
        
        .sales-sidebar-title {
            font-size: 1.25rem;
            font-weight: 300;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 1px solid #eee;
            position: relative;
            text-align: left;
            color: #1a1a1a;
        }
        
        .sales-sidebar-title:after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 40px;
            height: 1px;
            background: #1a1a1a;
        }
        
        /* Quick Facts */
        .sales-facts-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        
        .sales-fact-item {
            display: flex;
            justify-content: space-between;
            padding-bottom: 14px;
            border-bottom: 1px solid #f5f5f5;
            align-items: center;
        }
        
        .sales-fact-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .sales-fact-label {
            color: #666;
            font-weight: 300;
            font-size: 0.92rem;
        }
        
        .sales-fact-value {
            color: #1a1a1a;
            font-weight: 350;
            font-size: 0.95rem;
        }
        
        /* Contact Form */
        .sales-contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .sales-form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        
        .sales-form-label {
            font-size: 0.85rem;
            color: #666;
            font-weight: 300;
            text-align: left;
        }
        
        .sales-form-input,
        .sales-form-textarea {
            padding: 10px 0;
            border: none!important;
            border-bottom: 1px solid #ddd!important;
            height: 25px!important;
            font-family: 'Inter', sans-serif!important;
            font-size: 0.95rem;
            font-weight: 300;
            color: #1a1a1a;
            background: transparent;
            width: 100%;
            transition: border-color 0.3s ease;
        }
        
        
        .sales-form-input:focus,
        .sales-form-textarea:focus {
            outline: none;
            border-bottom-color: #1a1a1a;
        }
        
        .sales-form-textarea {
            min-height: 50px;
            resize: vertical;
        }
        
        .sales-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        /* Checkbox */
        .sales-checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 15px 0;
        }
        
        .sales-checkbox-group input[type="checkbox"] {
            margin-top: 4px;
            accent-color: #1a1a1a;
        }
        
        .sales-checkbox-label {
            font-size: 0.8rem;
            color: #666;
            line-height: 1.5;
            text-align: left;
            font-weight: 300;
        }
        
        .sales-submit-btn {
            padding: 14px 0;
            background: transparent;
            border: 1px solid #1a1a1a;
            font-family: 'Inter', sans-serif!important;
            font-size: 0.9rem;
            font-weight: 300;
            color: #1a1a1a;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 2px;
        }
        
        .sales-submit-btn:hover {
            background: #1a1a1a;
            color: #fff;
        }
        
        /* Agent Info */
        .sales-agent-info {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .sales-agent-photo {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 1px solid #f0f0f0;
            flex-shrink: 0;
        }
        
        .sales-agent-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .sales-agent-details h4 {
            font-size: 1.1rem;
            font-weight: 300;
            margin-bottom: 5px;
            text-align: left;
        }
        
        .sales-agent-role {
            color: #666;
            font-size: 0.85rem;
            margin-bottom: 8px;
            text-align: left;
            font-weight: 300;
        }
        
        /* ===== MAP SECTION ===== */
        .sales-map-section {
            padding: 80px 0;
            margin-top: 60px;
            border-top: 1px solid #eee;
        }
        
        .sales-map-container {
            height: 400px;
            margin-bottom: 40px;
            border: 1px solid #eee;
            border-radius: 2px;
            overflow: hidden;
        }
        
        .sales-map-frame {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .sales-location-details {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 30px;
            background: #fff;
            border: 1px solid #eee;
            border-radius: 2px;
            text-align: left;
        }
        
        .sales-location-info h4 {
            font-size: 1.25rem;
            font-weight: 300;
            margin-bottom: 15px;
            text-align: left;
        }
        
        .sales-location-detail {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #666;
            margin-bottom: 10px;
            font-weight: 300;
        }
        
        .sales-directions-btn {
            padding: 12px 30px;
            border: 1px solid #1a1a1a;
            color: #1a1a1a;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-radius: 2px;
            white-space: nowrap;
            font-weight: 300;
            letter-spacing: 0.5px;
        }
        
        .sales-directions-btn:hover {
            background: #1a1a1a;
            color: #fff;
        }
        
        /* ===== RESPONSIVE FIXES ===== */
        @media (max-width: 1200px) {
            .sales-title {
                font-size: 2.5rem;
            }
            
            .sales-details-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .sales-sidebar {
                position: static;
            }
            
            .sales-gallery-main {
                height: 500px;
            }
            
            .sales-gallery-thumbs {
                grid-template-columns: repeat(5, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .sales-container {
                padding: 0 25px;
            }
            
            .sales-title {
                font-size: 2.2rem;
            }
            
            .sales-price {
                font-size: 1.4rem;
            }
            
            .sales-gallery-thumbs {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .sales-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .sales-gallery-main {
                height: 450px;
            }
            
            .sales-feature-item {
                height: 65px;
                padding: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .sales-container {
                padding: 0 20px;
            }
            
            .sales-title {
                font-size: 2rem;
            }
            
            .sales-price {
                font-size: 1.3rem;
            }
            
            .sales-gallery-main {
                height: 400px;
            }
            
            .sales-gallery-thumbs {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .sales-gallery-thumb {
                height: 70px;
            }
            
            .sales-features-grid {
                grid-template-columns: 1fr;
            }
            
            .sales-form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .sales-location-details {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
            
            .sales-action-buttons {
                flex-direction: column;
            }
            
            .sales-action-btn {
                width: 100%;
                justify-content: flex-start;
            }
            
            .sales-feature-item {
                height: 60px;
                padding: 15px;
            }
            
            .sales-feature-icon {
                width: 36px;
                height: 36px;
                font-size: 1.1rem;
            }
            
            .sales-feature-value {
                font-size: 1.1rem;
            }
            
            .sales-view-all-btn {
                bottom: 15px;
                left: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .sales-title {
                font-size: 1.8rem;
            }
            
            .sales-gallery-main {
                height: 350px;
            }
            
            .sales-gallery-thumbs {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .sales-gallery-nav {
                padding: 0 10px;
            }
            
            .sales-gallery-prev,
            .sales-gallery-next {
                width: 40px;
                height: 40px;
            }
            
            .sales-feature-value {
                font-size: 1rem;
            }
            
            .sales-sidebar-card {
                padding: 20px;
            }
            
            .sales-amenities-list {
                gap: 8px;
            }
            
            .sales-amenity-tag {
                padding: 6px 12px;
                font-size: 0.85rem;
            }
            
            .sales-feature-item {
                gap: 10px;
            }
            
            .sales-feature-details {
                gap: 8px;
            }
        }
        
        @media (max-width: 480px) {
            .sales-container {
                padding: 0 15px;
            }
            
            .sales-title {
                font-size: 1.6rem;
            }
            
            .sales-gallery-main {
                height: 300px;
            }
            
            .sales-gallery-thumb {
                height: 60px;
            }
            
            .sales-feature-item {
                height: 55px;
                padding: 12px 15px;
            }
            
            .sales-feature-label {
                font-size: 0.85rem;
            }
        }
            
          