/* Premium Professional Design for EvEtKiralik.com - Next Generation */

:root {
    /* Marktplaats-inspired Minimalist Color Palette */
    --primary: #E17000;
    --primary-dark: #C56200;
    --primary-light: #FF8A1E;
    --secondary: #2C5C8F;
    --accent: #E17000;
    --success: #10B981;
    --danger: #DC2626;
    --dark: #212121;
    --dark-light: #424242;
    --gray: #767676;
    --light-gray: #F5F5F5;
    --border-gray: #E0E0E0;
    --white: #FFFFFF;

    /* Minimalist Shadows - Very Subtle */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.10);

    /* Minimal Gradients (sparingly used) */
    --gradient-primary: linear-gradient(135deg, #E17000 0%, #C56200 100%);
    --gradient-hero: linear-gradient(135deg, #2C5C8F 0%, #1E4064 100%);

    --radius: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.2s ease;
    --transition-fast: all 0.15s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: var(--dark);
    background: var(--white);
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Selection Color */
::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Navbar - Minimalist Style */
.navbar {
    background: var(--white);
    box-shadow: 0 1px 0 var(--border-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo svg {
    flex-shrink: 0;
}

.logo-text {
    color: var(--dark);
    font-weight: 700;
}

.logo-tld {
    color: var(--primary);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 400;
    font-size: 14px;
    transition: var(--transition);
    color: var(--dark);
}

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

.btn-primary {
    background: var(--primary) !important;
    color: white !important;
    padding: 10px 20px !important;
    font-weight: 600;
    border-radius: var(--radius) !important;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark) !important;
}

/* Hero Section - Minimalist Style */
.hero {
    background: var(--light-gray);
    position: relative;
    padding: 48px 20px 64px;
    color: var(--dark);
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--dark);
}

.hero p {
    font-size: 16px;
    margin-bottom: 32px;
    color: var(--gray);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Trust Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    border: 1px solid var(--border-gray);
    color: var(--gray);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Box - Minimalist Style */
.search-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 4px;
    display: flex;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    gap: 8px;
    border: 1px solid var(--border-gray);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 14px;
    outline: none;
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition-fast);
    font-family: inherit;
}

.search-box input:focus {
    background: var(--light-gray);
}

.search-box input::placeholder {
    color: var(--gray);
}

.search-box select {
    border: none;
    padding: 14px 16px;
    font-size: 14px;
    outline: none;
    background: var(--white);
    border-radius: var(--radius);
    min-width: 180px;
    font-weight: 400;
    transition: var(--transition-fast);
    cursor: pointer;
    font-family: inherit;
    color: var(--dark);
}

.search-box select:focus {
    background: var(--light-gray);
}

.search-box button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--primary-dark);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 13px;
    font-weight: 500;
}

.trust-item i {
    font-size: 18px;
    color: var(--primary);
}

/* Categories Section */
.categories, .featured {
    padding: 80px 20px;
}

.categories h2, .featured h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.categories h2 + p, .featured h2 + p {
    text-align: center;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 32px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.category-card {
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.category-card .icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: inline-block;
    color: var(--primary);
}

.category-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--dark);
    font-weight: 600;
}

.category-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* Main Content Layout - Sidebar + Content */
.main-content {
    padding: 60px 20px;
    background: white;
}

.content-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sidebar Categories */
.sidebar-categories {
    background: var(--light-gray);
    padding: 24px;
    border-radius: var(--radius-md);
    height: fit-content;
    position: sticky;
    top: 80px;
}

.sidebar-categories h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--border-gray);
    transition: var(--transition);
}

.category-item:hover {
    border-color: var(--primary);
    background: var(--light-gray);
}

.category-item i {
    font-size: 20px;
    color: var(--primary);
    min-width: 20px;
    margin-top: 2px;
}

.category-info {
    flex: 1;
    min-width: 0;
}

.category-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.category-info p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.4;
}

/* Main Area - Right Side Content */
.main-area {
    min-width: 0;
}

.featured-section,
.how-it-works-section {
    margin-bottom: 60px;
}

.featured-section h2,
.how-it-works-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.featured-section > p {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 15px;
}

/* Listing Cards - User-Friendly & Spacious */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.listing-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-gray);
}

.listing-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.listing-card .image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--light-gray);
    position: relative;
}

.listing-card .content {
    padding: 20px;
}

.listing-card .category {
    display: inline-block;
    background: var(--light-gray);
    color: var(--gray);
    padding: 4px 8px;
    border-radius: var(--radius);
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 8px;
}

.listing-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.4;
}

.listing-card .price {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.listing-card .location {
    color: var(--gray);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Multi-Pricing Display */
.pricing-options {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.price-option {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.price-period {
    font-size: 11px;
    color: var(--gray);
    font-weight: 400;
}

/* Footer - Modern */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

footer .container {
    text-align: center;
}

/* Form Styles - Clean */
.form-container {
    max-width: 520px;
    margin: 80px auto;
    padding: 48px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-container h2 {
    margin-bottom: 32px;
    color: var(--dark);
    font-size: 32px;
    font-weight: 800;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

button[type="submit"] {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.error {
    color: var(--danger);
    background: #FEE2E2;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    border-left: 4px solid var(--danger);
}

.success {
    color: var(--success);
    background: #D1FAE5;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    border-left: 4px solid var(--success);
}

/* Filters - Enhanced */
.filters {
    background: white;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.filter-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-row select,
.filter-row input {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    flex: 1;
    min-width: 200px;
    font-size: 15px;
    transition: var(--transition);
}

.filter-row select:focus,
.filter-row input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Listings Page Layout */
.listings-page {
    padding: 40px 20px;
    background: var(--light-gray);
}

.listings-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Filters Sidebar */
.filters-sidebar {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 80px;
    border: 1px solid var(--border-gray);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-gray);
}

.sidebar-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.clear-filters {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

.clear-filters:hover {
    text-decoration: underline;
}

.sidebar-filters {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius);
    font-size: 14px;
    transition: var(--transition);
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-inputs input {
    flex: 1;
}

.price-inputs span {
    color: var(--gray);
    font-weight: 500;
}

.btn-filter {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-filter:hover {
    background: var(--primary-dark);
}

/* Listings Content */
.listings-content {
    min-width: 0;
}

.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.listings-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.results-count {
    font-size: 14px;
    color: var(--gray);
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-wrapper label {
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
}

.sort-wrapper select {
    padding: 8px 12px;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius);
    font-size: 14px;
    background: white;
}

.sort-wrapper select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

/* Responsive */
@media (max-width: 768px) {
    /* Navbar Improvements */
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .navbar .container {
        padding: 14px 16px;
        position: relative;
    }

    .logo {
        font-size: 16px !important;
        gap: 8px;
        font-weight: 600;
    }

    .logo svg {
        width: 28px;
        height: 28px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        z-index: 999;
        animation: slideDown 0.3s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: var(--radius-sm);
        text-align: center;
        font-weight: 500;
    }

    .nav-links a:hover {
        background: var(--light-gray);
    }

    .btn-primary {
        background: var(--primary);
        color: white;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Hero Section */
    .hero {
        padding: 50px 20px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 17px;
        margin-bottom: 32px;
    }

    .search-box {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        border-radius: 12px;
    }

    .search-box input,
    .search-box select,
    .search-box button {
        width: 100%;
        border-radius: 8px !important;
        padding: 14px 16px;
        font-size: 15px;
    }

    .search-box button {
        padding: 16px;
        font-weight: 600;
    }

    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Cards & Grids */
    .category-grid,
    .listing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .listing-card {
        border-radius: 12px;
        overflow: hidden;
    }

    .listing-card .image {
        height: 220px;
    }

    .listing-card .content {
        padding: 16px;
    }

    .listing-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .category-item {
        padding: 16px;
        border-radius: 12px;
    }

    /* Layout */
    .content-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sidebar-categories {
        position: static;
        order: 2;
        padding: 20px;
        border-radius: 12px;
    }

    .sidebar-categories h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .main-area {
        order: 1;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-item {
        padding: 24px;
        text-align: center;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin: 0 auto 16px;
    }

    /* Sections */
    .main-content {
        padding: 32px 16px;
    }

    .featured-section h2,
    .how-it-works-section h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .featured-section p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    /* Listings Page */
    .listings-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filters-sidebar {
        position: sticky;
        top: 70px;
        order: 1;
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .filter-group {
        margin-bottom: 16px;
    }

    .filter-group input,
    .filter-group select {
        padding: 12px;
        font-size: 15px;
    }

    .btn-filter {
        padding: 14px;
        font-size: 15px;
        font-weight: 600;
    }

    .listings-content {
        order: 2;
    }

    .listings-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }

    .listings-header h1 {
        font-size: 26px;
    }

    .sort-wrapper {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .sort-wrapper select {
        flex: 1;
        padding: 10px 12px;
    }

    .listings-page {
        padding: 24px 16px;
    }

    /* Dashboard */
    .dashboard-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 16px;
    }

    .dashboard-sidebar {
        position: static;
        padding: 20px;
        border-radius: 12px;
    }

    .user-info {
        text-align: center;
        padding: 20px;
    }

    .user-avatar {
        width: 60px;
        height: 60px;
        font-size: 26px;
        margin: 0 auto 12px;
    }

    .dashboard-nav a {
        padding: 14px 16px;
        font-size: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 20px 16px;
    }

    .stat-card h3 {
        font-size: 28px;
    }

    .stat-card p {
        font-size: 13px;
    }

    /* Forms */
    .form-container {
        padding: 0 16px;
    }

    .form-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 15px;
    }

    button[type="submit"],
    .btn-primary,
    .btn-secondary {
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 8px;
        min-height: 48px;
        font-weight: 600;
    }

    /* Pricing Display */
    .pricing-options {
        flex-direction: column;
        gap: 8px;
    }

    .price-option {
        padding: 10px 12px;
    }

    /* Footer */
    footer {
        padding: 40px 20px 20px;
        font-size: 14px;
    }

    footer .container > div {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Touch Improvements */
    a, button, input, select, textarea {
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    }

    input, select, textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
}

/* Tablet Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 32px;
    }

    .content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sidebar-categories {
        position: static;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .main-content {
        padding: 50px 20px;
    }

    .listings-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .filters-sidebar {
        position: static;
    }

    .listings-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Dashboard Styles */
.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.dashboard-sidebar {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    height: fit-content;
    position: sticky;
    top: 80px;
    border: 1px solid var(--border-gray);
}

.dashboard-sidebar .user-info {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-gray);
}

.dashboard-sidebar .user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 12px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
}

.dashboard-sidebar .user-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.dashboard-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 4px;
    border-radius: var(--radius);
    color: var(--dark);
    transition: var(--transition);
    font-size: 14px;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
    background: var(--primary);
    color: white;
}

.dashboard-nav i {
    width: 20px;
    font-size: 16px;
}

.dashboard-content {
    min-width: 0;
}

.dashboard-header {
    margin-bottom: 32px;
}

.dashboard-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.dashboard-header p {
    color: var(--gray);
    font-size: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gray);
}

.stat-card h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
}

.dashboard-section {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gray);
    margin-bottom: 24px;
}

.dashboard-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.listing-row {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--border-gray);
    align-items: center;
    transition: var(--transition);
}

.listing-row:last-child {
    border-bottom: none;
}

.listing-row:hover {
    background: var(--light-gray);
}

.listing-thumb {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    flex-shrink: 0;
    background-color: var(--light-gray);
}

.listing-info {
    flex: 1;
}

.listing-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.listing-info p {
    font-size: 13px;
    color: var(--gray);
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-inactive {
    background: #f8d7da;
    color: #721c24;
}

.status-confirmed {
    background: #d1ecf1;
    color: #0c5460;
}

/* Favorite Button */
.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 10;
}

.favorite-btn i {
    font-size: 18px;
    color: var(--gray);
    transition: var(--transition);
}

.favorite-btn:hover i,
.favorite-btn.active i {
    color: #DC2626;
}

.favorite-btn.active i {
    font-weight: 900;
}

/* Additional Modern Elements */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-primary {
    background: var(--primary);
    color: white;
}

.badge-success {
    background: var(--success);
    color: white;
}

.badge-danger {
    background: var(--danger);
    color: white;
}

/* Stats Section - Minimalist */
.stats-section {
    background: var(--white);
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    color: var(--dark);
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 0.8s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
    color: var(--primary);
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 400;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background: var(--light-gray);
}

.how-it-works h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.how-it-works > p {
    text-align: center;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 32px 20px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--border-gray);
    transition: var(--transition);
}

.step-item:hover {
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 600;
}

.step-item p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 13px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: var(--light-gray);
}

.testimonials h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.testimonials > p {
    text-align: center;
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 64px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stars {
    color: #F59E0B;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--gray);
}
