:root {
    --primary: #a67c52;
    --primary-hover: #8e653f;
    --secondary: #d4af37;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--light);
    color: var(--gray-800);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.logo img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--white);
}

.nav-links a.active::after {
    width: 100%;
}

/* Header Scrolled & Internal Page State */
header.scrolled .nav-links a,
body:not(.home-page) header .nav-links a {
    color: var(--gray-700) !important;
    text-shadow: none;
}

header.scrolled .nav-links a:hover,
header.scrolled .nav-links a.active,
body:not(.home-page) header .nav-links a:hover,
body:not(.home-page) header .nav-links a.active {
    color: var(--primary) !important;
}

header.scrolled .nav-actions .btn-outline,
body:not(.home-page) header .nav-actions .btn-outline {
    border-color: var(--gray-200);
    color: var(--gray-700) !important;
    backdrop-filter: none;
}

body:not(.home-page) header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(166, 124, 82, 0.39);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(166, 124, 82, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white) !important;
    backdrop-filter: blur(8px);
    font-weight: 600;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.9));
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 800px;
}

.hero-tagline {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease backwards;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero h1 span {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 3rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Search Bar */
.search-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: var(--radius-xl);
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 900px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
    box-shadow: var(--shadow-lg);
}

.search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.search-field:last-of-type {
    border-right: none;
}

.search-field label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.search-field input, .search-field select {
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.search-field select option {
    background: var(--gray-900);
    color: var(--white);
}

.search-btn {
    background: var(--primary);
    color: var(--white);
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Section Common */
.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid var(--gray-100);
}

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

.property-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.property-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.property-price {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.125rem;
}

.property-info {
    padding: 1.5rem;
}

.property-type {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.property-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

/* Page Head Header */
.page-head {
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('assets/img/hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 5rem;
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-family: var(--font-outfit);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Properties Layout */
.properties-area {
    padding: 5rem 0;
    background: var(--gray-50);
}

.properties-layout {
    display: flex;
    gap: 3rem;
}

.properties-sidebar {
    flex: 0 0 300px;
}

.properties-main {
    flex: 1;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    border: 1px solid var(--gray-100);
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 3rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    outline: none;
}

.search-box i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.amenities-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Premium Admin Form & Wizard Styles */
.submit-wizard-section {
    padding: 6rem 0;
    background: #fcfcfc;
}

.wizard-container {
    background: var(--white);
    padding: 4rem;
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gray-100);
    z-index: 1;
}

.step {
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-400);
    border: 1px solid var(--gray-100);
    z-index: 2;
    transition: all 0.4s ease;
}

.step.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.2);
    transform: translateY(-2px);
}

.step-title {
    font-family: var(--font-outfit);
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--dark);
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.input-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    background: #f9f9f9;
    font-size: 1rem;
    color: var(--dark);
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.upload-zone {
    border: 2px dashed var(--gray-100);
    padding: 4rem;
    text-align: center;
    border-radius: var(--radius-2xl);
    background: #fcfcfc;
    transition: all 0.3s;
}

.upload-zone:hover {
    border-color: var(--primary);
    background: rgba(184, 134, 11, 0.02);
}

.wizard-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-50);
}

/* Main Content Header */
.properties-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2.5rem;
}

.sorting-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.sort-select {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-select select {
    padding: 0.5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    outline: none;
}

.layout-switcher {
    display: flex;
    gap: 0.5rem;
}

.layout-switcher button {
    background: var(--gray-100);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray-500);
    transition: all 0.2s;
}

.layout-switcher button.active {
    background: var(--primary);
    color: var(--white);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 4rem;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.2s;
}

.page-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-next {
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-weight: 500;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-100);
}

.range-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.range-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.slider-container {
    padding: 0.5rem 0;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--gray-200);
    outline: none;
    margin-bottom: 1rem;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 1px var(--primary);
    transition: all 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

.amenities-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.amenity-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: color 0.2s ease;
}

.amenity-checkbox:hover {
    color: var(--primary);
}

.amenity-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.property-features {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.feature i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Features Section */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-box {
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--gray-500);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-about p {
    color: var(--gray-400);
    margin: 1.5rem 0 2rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Nav Icons */
.nav-icon-link {
    position: relative;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: var(--gray-50);
}

.nav-icon-link:hover {
    background: var(--primary);
    color: var(--white);
}

.nav-icon-link .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.scrolled .nav-icon-link {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.scrolled .nav-icon-link:hover {
    background: var(--primary);
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.floating-contact.whatsapp {
    background: #25d366;
    color: white;
    left: 2rem;
    right: auto;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.floating-contact.whatsapp:hover {
    background: #128c7e;
    transform: scale(1.1) rotate(0deg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust Section */
.trust-section {
    background-color: #fcfcfc;
    padding: 6rem 0;
}

.trust-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--gray-500);
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon-circle {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-5px);
}

.stat-icon-circle i {
    width: 40px;
    height: 40px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.stat-label-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.05em;
}

.stat-accent {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2.75rem;
    }
    .search-container {
        flex-direction: column;
    }
    .search-field {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1rem;
    }
    .search-btn {
        width: 100%;
        height: 56px;
    }
}

/* AI & Virtual Tour Enhancements */
.ai-insight-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(10, 10, 10, 0.85);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-insight-badge i {
    color: var(--primary);
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.btn-360 {
    background: var(--white);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s;
}

.btn-360:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(184, 134, 11, 0.2);
}

.btn-fav {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--gray-400);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-fav:hover {
    transform: scale(1.1);
    color: #ff4757;
}

.btn-fav.active {
    color: #ff4757;
    background: var(--white);
}

.toast-notification {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: var(--dark);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Submit Property Wizard */
.submit-wizard-section {
    padding: 6rem 0;
    background: #fcfcfc;
}

.wizard-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gray-100);
    z-index: 1;
}

.wizard-progress .step {
    background: var(--white);
    border: 2px solid var(--gray-200);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-400);
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.wizard-progress .step.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.wizard-step-content {
    display: none;
}

.wizard-step-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.step-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--gray-800);
    font-family: var(--font-outfit);
}

.upload-zone {
    border: 2px dashed var(--gray-200);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: var(--radius-xl);
    background: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-zone:hover {
    border-color: var(--primary);
    background: rgba(184, 134, 11, 0.05);
}

.upload-zone i {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.cb-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    cursor: pointer;
}

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
}

.predictor-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.predictor-card-ui {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
}

.form-row-predictor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group-predictor label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group-predictor select {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-lg);
    outline: none;
}

.predictor-results {
    background: rgba(184, 134, 11, 0.05);
    border: 1px dashed var(--primary);
    border-radius: var(--radius-2xl);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
}

.results-placeholder {
    color: var(--gray-500);
}

.placeholder-icon-circle {
    width: 100px;
    height: 100px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.prediction-box {
    text-align: left;
    width: 100%;
}

.prediction-year-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pred-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.pred-price {
    font-size: 2rem;
    font-weight: 700;
}

.appreciation-tag {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .predictor-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* AI Concierge Widget */
.ai-concierge-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    font-family: var(--font-inter);
}

.ai-trigger-btn {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-trigger-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

.ai-trigger-btn i {
    width: 30px;
    height: 30px;
}

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.5;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.chat-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-100);
}

.chat-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-header {
    background: var(--dark);
    padding: 1.25rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.agent-avatar {
    width: 35px;
    height: 35px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.chat-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-msg {
    background: var(--white);
    padding: 1rem;
    border-radius: 0 15px 15px 15px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--gray-700);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    max-width: 85%;
}

.chat-footer {
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    display: flex;
    gap: 0.5rem;
}

.chat-footer input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    outline: none;
    font-size: 0.9rem;
}

.send-btn {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advanced-range {
    margin-bottom: 1rem;
}

.advanced-range label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
}

.gold-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 5px;
    outline: none;
    margin-bottom: 0.5rem;
}

.gold-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid var(--secondary); /* Gold handle */
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.range-vals-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
}

.active-val {
    color: var(--primary);
    font-weight: 700;
    margin-left: 0.5rem;
}

.amenities-grid-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.amenity-cb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.amenity-cb input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
}

.amenity-cb span {
    font-size: 0.9rem;
    color: #777;
}

/* Adjusting the Sidebar Title Color */
.properties-sidebar .widget-title {
    color: #555;
    font-family: var(--font-outfit);
}

.property-details-layout {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
}

.details-main {
    flex: 0 0 calc(66.66% - 1.5rem);
}

.details-sidebar {
    flex: 1;
}

.gallery-hero {
    margin-bottom: 3rem;
}

.main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
}

.gallery-thumbs {
    display: flex;
    gap: 1rem;
}

.gallery-thumbs img {
    width: calc(33.33% - 0.66rem);
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery-thumbs img:hover {
    transform: scale(1.05);
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-100);
}

.detail-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.detail-name {
    font-size: 2.8rem;
    font-family: var(--font-outfit);
    margin: 0;
}

.detail-loc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.detail-cost {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
}

.price-area {
    text-align: right;
}

.price-suffix {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Vitals Bar */
.vitals-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
    border: 1px solid var(--gray-100);
}

.vital-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 1rem;
}

.vital-item:not(:last-child) {
    border-right: 1px solid var(--gray-100);
}

.vital-item i {
    color: var(--primary);
    width: 24px;
    height: 24px;
}

.vital-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
}

.vital-item span {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sidebar Inquiry */
.inquiry-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    position: sticky;
    top: 100px;
}

.inquiry-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-outfit);
}

.inquiry-subtitle {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inquiry-form input, .inquiry-form textarea {
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    outline: none;
    font-family: inherit;
    width: 100%;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

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

.description-text {
    line-height: 1.8;
    color: var(--gray-600);
    font-size: 1.05rem;
}

.details-section {
    margin-bottom: 4rem;
}

.section-title-sm {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

@media (max-width: 1024px) {
    .property-details-layout {
        flex-direction: column;
    }
    .details-main {
        flex: 1;
    }
    .vitals-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .vital-item:nth-child(2) {
        border-right: none;
    }
}

/* AI-Scan Immersive HUD */
.ai-scan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    border-radius: var(--radius-2xl);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.ai-scan-content {
    text-align: center;
    color: var(--white);
    max-width: 400px;
    position: relative;
    z-index: 10;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--primary);
    box-shadow: 0 0 25px var(--primary);
    top: 0;
    left: 0;
    animation: scanLineMove 4s infinite linear;
    z-index: 5;
}

@keyframes scanLineMove {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.scan-steps {
    list-style: none;
    padding: 0;
    margin-top: 3rem;
    text-align: left;
}

.scan-steps li {
    padding: 1rem 0;
    font-size: 0.95rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s;
}

.scan-steps li.active { color: var(--primary); font-weight: 600; }
.scan-steps li.done { color: #4ade80; }

.scan-steps li.active::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
    animation: pulse 1.5s infinite;
}

/* AI Insight Brief Card */
.ai-brief-card {
    background: var(--white);
    padding: 1rem;
}

.insight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2.5rem 0;
}

.insight-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.insight-item ul {
    list-style: none;
    padding: 0;
}

.insight-item li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-50);
}

.insight-item li:last-child { border-bottom: none; }

.insight-item li i {
    color: #4ade80;
    flex-shrink: 0;
}
/* 360° Virtual Tour Modal */
.tour-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-modal.active {
    display: flex;
    opacity: 1;
}

.tour-content {
    background: var(--white);
    width: 100%;
    max-width: 1100px;
    height: 80vh;
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.tour-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s;
}

.tour-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.tour-header {
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-viewer {
    flex: 1;
    background: #000;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: grab;
}

.tour-viewer:active {
    cursor: grabbing;
}

.tour-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.tour-controls {
    padding: 1.5rem 2.5rem;
    background: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-badge {
    padding: 0.4rem 1rem;
    background: rgba(184, 134, 11, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-360 {
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-360:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166, 124, 82, 0.2);
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gallery-hero {
    position: relative;
}

.btn-360-hero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    padding: 1.25rem 2.5rem !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    font-size: 1.1rem !important;
    border-radius: 100px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-360-hero:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    transform: translate(-50%, -55%);
}

.panning-view {
    animation: slowPan 60s linear infinite;
}

@keyframes slowPan {
    from { background-position-x: 0; }
    to { background-position-x: 10000px; }
}
