:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --secondary: #7c3aed;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --text: #1e293b;
    --text-secondary: #475569;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --bg: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border: #e2e8f0;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
    font-family: inherit;
}
.btn i { font-size: 14px; }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.btn-success { background: var(--success); color: white; border-color: var(--success); }
.btn-success:hover { background: #059669; border-color: #059669; color: white; }
.btn-danger { background: var(--danger); color: white; border-color: var(--danger); }
.btn-danger:hover { background: #dc2626; color: white; }
.btn-warning { background: var(--warning); color: #1e293b; border-color: var(--warning); }
.btn-warning:hover { background: #d97706; border-color: #d97706; color: #1e293b; }
.btn-white { background: white; color: var(--primary); border-color: white; }
.btn-white:hover { background: #f0f4ff; color: var(--primary-dark); border-color: #f0f4ff; }
.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; color: white; }

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding: 0;
}
.navbar.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow); }
.navbar-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon svg { display: block; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 20px; font-weight: 700; color: var(--text); letter-spacing: -0.5px; font-family: 'Plus Jakarta Sans', sans-serif; }
.logo-name strong { color: var(--primary); }
.logo-tagline { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
    display: flex; align-items: center; gap: 6px; padding: 8px 16px;
    color: var(--text-light); font-weight: 500; font-size: 14px;
    border-radius: var(--radius-sm); transition: var(--transition);
    text-decoration: none; white-space: nowrap; position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }
.nav-link .badge {
    position: absolute; top: 2px; right: 2px; background: var(--danger); color: white;
    font-size: 10px; min-width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.nav-cta { margin-left: 8px; }
.nav-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.nav-dropdown { position: relative; }
.dropdown-toggle { background: none; border: none; cursor: pointer; font-family: inherit; }
.dropdown-menu {
    position: absolute; top: 100%; right: 0; min-width: 200px; background: white;
    border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: 8px; opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition); z-index: 100;
}
.nav-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item {
    display: flex; align-items: center; gap: 10px; padding: 10px 14px;
    color: var(--text); font-size: 14px; border-radius: var(--radius-sm);
    transition: var(--transition); text-decoration: none;
}
.dropdown-item:hover { background: var(--bg-secondary); color: var(--primary); }
.dropdown-item.text-danger:hover { color: var(--danger); background: #fef2f2; }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }

.lang-dropdown { margin-left: 8px; }
.lang-toggle { display: flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: var(--radius); background: var(--bg-secondary); font-size: 13px; font-weight: 500; color: var(--text); }
.lang-toggle:hover { background: var(--bg-tertiary, #e5e7eb); }
.lang-toggle svg { width: 20px; height: 14px; border-radius: 2px; flex-shrink: 0; }
.lang-code { text-transform: uppercase; font-weight: 600; }
.lang-toggle .fa-chevron-down { font-size: 10px; opacity: 0.6; }
.lang-menu { min-width: 180px; }
.lang-item { display: flex; align-items: center; gap: 10px; padding: 8px 12px; font-size: 14px; }
.lang-item svg { width: 22px; height: 16px; border-radius: 2px; flex-shrink: 0; }
.lang-item.active { background: var(--bg-secondary); color: var(--primary); font-weight: 600; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; flex-direction: column; gap: 5px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: var(--transition); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
    padding-top: 72px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: heroFloat 12s ease-in-out infinite;
}
.hero-shape-1 { width: 500px; height: 500px; background: var(--primary); top: -100px; right: -100px; }
.hero-shape-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; left: -50px; animation-delay: -4s; }
.hero-shape-3 { width: 300px; height: 300px; background: var(--accent); top: 50%; left: 50%; animation-delay: -8s; }
@keyframes heroFloat { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -30px); } }

.hero-content { position: relative; z-index: 1; text-align: center; padding: 60px 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    color: white; padding: 8px 20px; border-radius: 50px; font-size: 13px;
    font-weight: 500; margin-bottom: 28px; backdrop-filter: blur(10px);
}
.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 64px; font-weight: 800; line-height: 1.1;
    color: white; margin-bottom: 24px; letter-spacing: -2px;
}
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 640px; margin: 0 auto 40px; line-height: 1.7; }

.hero-search {
    display: flex; align-items: center; gap: 0;
    background: white; border-radius: var(--radius-lg); padding: 6px;
    max-width: 900px; margin: 0 auto;
    box-shadow: var(--shadow-xl);
}
.search-field {
    display: flex; align-items: center; gap: 10px; padding: 12px 16px;
    flex: 1; border-right: 1px solid var(--border);
}
.search-field:last-of-type { border-right: none; }
.search-field i { color: var(--primary); font-size: 16px; flex-shrink: 0; }
.search-input {
    border: none; outline: none; font-size: 14px; width: 100%;
    background: transparent; color: var(--text); font-family: inherit;
}
.search-input::placeholder { color: var(--text-lighter); }
.search-btn { border-radius: var(--radius-sm); padding: 14px 28px; flex-shrink: 0; }

.stats-section { padding: 0; margin-top: -40px; position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
    background: white; border-radius: var(--radius); padding: 28px;
    text-align: center; box-shadow: var(--shadow-lg); transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.stat-icon { font-size: 28px; color: var(--primary); margin-bottom: 12px; }
.stat-number { font-size: 32px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); }
.stat-label { font-size: 14px; color: var(--text-light); margin-top: 4px; }

.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge {
    display: inline-block; background: var(--primary-light); color: var(--primary);
    padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600;
    margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}
.section-header h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; margin-bottom: 12px; letter-spacing: -1px; }
.section-header p { color: var(--text-light); font-size: 18px; max-width: 600px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 40px; }

.partners-section { background: var(--bg-secondary); }
.partners-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; gap: 60px; animation: marquee 20s linear infinite; width: max-content; }
.partner-item {
    font-size: 28px; font-weight: 800; color: var(--text-lighter);
    font-family: 'Plus Jakarta Sans', sans-serif; white-space: nowrap; letter-spacing: 2px;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.properties-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.property-card {
    background: white; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition);
    text-decoration: none; color: var(--text); display: block;
}
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--text); }
.property-image { position: relative; height: 220px; overflow: hidden; }
.property-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.property-card:hover .property-image img { transform: scale(1.05); }
.property-badge {
    position: absolute; top: 12px; left: 12px; padding: 4px 12px;
    border-radius: 50px; font-size: 12px; font-weight: 600; z-index: 2;
}
.badge-featured { background: var(--warning); color: white; }
.badge-type { background: rgba(0,0,0,0.6); color: white; backdrop-filter: blur(4px); }
.favorite-btn {
    position: absolute; top: 12px; right: 12px; width: 36px; height: 36px;
    border-radius: 50%; background: rgba(255,255,255,0.9); border: none;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); z-index: 2; color: var(--text-light);
}
.favorite-btn:hover, .favorite-btn.active { color: var(--danger); background: white; }
.property-info { padding: 18px; }
.property-location { font-size: 13px; color: var(--text-light); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.property-location i { color: var(--primary); }
.property-title { font-size: 16px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.property-features { display: flex; gap: 16px; font-size: 13px; color: var(--text-light); margin-bottom: 14px; }
.property-features i { color: var(--primary); margin-right: 4px; }
.property-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--border); }
.property-price { font-size: 14px; color: var(--text-light); }
.property-price strong { font-size: 20px; color: var(--text); font-weight: 700; }
.property-price small { display: block; font-size: 12px; }
.property-rating { display: flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 600; }
.property-rating i { color: var(--warning); }
.property-rating span { color: var(--text-light); font-weight: 400; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    background: white; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 32px; text-align: center; transition: var(--transition);
}
.feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon { width: 64px; height: 64px; border-radius: var(--radius); background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 20px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-card { text-align: center; }
.step-number { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; font-size: 24px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: var(--text-light); font-size: 15px; }

.cta-section { padding: 40px 0 80px; }
.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-xl); padding: 60px;
    text-align: center; position: relative; overflow: hidden;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; color: white; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.auth-page { min-height: 100vh; display: flex; align-items: center; padding-top: 72px; background: var(--bg-secondary); }
.auth-container { max-width: 480px; margin: 0 auto; padding: 40px 24px; width: 100%; }
.auth-card-wide { max-width: 600px; }
.auth-card { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.auth-header { text-align: center; margin-bottom: 30px; }
.auth-header h1 { font-size: 24px; font-weight: 700; margin: 16px 0 8px; }
.auth-header p { color: var(--text-light); }
.auth-form { display: flex; flex-direction: column; gap: 18px; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-light); }
.auth-logo svg { width: 48px; height: 48px; }

.form-group { margin-bottom: 0; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group label i { color: var(--primary); margin-right: 4px; }
.form-control {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-size: 14px; font-family: inherit;
    transition: var(--transition); background: white; color: var(--text);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.form-control-sm { padding: 6px 10px; font-size: 13px; }
textarea.form-control { resize: vertical; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row.three-col { grid-template-columns: 1fr 1fr 1fr; }
.password-field { position: relative; }
.password-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--text-light); }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.checkbox-label input { width: 18px; height: 18px; cursor: pointer; }

.alert {
    display: flex; align-items: center; gap: 12px; padding: 14px 20px;
    border-radius: var(--radius-sm); font-size: 14px; animation: slideDown 0.3s ease;
    transition: opacity 0.3s;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: var(--primary-light); color: var(--primary-dark); border: 1px solid #93c5fd; }
.alert-close { background: none; border: none; font-size: 18px; cursor: pointer; margin-left: auto; color: inherit; }
@keyframes slideDown { from { transform: translateY(-10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.search-page { padding-top: 100px; padding-bottom: 60px; }
.search-header { margin-bottom: 24px; }
.search-header h1 { font-size: 28px; font-weight: 700; }
.search-header p { color: var(--text-light); }
.search-filters { margin-bottom: 30px; }
.filters-form { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.filter-group { flex: 1; min-width: 150px; }
.filter-group .form-control { padding: 10px 14px; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.page-link {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); color: var(--text); font-weight: 500;
    transition: var(--transition); text-decoration: none;
}
.page-link:hover, .page-link.active { background: var(--primary); color: white; border-color: var(--primary); }

.empty-state { text-align: center; padding: 80px 20px; }
.empty-state i { font-size: 48px; color: var(--text-lighter); margin-bottom: 16px; }
.empty-state h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.empty-state p { color: var(--text-light); margin-bottom: 20px; }
.empty-state-sm { text-align: center; padding: 40px 20px; }
.empty-state-sm i { font-size: 32px; color: var(--text-lighter); margin-bottom: 10px; }
.empty-state-sm p { color: var(--text-light); }

.property-page { padding-top: 100px; padding-bottom: 60px; }
.property-gallery { margin-bottom: 30px; }
.gallery-main { height: 450px; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-tertiary); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 12px; overflow-x: auto; }
.gallery-thumb { width: 100px; height: 75px; border-radius: var(--radius-sm); object-fit: cover; cursor: pointer; border: 2px solid transparent; transition: var(--transition); flex-shrink: 0; }
.gallery-thumb:hover { border-color: var(--primary); }
.no-image-placeholder { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-lighter); }
.no-image-placeholder i { font-size: 48px; margin-bottom: 12px; }

.property-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 30px; }
.property-header-detail { display: flex; justify-content: space-between; align-items: start; gap: 20px; margin-bottom: 24px; }
.property-header-detail h1 { font-size: 28px; font-weight: 700; line-height: 1.3; }
.property-address { color: var(--text-light); margin-top: 8px; font-size: 15px; }
.property-type-badge { display: inline-block; background: var(--primary-light); color: var(--primary); padding: 4px 14px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.property-actions { display: flex; gap: 8px; flex-shrink: 0; }
.property-quick-info { display: flex; gap: 24px; flex-wrap: wrap; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 30px; }
.quick-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-light); }
.quick-item i { color: var(--primary); font-size: 18px; }
.quick-item strong { color: var(--text); font-size: 18px; }

.detail-section { margin-bottom: 36px; }
.detail-section h2 { font-size: 20px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.detail-section h2 i { color: var(--primary); }
.description-text { color: var(--text-light); line-height: 1.8; }

.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.amenity-item { display: flex; align-items: center; gap: 10px; padding: 12px; background: var(--bg-secondary); border-radius: var(--radius-sm); font-size: 14px; }
.amenity-item i { color: var(--primary); width: 20px; text-align: center; }

.rules-info .rule-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-weight: 500; }
.rules-info .rule-item i { color: var(--primary); }

.rating-summary { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.rating-big { font-size: 48px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; }
.rating-stars { display: flex; flex-direction: column; gap: 4px; }
.rating-stars i { color: var(--warning); }
.rating-stars span { color: var(--text-light); font-size: 14px; }

.review-card { background: var(--bg-secondary); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.review-avatar-placeholder { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 600; }
.review-author span { display: block; font-size: 12px; color: var(--text-light); }
.review-rating i { color: var(--warning); font-size: 14px; }
.review-form { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-top: 20px; }
.review-form h3 { font-size: 16px; margin-bottom: 16px; }
.star-rating-input { display: flex; gap: 4px; direction: rtl; margin-bottom: 16px; }
.star-rating-input input { display: none; }
.star-rating-input label { cursor: pointer; font-size: 24px; color: var(--border); transition: var(--transition); }
.star-rating-input label:hover, .star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label { color: var(--warning); }
.review-form .btn { margin-top: 12px; }

.booking-card {
    background: white; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 24px; position: sticky; top: 96px;
}
.booking-price { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.price-amount { font-size: 28px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; }
.price-period { color: var(--text-light); font-size: 16px; }
.price-monthly { color: var(--text-light); font-size: 14px; margin-top: 4px; }
.booking-form { display: flex; flex-direction: column; gap: 14px; }

.host-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-top: 16px; }
.host-card h3 { font-size: 16px; margin-bottom: 16px; }
.host-info { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.host-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.host-avatar-placeholder { width: 52px; height: 52px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; }
.host-info strong { display: block; font-size: 16px; }
.host-info p { color: var(--text-light); font-size: 14px; margin: 2px 0; }
.host-since { font-size: 12px; color: var(--text-lighter); }

.dashboard-page { padding-top: 100px; padding-bottom: 60px; }
.dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 16px; }
.dashboard-header h1 { font-size: 28px; font-weight: 700; }
.dashboard-header p { color: var(--text-light); }

.dashboard-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 30px; }
.dash-stat-card {
    display: flex; align-items: center; gap: 16px; padding: 20px;
    background: white; border: 1px solid var(--border); border-radius: var(--radius);
    transition: var(--transition); text-decoration: none; color: var(--text);
}
.dash-stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--primary); color: var(--text); }
.dash-stat-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.dash-stat-number { font-size: 24px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }
.dash-stat-label { font-size: 13px; color: var(--text-light); }

.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dashboard-section { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.section-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.section-title h2 { font-size: 18px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.section-title h2 i { color: var(--primary); }

.table-responsive { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { text-align: left; padding: 10px 14px; background: var(--bg-secondary); font-weight: 600; color: var(--text-light); border-bottom: 1px solid var(--border); white-space: nowrap; }
.data-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); }
.data-table tr:hover td { background: var(--bg-secondary); }
.data-table a { font-weight: 500; }

.status-badge { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-approved, .status-confirmed, .status-completed, .status-paid, .status-active { background: #d1fae5; color: #065f46; }
.status-rejected, .status-cancelled, .status-unpaid { background: #fee2e2; color: #991b1b; }

.mini-property-card { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mini-prop-img { width: 64px; height: 48px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.mini-prop-info { flex: 1; min-width: 0; }
.mini-prop-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.mini-prop-info h4 a { color: var(--text); }
.mini-prop-info .text-muted { font-size: 12px; color: var(--text-light); display: block; }

.form-page { padding-top: 100px; padding-bottom: 60px; }
.form-page-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 16px; }
.form-page-header h1 { font-size: 28px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.form-page-header h1 i { color: var(--primary); }
.form-page-header p { color: var(--text-light); }

.property-form { display: flex; flex-direction: column; gap: 0; }
.form-section {
    background: white; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px; margin-bottom: 20px;
}
.form-section h2 { font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.form-section h2 i { color: var(--primary); }
.form-section .form-group { margin-bottom: 16px; }
.form-notice { display: flex; gap: 12px; align-items: center; background: var(--primary-light); border-color: var(--primary); color: var(--primary-dark); }
.form-notice i { font-size: 20px; flex-shrink: 0; }
.form-actions { display: flex; gap: 12px; margin-top: 10px; }

.amenities-checkbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
.amenity-checkbox { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); font-size: 14px; }
.amenity-checkbox:hover { border-color: var(--primary); background: var(--primary-light); }
.amenity-checkbox input:checked + span { color: var(--primary); font-weight: 600; }

.upload-area {
    border: 2px dashed var(--border); border-radius: var(--radius);
    padding: 40px; text-align: center; cursor: pointer;
    transition: var(--transition); position: relative;
}
.upload-area:hover, .upload-area.dragover { border-color: var(--primary); background: var(--primary-light); }
.upload-area i { font-size: 36px; color: var(--primary); margin-bottom: 12px; }
.upload-area p { font-size: 16px; font-weight: 500; margin-bottom: 4px; }
.upload-area span { font-size: 13px; color: var(--text-light); }
.file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.image-preview-grid { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.preview-item { position: relative; }
.preview-item img { width: 100px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.preview-item span { display: block; font-size: 10px; color: var(--text-light); max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.current-images-grid { display: flex; gap: 12px; flex-wrap: wrap; }
.current-image-item { position: relative; }
.current-image-item img { width: 120px; height: 90px; object-fit: cover; border-radius: var(--radius-sm); }
.delete-image-btn { position: absolute; top: 4px; right: 4px; width: 24px; height: 24px; background: var(--danger); color: white; border: none; border-radius: 50%; cursor: pointer; font-size: 11px; display: flex; align-items: center; justify-content: center; }
.primary-badge { position: absolute; bottom: 4px; left: 4px; background: var(--primary); color: white; font-size: 10px; padding: 2px 8px; border-radius: 4px; }

.profile-grid { display: grid; grid-template-columns: 280px 1fr; gap: 24px; }
.profile-sidebar-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; text-align: center; height: fit-content; position: sticky; top: 96px; }
.profile-avatar-big { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; }
.profile-avatar-placeholder-big { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 700; margin: 0 auto 16px; }
.profile-sidebar-card h2 { font-size: 20px; margin-bottom: 4px; }
.text-muted { color: var(--text-light); font-size: 14px; }

.properties-list { display: flex; flex-direction: column; gap: 16px; }
.property-list-item { display: flex; align-items: center; gap: 20px; background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; transition: var(--transition); flex-wrap: wrap; }
.property-list-item:hover { box-shadow: var(--shadow-md); }
.property-list-img { width: 120px; height: 80px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.property-list-info { flex: 1; min-width: 200px; }
.property-list-info h3 { font-size: 16px; margin-bottom: 4px; }
.property-list-info h3 a { color: var(--text); }
.property-list-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-light); margin-top: 6px; }
.property-list-status { display: flex; flex-direction: column; gap: 4px; }
.property-list-actions { display: flex; gap: 8px; }

.tabs { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 2px solid var(--border); }
.tab-btn {
    padding: 12px 24px; background: none; border: none; border-bottom: 2px solid transparent;
    margin-bottom: -2px; cursor: pointer; font-weight: 600; font-size: 14px;
    color: var(--text-light); transition: var(--transition); font-family: inherit;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.message-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 12px; }
.message-card.unread { border-left: 3px solid var(--primary); background: var(--primary-light); }
.message-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.message-header span { font-size: 12px; color: var(--text-light); }
.message-subject { font-weight: 600; margin-bottom: 8px; }
.message-compose { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.message-compose h2 { font-size: 18px; margin-bottom: 16px; }
.message-compose .form-group { margin-bottom: 14px; }

.about-page .about-hero { padding: 140px 0 80px; text-align: center; background: linear-gradient(135deg, #0f172a, #1e293b); color: white; }
.about-page .about-hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 48px; font-weight: 800; margin-top: 16px; color: white; }
.about-page .about-hero p { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 600px; margin: 16px auto 0; }
.about-page .about-hero .section-badge { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.2); }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; text-align: center; transition: var(--transition); }
.about-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.about-icon { width: 64px; height: 64px; background: var(--primary-light); color: var(--primary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 20px; }
.about-card h3 { font-size: 18px; margin-bottom: 10px; }
.about-card p { color: var(--text-light); font-size: 14px; line-height: 1.6; }
.partners-showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.partner-big { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; text-align: center; font-size: 24px; font-weight: 800; color: var(--text-lighter); font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: 2px; }

.pricing-page { padding-top: 100px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.pricing-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; position: relative; transition: var(--transition); }
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-featured { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; transform: scale(1.05); }
.pricing-featured .pricing-features li { color: rgba(255,255,255,0.9); }
.pricing-featured .pricing-features i { color: rgba(255,255,255,0.8); }
.pricing-featured .pricing-header p { color: rgba(255,255,255,0.8); }
.pricing-featured .btn { background: white; color: var(--primary); border-color: white; }
.pricing-featured .btn:hover { background: #f0f4ff; color: var(--primary-dark); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--warning); color: white; padding: 4px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; }
.pricing-header { text-align: center; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.2); }
.pricing-card:not(.pricing-featured) .pricing-header { border-bottom-color: var(--border); }
.pricing-header h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.pricing-amount { font-size: 42px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; }
.pricing-header p { font-size: 14px; opacity: 0.8; }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; }
.pricing-features i { color: var(--success); }

.admin-page { padding-top: 100px; padding-bottom: 60px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.admin-header h1 { font-size: 28px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.admin-header h1 i { color: var(--primary); }
.admin-nav { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 30px; }
.admin-stat-card { display: flex; align-items: center; gap: 14px; background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.admin-stat-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.admin-stat-number { font-size: 22px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }
.admin-stat-label { font-size: 13px; color: var(--text-light); }
.admin-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; gap: 16px; flex-wrap: wrap; }
.search-inline { display: flex; gap: 8px; }
.search-inline .form-control { min-width: 250px; }
.filter-pills { display: flex; gap: 8px; }
.pill { padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 500; border: 1px solid var(--border); color: var(--text-light); text-decoration: none; transition: var(--transition); }
.pill:hover, .pill.active { background: var(--primary); color: white; border-color: var(--primary); }

.user-cell { display: flex; align-items: center; gap: 10px; }
.table-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.table-avatar-placeholder { width: 32px; height: 32px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; flex-shrink: 0; }
.property-cell { display: flex; align-items: center; gap: 10px; }
.table-prop-img { width: 48px; height: 36px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }

.footer {
    background: #0f172a; color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo span { font-size: 18px; color: white; font-family: 'Plus Jakarta Sans', sans-serif; }
.footer-logo strong { color: var(--primary); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); color: white; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); }
.footer-col h4 { color: white; font-size: 16px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 14px; }
.footer-col a:hover { color: white; }

.footer-partners { border-top: 1px solid rgba(255,255,255,0.1); padding: 30px 0; text-align: center; }
.footer-partners p { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; color: rgba(255,255,255,0.4); }
.partner-logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.partner-logo { font-size: 18px; font-weight: 800; color: rgba(255,255,255,0.2); font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: 2px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; font-size: 13px; }

.search-page .properties-grid { margin-top: 0; }

@media (max-width: 1024px) {
    .hero-title { font-size: 48px; }
    .features-grid, .about-grid { grid-template-columns: repeat(2, 1fr); }
    .property-detail-grid { grid-template-columns: 1fr; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-featured { transform: none; }
    .profile-grid { grid-template-columns: 1fr; }
    .profile-sidebar-card { position: static; }
}

.mobile-menu-logo { display: none; }

@media (max-width: 768px) {
    .hero-title { font-size: 36px; letter-spacing: -1px; }
    .hero-search { flex-direction: column; padding: 16px; }
    .search-field { border-right: none; border-bottom: 1px solid var(--border); width: 100%; }
    .search-field:last-of-type { border-bottom: none; }
    .search-btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .features-grid, .about-grid { grid-template-columns: 1fr; }
    .mobile-menu-logo {
        display: flex; position: absolute; top: 24px; left: 0; right: 0;
        justify-content: center;
    }
    .mobile-menu-logo a {
        display: flex; align-items: center; gap: 10px; text-decoration: none;
    }
    .mobile-menu-logo span {
        font-size: 20px; font-weight: 700; color: var(--text);
        font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .mobile-menu-logo strong { color: var(--primary); }
    .nav-links {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        width: 100%; height: 100vh; height: 100dvh;
        background: #ffffff; flex-direction: column;
        padding: 80px 24px 30px;
        display: none; overflow-y: auto; overflow-x: hidden;
        gap: 4px; z-index: 1001;
        align-items: center; justify-content: center;
    }
    .nav-links.active { display: flex; }
    .nav-link {
        width: 100%; max-width: 320px; padding: 14px 20px;
        font-size: 16px; font-weight: 600;
        border-radius: var(--radius); text-align: center;
        justify-content: center; color: var(--text);
        background: var(--bg-secondary); border: 1px solid var(--border);
    }
    .nav-link:hover, .nav-link.active { background: var(--primary); color: white; border-color: var(--primary); }
    .nav-link i { font-size: 16px; }
    .nav-cta { margin-left: 0; width: 100%; max-width: 320px; justify-content: center; padding: 14px 20px; font-size: 16px; margin-top: 4px; }
    .mobile-toggle { display: flex; z-index: 1002; position: relative; }
    .nav-dropdown { width: 100%; max-width: 320px; }
    .nav-dropdown .dropdown-toggle {
        justify-content: center; font-size: 16px; font-weight: 600;
        width: 100%; padding: 14px 20px;
        background: var(--bg-secondary); border: 1px solid var(--border);
        border-radius: var(--radius); color: var(--text);
    }
    .nav-dropdown .dropdown-menu {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none; border: 1px solid var(--border);
        margin-top: 4px; width: 100%;
    }
    .nav-dropdown .dropdown-item { justify-content: center; text-align: center; }
    .lang-dropdown { margin-left: 0; width: 100%; max-width: 320px; }
    .lang-dropdown .lang-toggle {
        justify-content: center; font-size: 16px; padding: 14px 20px;
        width: 100%; border-radius: var(--radius);
        background: var(--bg-secondary); border: 1px solid var(--border);
    }
    .lang-dropdown .lang-item { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .form-row.three-col { grid-template-columns: 1fr; }
    .property-header-detail { flex-direction: column; }
    .filters-form { flex-direction: column; }
    .filter-group { min-width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
    .section-header h2 { font-size: 28px; }
    .partners-showcase { grid-template-columns: repeat(2, 1fr); }
    .property-list-item { flex-direction: column; align-items: stretch; }
    .property-list-img { width: 100%; height: 160px; }
    .property-list-actions { justify-content: flex-end; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
    .cta-card { padding: 40px 24px; }
    .gallery-main { height: 280px; }
    .service-big-card, .service-big-card.reverse { grid-template-columns: 1fr; }
    .territory-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .monetize-grid { grid-template-columns: 1fr; }
    .services-grid-full { grid-template-columns: 1fr; }
    .about-numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .about-cta-grid { grid-template-columns: 1fr; }
}

.about-hero-desc { font-size: 18px; max-width: 700px; margin: 0 auto 30px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.about-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.about-numbers-section { padding: 40px 0; }
.about-numbers-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.about-number-card { text-align: center; padding: 24px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-number-value { font-size: 36px; font-weight: 800; background: linear-gradient(135deg, #2563eb, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.about-number-label { font-size: 14px; color: var(--text-secondary); margin-top: 4px; font-weight: 500; }

.service-big-card { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 40px; background: white; border-radius: 20px; box-shadow: var(--shadow-lg); margin-bottom: 40px; }
.service-big-card.reverse { direction: rtl; }
.service-big-card.reverse > * { direction: ltr; }
.service-big-visual { position: relative; }
.service-big-icon { position: absolute; top: -10px; left: -10px; width: 48px; height: 48px; background: white; border-radius: 50%; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary); z-index: 2; }
.service-big-img { width: 100%; height: 250px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.service-big-content h3 { font-size: 24px; margin-bottom: 12px; }
.service-big-content p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag { padding: 6px 14px; background: var(--bg-secondary); border-radius: 20px; font-size: 13px; font-weight: 500; color: var(--text-secondary); }

.services-grid-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card-modern { padding: 30px; background: white; border-radius: 16px; box-shadow: var(--shadow); transition: var(--transition); }
.service-card-modern:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: white; margin-bottom: 16px; }
.service-card-modern h3 { font-size: 18px; margin-bottom: 10px; }
.service-card-modern p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.territory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.territory-card { padding: 36px; background: white; border-radius: 16px; box-shadow: var(--shadow); text-align: center; transition: var(--transition); border: 2px solid transparent; }
.territory-card:hover { transform: translateY(-4px); }
.territory-card.territory-featured { border-color: var(--primary); background: linear-gradient(135deg, #2563eb08, #7c3aed08); }
.territory-icon { font-size: 40px; color: var(--primary); margin-bottom: 16px; }
.territory-card h3 { font-size: 20px; margin-bottom: 10px; }
.territory-card p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.territory-examples { font-size: 13px; color: #9ca3af; font-style: italic; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { padding: 30px; background: white; border-radius: 16px; box-shadow: var(--shadow); transition: var(--transition); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, #2563eb15, #7c3aed15); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary); margin-bottom: 16px; }
.why-card h3 { font-size: 18px; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.monetize-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.monetize-card { padding: 30px; background: white; border-radius: 16px; box-shadow: var(--shadow); transition: var(--transition); position: relative; overflow: hidden; }
.monetize-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.monetize-card.monetize-featured { border: 2px solid var(--primary); background: linear-gradient(135deg, #2563eb05, #7c3aed05); }
.monetize-number { position: absolute; top: 12px; right: 16px; font-size: 48px; font-weight: 900; color: #e5e7eb; line-height: 1; }
.monetize-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, #2563eb15, #7c3aed15); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary); margin-bottom: 16px; }
.monetize-card h3 { font-size: 17px; margin-bottom: 10px; position: relative; }
.monetize-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; position: relative; }

.about-cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-cta-card { padding: 40px; background: white; border-radius: 16px; box-shadow: var(--shadow); text-align: center; border: 1px solid var(--border); transition: var(--transition); }
.about-cta-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.about-cta-icon { font-size: 40px; color: var(--primary); margin-bottom: 16px; }
.about-cta-card h3 { font-size: 20px; margin-bottom: 10px; }
.about-cta-card p { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.6; }
.about-cta-card .btn { width: 100%; }
