:root {
    --primary: #0891b2;
    --primary-dark: #0e7490;
    --primary-light: #22d3ee;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --success: #10b981;
    --danger: #ef4444;
    --bg: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --bg-card: #ffffff;
    --text: #0f172a;
    --text-light: #475569;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --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);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius-sm: 0.5rem;
    --radius: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1280px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--bg); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; outline: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-tag { display: inline-block; padding: 0.5rem 1rem; background: rgba(8, 145, 178, 0.1); color: var(--primary); font-size: 0.875rem; font-weight: 600; border-radius: var(--radius-full); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.section-title { font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: var(--text); }
.section-desc { font-size: 1.125rem; color: var(--text-light); line-height: 1.7; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.625rem 1.25rem; font-size: 0.9375rem; font-weight: 600; border-radius: var(--radius); transition: var(--transition); white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; box-shadow: 0 4px 14px rgba(8, 145, 178, 0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(8, 145, 178, 0.45); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: rgba(8, 145, 178, 0.05); }
.btn-white { background: white; color: var(--primary-dark); box-shadow: var(--shadow-lg); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255, 255, 255, 0.5); }
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.1); border-color: white; }
.btn-large { padding: 0.875rem 2rem; font-size: 1rem; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); padding: 0.75rem 0; }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.625rem; font-weight: 800; font-size: 1.5rem; }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; }
.logo-accent { color: var(--primary); }
.logo-img { height: 40px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-link { font-size: 0.9375rem; font-weight: 500; color: var(--text-light); transition: var(--transition); position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); border-radius: var(--radius-full); }
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 5px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: var(--radius-full); transition: var(--transition); }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 8rem 0 6rem; background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%); }
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: orbFloat 8s ease-in-out infinite; }
.orb-1 { width: 500px; height: 500px; background: linear-gradient(135deg, var(--primary-light), var(--primary)); top: -10%; right: -5%; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: linear-gradient(135deg, var(--accent-light), var(--accent)); bottom: 10%; left: -10%; animation-delay: -3s; opacity: 0.25; }
.orb-3 { width: 300px; height: 300px; background: linear-gradient(135deg, #a78bfa, #8b5cf6); top: 40%; right: 20%; animation-delay: -5s; opacity: 0.2; }
@keyframes orbFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -30px) scale(1.05); } 66% { transform: translate(-20px, 20px) scale(0.95); } }
.grid-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(8, 145, 178, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 145, 178, 0.03) 1px, transparent 1px); background-size: 60px 60px; }
.hero-container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.625rem; padding: 0.5rem 1rem 0.5rem 0.75rem; background: white; border: 1px solid var(--border); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; color: var(--text-light); margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.badge-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero-title { font-size: 4rem; font-weight: 900; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 1.5rem; }
.gradient-text { background: linear-gradient(135deg, var(--primary), var(--primary-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.25rem; color: var(--text-light); line-height: 1.7; margin-bottom: 2rem; max-width: 520px; }
.search-box { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; max-width: 560px; position: relative; }
.search-input-wrapper { flex: 1; position: relative; }
.search-dropdown { position: absolute; top: calc(100% + 0.5rem); left: 0; right: 0; background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); z-index: 200; opacity: 0; transform: translateY(-8px); pointer-events: none; transition: var(--transition); }
.search-dropdown.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dropdown-header { padding: 1rem 1.25rem 0.5rem; font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.dropdown-list { max-height: 320px; overflow-y: auto; padding: 0.25rem 0.5rem 0.5rem; }
.dropdown-list::-webkit-scrollbar { width: 5px; }
.dropdown-list::-webkit-scrollbar-track { background: transparent; }
.dropdown-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: var(--radius-full); }
.dropdown-list::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
.dropdown-list:empty::before { content: 'Sonuç bulunamadı'; display: block; padding: 1rem; text-align: center; font-size: 0.875rem; color: var(--text-muted); }
.dropdown-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.625rem 0.75rem; border-radius: var(--radius); cursor: pointer; transition: var(--transition); font-size: 0.9375rem; color: var(--text); }
.dropdown-item:hover { background: var(--bg); color: var(--primary); }
.dropdown-item i { color: var(--text-muted); font-size: 0.875rem; width: 20px; text-align: center; }
.dropdown-item:hover i { color: var(--primary); }
.dropdown-group { border-radius: var(--radius); overflow: hidden; }
.dropdown-group-header { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding: 0.625rem 0.75rem; cursor: pointer; transition: var(--transition); font-size: 0.9375rem; color: var(--text); font-weight: 500; }
.dropdown-group-header:hover { background: var(--bg); color: var(--primary); }
.dropdown-group-header:hover i { color: var(--primary); }
.dropdown-group-title { display: flex; align-items: center; gap: 0.75rem; }
.dropdown-group-title i { color: var(--text-muted); font-size: 0.875rem; width: 20px; text-align: center; }
.dropdown-group-header .arrow { color: var(--text-muted); font-size: 0.625rem; transition: transform 0.2s; }
.dropdown-children { list-style: none; padding: 0.125rem 0 0.25rem 2rem; }
.dropdown-child { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0.75rem; border-radius: var(--radius); cursor: pointer; transition: var(--transition); font-size: 0.875rem; color: var(--text-light); }
.dropdown-child:hover { background: var(--bg); color: var(--primary); }
.dropdown-child i { color: var(--text-muted); font-size: 0.75rem; width: 20px; text-align: center; }
.dropdown-child:hover i { color: var(--primary); }
.parent-label { font-size: 0.75rem; color: var(--text-muted); margin-left: auto; background: var(--bg); padding: 0.125rem 0.5rem; border-radius: var(--radius-sm); }
.search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 1.125rem; }
.search-input { width: 100%; padding: 1rem 1rem 1rem 3rem; border: 2px solid var(--border); border-radius: var(--radius); font-size: 1rem; transition: var(--transition); background: white; }
.search-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1); }
.search-btn { padding: 1rem 1.75rem; }
.popular-searches { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; font-size: 0.875rem; color: var(--text-muted); }
.search-tag { padding: 0.375rem 0.875rem; background: white; border: 1px solid var(--border); border-radius: var(--radius-full); font-size: 0.8125rem; font-weight: 500; color: var(--text-light); transition: var(--transition); }
.search-tag:hover { border-color: var(--primary); color: var(--primary); background: rgba(8, 145, 178, 0.05); }
.hero-visual { position: relative; height: 540px; display: flex; align-items: center; justify-content: center; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(50px); animation: blobBreath 10s ease-in-out infinite; }
.blob-main { width: 420px; height: 420px; background: linear-gradient(135deg, rgba(8,145,178,0.16), rgba(34,211,238,0.10)); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.blob-secondary { width: 300px; height: 300px; background: linear-gradient(135deg, rgba(245,158,11,0.10), rgba(139,92,246,0.08)); top: 15%; left: 15%; animation-delay: -3s; }
.blob-tertiary { width: 200px; height: 200px; background: linear-gradient(135deg, rgba(16,185,129,0.10), rgba(236,72,153,0.06)); bottom: 10%; right: 15%; animation-delay: -6s; }
@keyframes blobBreath { 0%,100%{ transform: translate(-50%,-50%) scale(1); } 50%{ transform: translate(-50%,-50%) scale(1.1); } }

/* Mockup */
.hero-mockup { position: relative; z-index: 2; width: 300px; height: 300px; background: rgba(255,255,255,0.75); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1.5px solid rgba(255,255,255,0.8); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl), 0 0 60px rgba(8,145,178,0.08); display: flex; align-items: center; justify-content: center; animation: cardFloat 7s ease-in-out infinite; }
.mockup-glow { position: absolute; inset: -20px; border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(8,145,178,0.06), rgba(245,158,11,0.04)); filter: blur(20px); z-index: -1; }
.mockup-inner { text-align: center; padding: 1.5rem; }
.mockup-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto 1rem; box-shadow: 0 8px 28px rgba(8,145,178,0.25); }
.mockup-title { font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: 1rem; letter-spacing: -0.02em; }
.mockup-badges { display: flex; justify-content: center; gap: 0.625rem; margin-bottom: 1.25rem; }
.m-badge { width: 44px; height: 44px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; box-shadow: var(--shadow-sm); transition: var(--transition); }
.m-badge:hover { transform: translateY(-4px) scale(1.1); }
.mockup-dots { display: flex; justify-content: center; gap: 0.375rem; }
.mockup-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--border); }
.mockup-dots span:nth-child(1) { background: var(--primary); }
.mockup-dots span:nth-child(2) { background: var(--accent); }
.mockup-dots span:nth-child(3) { background: #8b5cf6; }
.mockup-dots span:nth-child(4) { background: var(--success); }

/* Large floating icons */
.hero-icon-large { position: absolute; z-index: 3; width: 100px; height: 100px; border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: white; box-shadow: var(--shadow-lg); animation: iconLargeFloat 6s ease-in-out infinite; }
.icon-broom { top: 5%; left: 0; background: linear-gradient(135deg, #0891b2, #06b6d4); animation-delay: -1s; }
.icon-truck { top: 5%; right: 0; background: linear-gradient(135deg, #f59e0b, #fbbf24); animation-delay: -2.5s; }
.icon-paint { bottom: 5%; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #8b5cf6, #a78bfa); animation-delay: -4s; }
@keyframes iconLargeFloat { 0%,100%{ transform: translateY(0) rotate(0deg); } 50%{ transform: translateY(-18px) rotate(4deg); } }
.icon-paint { animation-name: iconLargeFloatCenter; }
@keyframes iconLargeFloatCenter { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(-18px); } }

/* Small stat cards */
.hero-float-card { position: absolute; z-index: 3; background: rgba(255,255,255,0.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.7); border-radius: var(--radius-xl); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-md); animation: cardFloat 6s ease-in-out infinite; }
@keyframes cardFloat { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }
.float-rating { top: 8%; right: 5%; text-align: center; animation-delay: 0s; }
.float-stars { display: flex; gap: 0.25rem; justify-content: center; margin-bottom: 0.375rem; }
.float-stars i { color: var(--accent); font-size: 0.75rem; }
.float-value-lg { font-size: 1.75rem; font-weight: 800; color: var(--text); line-height: 1; }
.float-caption { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }
.float-count { bottom: 18%; left: 2%; display: flex; align-items: center; gap: 0.875rem; animation-delay: -2s; }
.float-icon-bg { width: 44px; height: 44px; background: linear-gradient(135deg, rgba(8,145,178,0.12), rgba(34,211,238,0.08)); color: var(--primary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: auto; }

/* Stats */
.stats-bar { background: var(--bg); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 0.25rem; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-suffix { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.stat-label { width: 100%; font-size: 0.9375rem; color: var(--text-light); margin-top: 0.5rem; }

/* Categories */
.categories { background: var(--bg); }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.category-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 1.75rem; border: 1px solid var(--border-light); transition: var(--transition); position: relative; overflow: hidden; }
.category-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--primary-light)); transform: scaleX(0); transition: var(--transition); }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.category-card:hover::before { transform: scaleX(1); }
.category-icon { width: 56px; height: 56px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; margin-bottom: 1.25rem; }
.category-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.category-card p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 0.875rem; line-height: 1.5; }
.category-count { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--primary); margin-bottom: 1rem; }
.category-link { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 600; color: var(--text); transition: var(--transition); }
.category-link i { font-size: 0.75rem; transition: var(--transition); }
.category-card:hover .category-link { color: var(--primary); }
.category-card:hover .category-link i { transform: translateX(4px); }

/* How It Works */
.how-it-works { background: var(--bg-white); }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; max-width: 1100px; margin: 0 auto; }
.step { flex: 1; text-align: center; padding: 0 1.5rem; position: relative; }
.step-number { font-size: 4rem; font-weight: 900; color: rgba(8, 145, 178, 0.1); line-height: 1; margin-bottom: -1.5rem; position: relative; z-index: 0; }
.step-content { position: relative; z-index: 1; }
.step-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto 1.5rem; box-shadow: 0 8px 24px rgba(8, 145, 178, 0.3); }
.step h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.875rem; }
.step p { font-size: 0.9375rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.25rem; }
.step-features { text-align: left; display: inline-block; }
.step-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-light); margin-bottom: 0.5rem; }
.step-features li i { color: var(--success); font-size: 1rem; }
.step-connector { width: 80px; height: 2px; background: linear-gradient(90deg, var(--border), var(--primary), var(--border)); margin-top: 100px; flex-shrink: 0; opacity: 0.5; }

/* For Professionals */
.for-pro { background: var(--bg); }
.pro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.pro-content .section-title, .pro-content .section-desc { text-align: left; max-width: none; margin-bottom: 2rem; }
.pro-features { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.pro-feature { display: flex; align-items: flex-start; gap: 1rem; }
.pro-feature-icon { width: 48px; height: 48px; background: rgba(8, 145, 178, 0.1); color: var(--primary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.pro-feature-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.pro-feature-text p { font-size: 0.875rem; color: var(--text-light); line-height: 1.5; }
.pro-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.pro-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 500px; }
.pro-phone { position: relative; z-index: 1; }
.phone-frame { width: 280px; height: 520px; background: var(--secondary); border-radius: 2.5rem; padding: 0.75rem; box-shadow: var(--shadow-xl); position: relative; }
.phone-notch { position: absolute; top: 0.75rem; left: 50%; transform: translateX(-50%); width: 120px; height: 24px; background: var(--secondary); border-radius: 0 0 1rem 1rem; z-index: 2; }
.phone-screen { width: 100%; height: 100%; background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%); border-radius: 2rem; padding: 2rem 1.25rem 1.25rem; overflow: hidden; }
.phone-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.phone-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 50%; flex-shrink: 0; }
.phone-name { font-size: 0.9375rem; font-weight: 600; color: white; }
.phone-status { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.375rem; }
.status-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; }
.phone-stats { display: flex; justify-content: space-around; margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.phone-stat { text-align: center; }
.phone-stat-value { font-size: 1.125rem; font-weight: 700; color: white; }
.phone-stat-label { font-size: 0.6875rem; color: var(--text-muted); margin-top: 0.125rem; }
.phone-chart { display: flex; align-items: flex-end; justify-content: space-between; height: 100px; gap: 0.5rem; margin-bottom: 1.5rem; }
.chart-bar { flex: 1; background: rgba(8, 145, 178, 0.3); border-radius: 0.25rem 0.25rem 0 0; transition: var(--transition); }
.chart-bar.active { background: linear-gradient(180deg, var(--primary), var(--primary-dark)); }
.phone-notifications { display: flex; flex-direction: column; gap: 0.625rem; }
.phone-notif { display: flex; align-items: center; gap: 0.625rem; padding: 0.625rem 0.875rem; background: rgba(255, 255, 255, 0.05); border-radius: var(--radius); font-size: 0.8125rem; color: rgba(255, 255, 255, 0.8); }
.phone-notif i { color: var(--accent); }
.pro-float-card { position: absolute; background: white; border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.875rem; animation: cardFloat 5s ease-in-out infinite; }
.pro-float-card i { width: 40px; height: 40px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; }
.card-earnings { top: 15%; right: 5%; animation-delay: -1s; }
.card-earnings i { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.card-rating { bottom: 20%; left: 0; animation-delay: -3s; }
.card-rating i { background: rgba(245, 158, 11, 0.1); color: var(--accent); }
.float-value { font-size: 1.125rem; font-weight: 700; color: var(--text); }
.float-label { font-size: 0.75rem; color: var(--text-muted); }

/* Testimonials */
.testimonials { background: var(--bg-white); }
.testimonials-slider { overflow: hidden; margin: 0 -0.75rem; }
.testimonials-track { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); padding: 0.5rem 0; }
.testimonial-card { flex: 0 0 calc(33.333% - 1.5rem); margin: 0 0.75rem; background: var(--bg); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border-light); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-rating { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-rating i { color: var(--accent); font-size: 0.875rem; }
.testimonial-text { font-size: 0.9375rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author h4 { font-size: 0.9375rem; font-weight: 700; }
.testimonial-author p { font-size: 0.8125rem; color: var(--text-muted); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }
.slider-btn { width: 48px; height: 48px; border-radius: 50%; background: white; border: 1px solid var(--border); color: var(--text); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); }
.slider-btn:hover { background: var(--primary); color: white; border-color: var(--primary); transform: scale(1.05); }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); transition: var(--transition); cursor: pointer; border: none; padding: 0; }
.slider-dot.active { background: var(--primary); width: 28px; border-radius: var(--radius-full); }

/* Trust */
.trust { background: var(--bg); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 2rem; text-align: center; border: 1px solid var(--border-light); transition: var(--transition); }
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.trust-icon { width: 64px; height: 64px; background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(8, 145, 178, 0.05)); color: var(--primary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto 1.25rem; }
.trust-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.trust-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* CTA */
.cta-section { position: relative; padding: 6rem 0; overflow: hidden; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.cta-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.3; }
.orb-a { width: 400px; height: 400px; background: var(--accent); top: -20%; left: -10%; }
.orb-b { width: 300px; height: 300px; background: var(--primary-light); bottom: -20%; right: -5%; }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-content h2 { font-size: 2.5rem; font-weight: 800; color: white; margin-bottom: 1rem; }
.cta-content p { font-size: 1.125rem; color: rgba(255, 255, 255, 0.85); margin-bottom: 2rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--secondary); color: rgba(255, 255, 255, 0.7); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand .logo-text { color: white; }
.footer-brand p { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a { width: 40px; height: 40px; border-radius: var(--radius); background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.7); font-size: 0.9375rem; transition: var(--transition); }
.social-links a:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.footer-column h4 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-column ul li { margin-bottom: 0.625rem; }
.footer-column ul li a { font-size: 0.875rem; transition: var(--transition); }
.footer-column ul li a:hover { color: white; }
.contact-list li { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; }
.contact-list li i { color: var(--primary); font-size: 0.9375rem; width: 20px; }
.app-buttons { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.app-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.625rem 1rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius); color: white; font-size: 0.8125rem; transition: var(--transition); }
.app-btn i { font-size: 1.25rem; }
.app-btn span { font-weight: 600; }
.app-btn:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom p { font-size: 0.875rem; }
.payment-methods { display: flex; gap: 1rem; font-size: 1.5rem; color: rgba(255, 255, 255, 0.4); }

/* Responsive */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-title { font-size: 3rem; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .search-box { margin-left: auto; margin-right: auto; }
    .popular-searches { justify-content: center; }
    .hero-visual { transform: scale(0.8); margin-top: -2rem; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { flex-direction: column; gap: 3rem; }
    .step-connector { display: none; }
    .pro-grid { grid-template-columns: 1fr; }
    .pro-visual { order: -1; }
    .testimonial-card { flex: 0 0 calc(50% - 1.5rem); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu, .nav-actions { display: none; }
    .mobile-toggle { display: flex; }
    .hero-visual { transform: scale(0.65); margin-top: -3rem; height: 420px; }
    .hero-title { font-size: 2.25rem; }
    .search-box { flex-direction: column; }
    .search-btn { width: 100%; }
    .categories-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .testimonial-card { flex: 0 0 calc(100% - 1.5rem); }
    .trust-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.875rem; }
    .cta-content h2 { font-size: 1.875rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .pro-cta { flex-direction: column; }
    .pro-cta .btn { width: 100%; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.875rem; }
    .section { padding: 3rem 0; }
    .stat-number { font-size: 1.75rem; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
}

.nav-menu.active { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: white; padding: 2rem; z-index: 999; gap: 1.5rem; }
.nav-menu.active .nav-link { font-size: 1.25rem; font-weight: 600; }
[id] { scroll-margin-top: 100px; }

/* Flash Message */
.flash-message { position: fixed; top: 90px; right: 1.5rem; z-index: 1001; background: white; border: 1px solid var(--border); border-left: 4px solid var(--success); border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.75rem; font-size: 0.9375rem; font-weight: 500; color: var(--text); animation: slideIn 0.4s ease; }
.flash-message i { color: var(--success); font-size: 1.125rem; }
.flash-message button { background: none; border: none; color: var(--text-muted); cursor: pointer; margin-left: 0.5rem; font-size: 0.875rem; }
.flash-message button:hover { color: var(--text); }
@keyframes slideIn { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* Navbar User */
.nav-user { position: relative; }
.nav-user-btn { display: flex; align-items: center; gap: 0.5rem; background: none; border: none; padding: 0.375rem 0.625rem 0.375rem 0.375rem; border-radius: var(--radius-full); transition: var(--transition); cursor: pointer; }
.nav-user-btn:hover { background: rgba(8,145,178,0.08); }
.nav-user-avatar { width: 32px; height: 32px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8125rem; font-weight: 700; overflow: hidden; }
.nav-user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nav-user-info-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.25rem; font-weight: 700; }
.nav-user-info-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nav-user-name { font-size: 0.875rem; font-weight: 600; color: var(--text); max-width: 120px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-credit-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; font-size: 11px; font-weight: 800; border-radius: 999px; margin-right: 4px; }
.nav-user-btn i { font-size: 0.625rem; color: var(--text-muted); }
.nav-user-menu { position: absolute; top: calc(100% + 0.5rem); right: 0; width: 260px; background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); z-index: 200; opacity: 0; transform: translateY(-8px); pointer-events: none; transition: var(--transition); overflow: hidden; }
.nav-user-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-user-info { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border-light); }
.nav-user-info strong { display: block; font-size: 0.9375rem; color: var(--text); margin-bottom: 0.25rem; }
.nav-user-info small { display: block; font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.nav-user-role { display: inline-block; padding: 0.25rem 0.625rem; background: rgba(8,145,178,0.1); color: var(--primary); font-size: 0.6875rem; font-weight: 700; border-radius: var(--radius-full); text-transform: uppercase; }
.nav-user-menu a, .nav-logout-form button { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.25rem; font-size: 0.875rem; color: var(--text); transition: var(--transition); width: 100%; text-align: left; background: none; border: none; cursor: pointer; }
.nav-user-menu a:hover, .nav-logout-form button:hover { background: var(--bg); color: var(--primary); }
.nav-user-menu a i, .nav-logout-form button i { width: 20px; text-align: center; color: var(--text-muted); }
.nav-user-menu a:hover i, .nav-logout-form button:hover i { color: var(--primary); }
.nav-logout-form { border-top: 1px solid var(--border-light); }

/* Auth Section */
.auth-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 7rem 1.5rem 3rem; background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%); }
.auth-container { width: 100%; max-width: 440px; }
.auth-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-lg); }
.auth-header { text-align: center; margin-bottom: 2rem; }
.auth-logo { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 800; font-size: 1.25rem; margin-bottom: 1.5rem; }
.auth-header h1 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.auth-header p { font-size: 0.9375rem; color: var(--text-light); }
.auth-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.form-input-wrap { position: relative; }
.form-input-wrap i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.9375rem; }
.form-input-wrap input { width: 100%; padding: 0.875rem 0.875rem 0.875rem 2.75rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.9375rem; transition: var(--transition); background: white; color: var(--text); }
.form-input-wrap input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(8,145,178,0.1); }

/* Custom Select */
.custom-select { position: relative; }
.custom-select-trigger { display: flex; align-items: center; justify-content: space-between; padding: 0.875rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); background: white; cursor: pointer; font-size: 0.9375rem; color: var(--text); transition: var(--transition); }
.custom-select-trigger:hover { border-color: var(--primary-light); }
.custom-select-trigger i { font-size: 0.75rem; color: var(--text-muted); transition: var(--transition); }
.custom-select.open .custom-select-trigger { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(8,145,178,0.1); }
.custom-select.open .custom-select-trigger i { transform: rotate(180deg); }
.custom-select-dropdown { position: absolute; top: calc(100% + 0.375rem); left: 0; right: 0; background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-xl); z-index: 200; opacity: 0; transform: translateY(-8px); pointer-events: none; transition: var(--transition); max-height: 220px; overflow-y: auto; }
.custom-select.open .custom-select-dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
.custom-select-list { padding: 0.375rem; }
.custom-select-item { padding: 0.625rem 0.75rem; border-radius: var(--radius-sm); cursor: pointer; font-size: 0.9375rem; color: var(--text); transition: var(--transition); }
.custom-select-item:hover { background: var(--bg); color: var(--primary); }
.custom-select-item.selected { background: rgba(8,145,178,0.08); color: var(--primary); font-weight: 600; }
.custom-select-dropdown::-webkit-scrollbar { width: 5px; }
.custom-select-dropdown::-webkit-scrollbar-track { background: transparent; }
.custom-select-dropdown::-webkit-scrollbar-thumb { background: var(--border); border-radius: var(--radius-full); }
.form-error { font-size: 0.8125rem; color: var(--danger); }
.form-row { display: flex; align-items: center; justify-content: space-between; flex-direction: row; }
.form-checkbox { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-light); cursor: pointer; font-weight: 400; }
.form-checkbox input { width: 16px; height: 16px; accent-color: var(--primary); }
.form-link { font-size: 0.875rem; font-weight: 600; color: var(--primary); }
.form-link:hover { text-decoration: underline; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-block { width: 100%; }
.role-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.role-option { display: flex; flex-direction: column; align-items: center; gap: 0.375rem; padding: 1rem; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: var(--transition); text-align: center; }
.role-option input { display: none; }
.role-option i { font-size: 1.25rem; color: var(--text-muted); }
.role-option span { font-size: 0.8125rem; font-weight: 600; color: var(--text-light); }
.role-option:hover { border-color: var(--primary-light); }
.role-option.active { border-color: var(--primary); background: rgba(8,145,178,0.04); }
.role-option.active i { color: var(--primary); }
.role-option.active span { color: var(--primary); }
.auth-footer { text-align: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); font-size: 0.9375rem; color: var(--text-light); }
.auth-footer a { font-weight: 700; color: var(--primary); }
.auth-footer a:hover { text-decoration: underline; }

@media (max-width: 480px) {
    .auth-card { padding: 1.75rem; }
    .form-row-2 { grid-template-columns: 1fr; }
    .flash-message { right: 1rem; left: 1rem; top: 80px; }
}

/* ============================================
   OFFER SYSTEM — Premium Styles
   ============================================ */

/* Offer Actions (buttons row inside offer card) */
.sr-offer-actions { display: flex; align-items: center; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.sr-offer-actions form { display: inline; margin: 0; }

.sr-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 10px; font-size: 13px; font-weight: 700; border: none; cursor: pointer; transition: all 0.2s ease; text-decoration: none; }
.sr-btn i { font-size: 12px; }

.sr-btn-accept { background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; box-shadow: 0 4px 12px rgba(34,197,94,0.25); }
.sr-btn-accept:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(34,197,94,0.35); }

.sr-btn-reject { background: linear-gradient(135deg, #f43f5e, #e11d48); color: #fff; box-shadow: 0 4px 12px rgba(244,63,94,0.25); }
.sr-btn-reject:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(244,63,94,0.35); }

.sr-btn-withdraw { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; box-shadow: 0 4px 12px rgba(245,158,11,0.25); }
.sr-btn-withdraw:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(245,158,11,0.35); }

.sr-btn-primary { background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; box-shadow: 0 8px 24px rgba(20,184,166,0.3); }
.sr-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(20,184,166,0.4); }

.sr-btn-ghost { background: rgba(255,255,255,0.7); color: #64748b; border: 1px solid rgba(226,232,240,0.8); }
.sr-btn-ghost:hover { background: #fff; color: #0f766e; border-color: #14b8a6; }

/* Offer Submit Section */
.sr-offer-submit { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(226,232,240,0.6); border-radius: 18px; padding: 28px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); margin-bottom: 24px; animation: srFadeUp 0.5s ease 0.25s both; }
.sr-offer-submit-header { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.sr-offer-submit-header i { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, #eff6ff, #dbeafe); color: #2563eb; display: flex; align-items: center; justify-content: center; font-size: 15px; box-shadow: 0 2px 8px rgba(37,99,235,0.1); }
.sr-offer-submit-header h4 { font-size: 16px; font-weight: 800; color: #0f172a; margin: 0; letter-spacing: -0.01em; }

.sr-offer-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sr-offer-form-group { display: flex; flex-direction: column; gap: 6px; }
.sr-offer-form-group.full { grid-column: 1 / -1; }
.sr-offer-form-group label { font-size: 13px; font-weight: 600; color: #334155; }
.sr-offer-form-group input,
.sr-offer-form-group select,
.sr-offer-form-group textarea { padding: 12px 16px; border: 1.5px solid #e2e8f0; border-radius: 12px; font-size: 14px; color: #1e293b; background: #fff; transition: all 0.2s ease; outline: none; font-family: inherit; }
.sr-offer-form-group input:focus,
.sr-offer-form-group select:focus,
.sr-offer-form-group textarea:focus { border-color: #14b8a6; box-shadow: 0 0 0 4px rgba(20,184,166,0.12); }
.sr-offer-form-group input::placeholder,
.sr-offer-form-group textarea::placeholder { color: #94a3b8; }
.sr-offer-form-group textarea { resize: vertical; min-height: 90px; }

.sr-offer-form-row { display: flex; gap: 12px; }
.sr-offer-form-row .sr-offer-form-group:first-child { flex: 1; }
.sr-offer-form-row .sr-offer-form-group:last-child { width: 120px; flex-shrink: 0; }

/* Enhanced Offer Item */
.sr-offer-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px; border-radius: 14px; border: 1px solid #f1f5f9; margin-bottom: 10px; transition: all 0.25s cubic-bezier(0.4,0,0.2,1); background: #fff; }
.sr-offer-item:hover { background: #f8fafc; border-color: #e2e8f0; box-shadow: 0 4px 16px rgba(0,0,0,0.04); transform: translateX(4px); }
.sr-offer-item.accepted { border-color: #bbf7d0; background: linear-gradient(135deg, #f0fdf4, #f6fef9); }
.sr-offer-item.rejected { border-color: #fecdd3; background: linear-gradient(135deg, #fff1f2, #fff5f6); opacity: 0.7; }

.sr-offer-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 800; flex-shrink: 0; box-shadow: 0 4px 12px rgba(20,184,166,0.25); overflow: hidden; }
.sr-offer-avatar img { width: 100%; height: 100%; object-fit: cover; }

.sr-offer-body { flex: 1; min-width: 0; }
.sr-offer-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.sr-offer-name { font-size: 15px; font-weight: 800; color: #0f172a; letter-spacing: -0.01em; }
.sr-offer-rating { font-size: 12px; font-weight: 600; color: #f59e0b; display: flex; align-items: center; gap: 3px; }

.sr-offer-meta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }
.sr-offer-meta-item { font-size: 13px; color: #64748b; font-weight: 500; display: flex; align-items: center; gap: 5px; }
.sr-offer-meta-item i { font-size: 11px; color: #94a3b8; }
.sr-offer-price-tag { font-size: 16px; font-weight: 900; color: #0f766e; letter-spacing: -0.02em; }

.sr-offer-desc { font-size: 14px; color: #475569; line-height: 1.6; margin: 0 0 10px; }

.sr-offer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }

/* Status badge expanded */
.sr-offer-badge { font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 9999px; letter-spacing: 0.02em; }
.sr-offer-badge.amber { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #92400e; }
.sr-offer-badge.green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #065f46; }
.sr-offer-badge.rose { background: linear-gradient(135deg, #ffe4e6, #fecdd3); color: #9f1239; }
.sr-offer-badge.blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1e40af; }
.sr-offer-badge.slate { background: linear-gradient(135deg, #f1f5f9, #e2e8f0); color: #475569; }

/* Flash Messages */
.sr-flash { padding: 14px 20px; border-radius: 14px; font-size: 14px; font-weight: 600; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; animation: srFadeUp 0.4s ease both; }
.sr-flash.success { background: linear-gradient(135deg, #f0fdf4, #dcfce7); color: #166534; border: 1px solid #bbf7d0; }
.sr-flash.error { background: linear-gradient(135deg, #fef2f2, #fee2e2); color: #991b1b; border: 1px solid #fecaca; }
.sr-flash i { font-size: 16px; }

/* Already offered notice */
.sr-offer-notice { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: linear-gradient(135deg, #eff6ff, #dbeafe); border: 1px solid #bfdbfe; border-radius: 12px; font-size: 14px; font-weight: 600; color: #1e40af; margin-bottom: 24px; animation: srFadeUp 0.5s ease both; }
.sr-offer-notice i { font-size: 16px; }

@media (max-width: 640px) {
    .sr-offer-form-grid { grid-template-columns: 1fr; }
    .sr-offer-form-row { flex-direction: column; }
    .sr-offer-form-row .sr-offer-form-group:last-child { width: 100%; }
    .sr-offer-top { flex-direction: column; align-items: flex-start; gap: 6px; }
    .sr-offer-right { align-items: flex-start; width: 100%; }
    .sr-offer-actions { width: 100%; }
    .sr-offer-item { flex-direction: column; gap: 12px; }
}

/* ============================================
   SERVICE REQUESTS — Premium Styles (Restored)
   ============================================ */

/* Global navbar offset */
.dash-section { padding-top: 100px; padding-bottom: 80px; }

/* Service Request Show */
.sr-show-section { padding: 100px 0 80px; background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%); min-height: 100vh; }
.sr-show-container { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* Hero */
.sr-hero { background: linear-gradient(135deg, #0f172a, #1e293b); border-radius: 24px; padding: 40px 36px; margin-bottom: 28px; position: relative; overflow: hidden; box-shadow: 0 20px 60px rgba(15,23,42,0.2); }
.sr-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: linear-gradient(135deg, rgba(20,184,166,0.15), rgba(56,189,248,0.08)); border-radius: 50%; filter: blur(60px); pointer-events: none; }
.sr-hero-content { position: relative; z-index: 1; }
.sr-hero-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.sr-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 9999px; font-size: 12px; font-weight: 800; letter-spacing: 0.03em; }
.sr-hero-badge.amber { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #92400e; }
.sr-hero-badge.blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1e40af; }
.sr-hero-badge.green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #065f46; }
.sr-hero-badge.rose { background: linear-gradient(135deg, #ffe4e6, #fecdd3); color: #9f1239; }
.sr-hero-date { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.sr-hero-title { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -0.02em; line-height: 1.25; margin: 0; }

/* Info Grid */
.sr-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: 24px; }
.sr-info-card { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(226,232,240,0.6); border-radius: 18px; padding: 22px; display: flex; align-items: flex-start; gap: 14px; transition: all 0.3s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.sr-info-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.08); border-color: rgba(20,184,166,0.2); }
.sr-info-icon { width: 44px; height: 44px; border-radius: 14px; background: linear-gradient(135deg, #f0fdfa, #ccfbf1); color: #0f766e; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; box-shadow: 0 4px 12px rgba(20,184,166,0.12); }
.sr-info-body { min-width: 0; }
.sr-info-label { font-size: 12px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.sr-info-value { font-size: 15px; font-weight: 800; color: #0f172a; letter-spacing: -0.01em; line-height: 1.4; }

/* Description Card */
.sr-desc-card { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(226,232,240,0.6); border-radius: 18px; padding: 28px; margin-bottom: 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.sr-desc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.sr-desc-header i { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, #eff6ff, #dbeafe); color: #2563eb; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.sr-desc-header h4 { font-size: 16px; font-weight: 800; color: #0f172a; margin: 0; }
.sr-desc-text { font-size: 15px; color: #475569; line-height: 1.8; margin: 0; }

/* Offers Card */
.sr-offers-card { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(226,232,240,0.6); border-radius: 18px; padding: 28px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.sr-offers-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.sr-offers-header i { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, #f0fdf4, #bbf7d0); color: #059669; display: flex; align-items: center; justify-content: center; font-size: 15px; box-shadow: 0 2px 8px rgba(5,150,105,0.1); }
.sr-offers-header h4 { font-size: 16px; font-weight: 800; color: #0f172a; margin: 0; letter-spacing: -0.01em; }
.sr-offers-count { margin-left: auto; font-size: 13px; font-weight: 700; color: #0f766e; background: linear-gradient(135deg, #f0fdfa, #ccfbf1); padding: 6px 14px; border-radius: 9999px; }

/* Original offer item (compact version used in some places) */
.sr-offer-info { flex: 1; min-width: 0; }
.sr-offer-meta { font-size: 13px; color: #94a3b8; font-weight: 500; }
.sr-offer-price { font-size: 17px; font-weight: 900; color: #0f766e; margin-right: 14px; letter-spacing: -0.02em; }

.sr-offers-empty { text-align: center; padding: 48px 20px; }
.sr-offers-empty i { font-size: 48px; color: #cbd5e1; margin-bottom: 16px; display: block; opacity: 0.6; }
.sr-offers-empty p { font-size: 15px; color: #94a3b8; margin: 0; max-width: 320px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* Back Link */
.sr-back { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #64748b; text-decoration: none; transition: all 0.25s; margin-top: 32px; padding: 10px 18px; border-radius: 12px; background: rgba(255,255,255,0.7); backdrop-filter: blur(8px); border: 1px solid rgba(226,232,240,0.6); }
.sr-back:hover { color: #0f766e; background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transform: translateX(-2px); }

/* Service Request Index */
.sr-index-section { padding: 100px 0 100px; background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%); min-height: 100vh; }
.sr-index-container { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* Index Header */
.sr-index-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.sr-index-title { font-size: 36px; font-weight: 900; color: #0f172a; letter-spacing: -0.03em; line-height: 1.1; margin: 0 0 6px; }
.sr-index-subtitle { font-size: 15px; color: #64748b; font-weight: 500; margin: 0; }
.sr-index-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; font-size: 14px; font-weight: 700; border-radius: 14px; text-decoration: none; box-shadow: 0 8px 24px rgba(20,184,166,0.3); transition: all 0.25s; border: none; cursor: pointer; }
.sr-index-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(20,184,166,0.4); }

/* Request Cards */
.sr-request-card { display: flex; align-items: center; gap: 18px; background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); border: 1px solid rgba(226,232,240,0.6); border-radius: 18px; padding: 22px 24px; margin-bottom: 14px; text-decoration: none; color: inherit; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 1px 3px rgba(0,0,0,0.04); position: relative; overflow: hidden; }
.sr-request-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, #14b8a6, #0d9488); border-radius: 18px 0 0 18px; opacity: 0; transition: opacity 0.3s; }
.sr-request-card:hover { border-color: rgba(20,184,166,0.3); box-shadow: 0 12px 40px rgba(20,184,166,0.1); transform: translateY(-3px); }
.sr-request-card:hover::before { opacity: 1; }

.sr-request-icon { width: 52px; height: 52px; border-radius: 16px; background: linear-gradient(135deg, #f0fdfa, #ccfbf1); color: #0f766e; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; box-shadow: 0 4px 12px rgba(20,184,166,0.12); }
.sr-request-body { flex: 1; min-width: 0; }
.sr-request-title { font-size: 16px; font-weight: 800; color: #0f172a; margin: 0 0 5px; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-request-meta { font-size: 13px; color: #64748b; font-weight: 500; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sr-request-meta i { font-size: 11px; color: #94a3b8; }

.sr-request-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.sr-request-badge { font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 9999px; letter-spacing: 0.02em; }
.sr-request-badge.amber { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #92400e; }
.sr-request-badge.blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1e40af; }
.sr-request-badge.green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #065f46; }
.sr-request-badge.rose { background: linear-gradient(135deg, #ffe4e6, #fecdd3); color: #9f1239; }
.sr-request-badge.slate { background: linear-gradient(135deg, #f1f5f9, #e2e8f0); color: #475569; }

.sr-request-offers { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: #64748b; background: #f8fafc; padding: 5px 12px; border-radius: 9999px; white-space: nowrap; }
.sr-request-offers i { font-size: 12px; color: #0f766e; }
.sr-request-arrow { width: 32px; height: 32px; border-radius: 50%; background: #f1f5f9; color: #94a3b8; display: flex; align-items: center; justify-content: center; font-size: 12px; transition: all 0.2s; flex-shrink: 0; }
.sr-request-card:hover .sr-request-arrow { background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; transform: translateX(2px); }

/* Yeni talep — henüz telefon satın alınmamış */
.sr-request-new { border: 2px solid rgba(244,63,94,0.4); background: rgba(255,241,242,0.6); }
.sr-request-new::before { background: linear-gradient(180deg, #f43f5e, #e11d48); opacity: 1; }

/* Pagination */
.sr-pagination { margin-top: 32px; display: flex; justify-content: center; }
.sr-pagination nav > div { display: flex; gap: 6px; }
.sr-pagination nav > div > span,
.sr-pagination nav > div > a { padding: 8px 14px; border-radius: 10px; font-size: 13px; font-weight: 600; transition: all 0.2s; }
.sr-pagination nav > div > span[aria-current="page"] { background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; box-shadow: 0 4px 12px rgba(20,184,166,0.25); }
.sr-pagination nav > div > a { color: #64748b; background: #fff; border: 1px solid #e2e8f0; text-decoration: none; }
.sr-pagination nav > div > a:hover { border-color: #14b8a6; color: #0f766e; }

/* Empty State */
.sr-empty { text-align: center; padding: 80px 20px; background: rgba(255,255,255,0.8); backdrop-filter: blur(20px); border: 1px solid rgba(226,232,240,0.6); border-radius: 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.sr-empty i { font-size: 56px; color: #cbd5e1; margin-bottom: 20px; display: block; opacity: 0.5; }
.sr-empty h3 { font-size: 20px; font-weight: 800; color: #0f172a; margin: 0 0 8px; }
.sr-empty p { font-size: 15px; color: #94a3b8; margin: 0 0 24px; }

/* Animations */
.sr-hero { animation: srFadeUp 0.6s ease both; }
.sr-info-card { animation: srFadeUp 0.5s ease both; }
.sr-info-card:nth-child(1) { animation-delay: 0.1s; }
.sr-info-card:nth-child(2) { animation-delay: 0.18s; }
.sr-info-card:nth-child(3) { animation-delay: 0.26s; }
.sr-info-card:nth-child(4) { animation-delay: 0.34s; }
.sr-desc-card { animation: srFadeUp 0.5s ease 0.2s both; }
.sr-offers-card { animation: srFadeUp 0.5s ease 0.3s both; }
@keyframes srFadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.sr-request-card { animation: srFadeUp 0.45s ease both; }
.sr-request-card:nth-child(1) { animation-delay: 0.05s; }
.sr-request-card:nth-child(2) { animation-delay: 0.1s; }
.sr-request-card:nth-child(3) { animation-delay: 0.15s; }
.sr-request-card:nth-child(4) { animation-delay: 0.2s; }
.sr-request-card:nth-child(5) { animation-delay: 0.25s; }
.sr-request-card:nth-child(6) { animation-delay: 0.3s; }

@media (max-width: 640px) {
    .sr-show-section { padding: 80px 0 60px; }
    .sr-hero { padding: 28px 22px; }
    .sr-hero-title { font-size: 22px; }
    .sr-info-grid { grid-template-columns: 1fr; }
    .sr-index-section { padding: 80px 0 80px; }
    .sr-index-title { font-size: 28px; }
    .sr-request-card { flex-direction: column; align-items: flex-start; gap: 14px; }
    .sr-request-right { width: 100%; justify-content: space-between; }
}

/* ============================================
   CHAT SYSTEM — Premium Styles
   ============================================ */

/* Navbar message badge */
.nav-msg-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px; background: linear-gradient(135deg, #f43f5e, #e11d48); color: #fff; font-size: 10px; font-weight: 800; border-radius: 999px; margin-left: 6px; }

/* Chat Section */
.chat-section { padding: 100px 0 0; background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%); min-height: 100vh; }
.chat-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.chat-layout { display: flex; background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(226,232,240,0.6); border-radius: 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); overflow: hidden; height: calc(100vh - 120px); min-height: 600px; }

/* Sidebar */
.chat-sidebar { width: 340px; flex-shrink: 0; border-right: 1px solid rgba(226,232,240,0.6); background: rgba(255,255,255,0.6); display: flex; flex-direction: column; }
.chat-sidebar-header { padding: 20px 24px; border-bottom: 1px solid rgba(226,232,240,0.6); }
.chat-sidebar-header h2 { font-size: 18px; font-weight: 800; color: #0f172a; margin: 0; display: flex; align-items: center; gap: 10px; }
.chat-sidebar-header h2 i { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, #eff6ff, #dbeafe); color: #2563eb; display: flex; align-items: center; justify-content: center; font-size: 14px; }

.chat-sidebar-list { flex: 1; overflow-y: auto; padding: 8px; }
.chat-thread-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 14px; text-decoration: none; color: inherit; transition: all 0.2s ease; margin-bottom: 4px; }
.chat-thread-item:hover { background: #f1f5f9; }
.chat-thread-item.active { background: linear-gradient(135deg, #f0fdfa, #ccfbf1); border: 1px solid rgba(20,184,166,0.15); }

.chat-thread-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; flex-shrink: 0; overflow: hidden; }
.chat-thread-avatar img { width: 100%; height: 100%; object-fit: cover; }

.chat-thread-body { flex: 1; min-width: 0; }
.chat-thread-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 3px; }
.chat-thread-top strong { font-size: 14px; font-weight: 700; color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-thread-time { font-size: 11px; color: #94a3b8; flex-shrink: 0; }

.chat-thread-preview { display: flex; align-items: center; gap: 8px; }
.chat-thread-preview span { font-size: 13px; color: #64748b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; }
.chat-thread-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; background: linear-gradient(135deg, #f43f5e, #e11d48); color: #fff; font-size: 11px; font-weight: 800; border-radius: 999px; flex-shrink: 0; }

.chat-empty-sidebar { text-align: center; padding: 48px 20px; color: #94a3b8; }
.chat-empty-sidebar i { font-size: 40px; margin-bottom: 12px; display: block; opacity: 0.4; }
.chat-empty-sidebar p { font-size: 14px; margin: 0; }
.chat-empty-sidebar .sub { font-size: 12px; margin-top: 4px; opacity: 0.7; }

/* Main Chat */
.chat-main { flex: 1; display: flex; flex-direction: column; min-width: 0; background: rgba(255,255,255,0.5); }

.chat-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 24px; border-bottom: 1px solid rgba(226,232,240,0.6); background: rgba(255,255,255,0.7); backdrop-filter: blur(10px); }
.chat-header-user { display: flex; align-items: center; gap: 12px; }
.chat-header-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; overflow: hidden; flex-shrink: 0; }
.chat-header-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-header-user h3 { font-size: 15px; font-weight: 800; color: #0f172a; margin: 0; }
.chat-header-user span { font-size: 12px; color: #94a3b8; font-weight: 500; }
.chat-header-link { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; font-size: 13px; font-weight: 600; color: #64748b; text-decoration: none; transition: all 0.2s; }
.chat-header-link:hover { background: #fff; color: #0f766e; border-color: #14b8a6; }

/* Messages */
.chat-messages { flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 16px; }

.chat-message { display: flex; align-items: flex-end; gap: 10px; max-width: 80%; }
.chat-message.sent { align-self: flex-end; flex-direction: row-reverse; }
.chat-message.received { align-self: flex-start; }

.chat-message-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; overflow: hidden; }
.chat-message-avatar img { width: 100%; height: 100%; object-fit: cover; }

.chat-message-content { display: flex; flex-direction: column; gap: 4px; }
.chat-message.sent .chat-message-content { align-items: flex-end; }
.chat-message.received .chat-message-content { align-items: flex-start; }

.chat-bubble { padding: 12px 16px; border-radius: 18px; font-size: 14px; line-height: 1.5; max-width: 100%; word-wrap: break-word; }
.chat-message.sent .chat-bubble { background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; border-bottom-right-radius: 4px; }
.chat-message.received .chat-bubble { background: #f1f5f9; color: #334155; border-bottom-left-radius: 4px; }

.chat-meta { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #94a3b8; }
.chat-meta i { font-size: 10px; }
.chat-message.sent .chat-meta { color: #94a3b8; }
.chat-message.sent .chat-meta i.fa-check-double { color: #3b82f6; }

/* Welcome / Empty states */
.chat-welcome { text-align: center; margin: auto; padding: 40px; }
.chat-welcome-icon { width: 72px; height: 72px; border-radius: 20px; background: linear-gradient(135deg, #f0fdfa, #ccfbf1); color: #0f766e; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(20,184,166,0.15); }
.chat-welcome h4 { font-size: 18px; font-weight: 800; color: #0f172a; margin: 0 0 6px; }
.chat-welcome p { font-size: 14px; color: #94a3b8; margin: 0; max-width: 320px; margin-left: auto; margin-right: auto; line-height: 1.6; }

.chat-no-selection { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; padding: 40px; }

/* Input */
.chat-input-form { padding: 16px 24px; border-top: 1px solid rgba(226,232,240,0.6); background: rgba(255,255,255,0.7); backdrop-filter: blur(10px); }
.chat-input-wrap { display: flex; align-items: flex-end; gap: 10px; background: #fff; border: 1.5px solid #e2e8f0; border-radius: 16px; padding: 8px 8px 8px 16px; transition: all 0.2s; }
.chat-input-wrap:focus-within { border-color: #14b8a6; box-shadow: 0 0 0 4px rgba(20,184,166,0.1); }
.chat-input-wrap textarea { flex: 1; border: none; background: transparent; font-size: 14px; color: #1e293b; resize: none; max-height: 120px; padding: 6px 0; outline: none; font-family: inherit; }
.chat-input-wrap textarea::placeholder { color: #94a3b8; }
.chat-input-wrap button { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; border: none; display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; transition: all 0.2s; flex-shrink: 0; }
.chat-input-wrap button:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(20,184,166,0.3); }

@media (max-width: 768px) {
    .chat-layout { flex-direction: column; height: auto; min-height: calc(100vh - 80px); border-radius: 0; border: none; }
    .chat-sidebar { width: 100%; max-height: 280px; border-right: none; border-bottom: 1px solid rgba(226,232,240,0.6); }
    .chat-main { min-height: 400px; }
    .chat-section { padding: 80px 0 0; }
    .chat-container { padding: 0; }
}

/* ============================================
   PROFESSIONALS SEARCH — Premium Styles
   ============================================ */

.pro-section { padding: 100px 0 80px; background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%); min-height: 100vh; }
.pro-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
.pro-header { margin-bottom: 28px; }
.pro-title { font-size: 32px; font-weight: 900; color: #0f172a; letter-spacing: -0.03em; margin: 0 0 6px; }
.pro-subtitle { font-size: 15px; color: #64748b; font-weight: 500; margin: 0; }

/* Filter Bar */
.pro-filter-bar { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(226,232,240,0.6); border-radius: 18px; padding: 16px 20px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); margin-bottom: 20px; }
.pro-filter-form { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pro-filter-group { display: flex; align-items: center; gap: 8px; background: #f8fafc; border: 1.5px solid #e2e8f0; border-radius: 12px; padding: 8px 12px; transition: all 0.2s; flex: 1; min-width: 160px; }
.pro-filter-group:hover { border-color: #cbd5e1; }
.pro-filter-group:focus-within { border-color: #14b8a6; box-shadow: 0 0 0 3px rgba(20,184,166,0.1); }
.pro-filter-group.small { min-width: 110px; flex: 0.6; }
.pro-filter-group i { font-size: 12px; color: #94a3b8; flex-shrink: 0; }
.pro-filter-group input, .pro-filter-group select { flex: 1; border: none; background: transparent; font-size: 13px; color: #334155; outline: none; font-family: inherit; min-width: 0; }
.pro-filter-group input::placeholder { color: #94a3b8; }
.pro-filter-group select { cursor: pointer; appearance: none; padding-right: 4px; }

.pro-filter-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.pro-filter-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; font-size: 13px; font-weight: 700; border-radius: 12px; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 12px rgba(20,184,166,0.25); }
.pro-filter-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(20,184,166,0.35); }
.pro-filter-btn.reset { background: #f1f5f9; color: #64748b; box-shadow: none; padding: 10px 14px; }
.pro-filter-btn.reset:hover { background: #e2e8f0; }

/* Results Meta */
.pro-results-meta { margin-bottom: 20px; font-size: 14px; color: #64748b; font-weight: 500; }
.pro-results-meta strong { color: #0f172a; }

/* Grid */
.pro-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; margin-bottom: 32px; }

/* Card */
.pro-card { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); border: 1px solid rgba(226,232,240,0.6); border-radius: 20px; padding: 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: all 0.3s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; }
.pro-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-color: rgba(20,184,166,0.2); }

.pro-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.pro-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; overflow: hidden; flex-shrink: 0; box-shadow: 0 4px 12px rgba(20,184,166,0.2); }
.pro-avatar img { width: 100%; height: 100%; object-fit: cover; }
.pro-card-info { min-width: 0; }
.pro-card-info h3 { font-size: 16px; font-weight: 800; color: #0f172a; margin: 0 0 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pro-location { font-size: 12px; color: #94a3b8; font-weight: 500; display: flex; align-items: center; gap: 4px; }
.pro-location i { font-size: 10px; }

/* Categories */
.pro-categories { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.pro-badge { padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; background: linear-gradient(135deg, #eff6ff, #dbeafe); color: #1e40af; }
.pro-badge.more { background: #f1f5f9; color: #64748b; }

/* Stats */
.pro-stats { margin-top: auto; padding-top: 14px; border-top: 1px solid #f1f5f9; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.pro-rating { display: flex; align-items: center; gap: 6px; }
.pro-stars { display: flex; gap: 2px; }
.pro-stars i { font-size: 11px; color: #e2e8f0; }
.pro-stars i.active { color: #f59e0b; }
.pro-rating-text { font-size: 12px; font-weight: 700; color: #0f172a; }
.pro-rating.empty span { font-size: 12px; color: #cbd5e1; font-weight: 500; }
.pro-price-range { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: #0f766e; background: #f0fdfa; padding: 5px 10px; border-radius: 8px; }
.pro-price-range i { font-size: 10px; }

/* Card Link */
.pro-card-link { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 14px; padding: 10px 16px; background: #f8fafc; border: 1.5px solid #e2e8f0; border-radius: 12px; font-size: 13px; font-weight: 700; color: #334155; text-decoration: none; transition: all 0.2s; }
.pro-card-link:hover { background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; border-color: transparent; box-shadow: 0 4px 12px rgba(20,184,166,0.25); }

/* Pagination */
.pro-pagination { display: flex; justify-content: center; }
.pro-pagination nav > div { display: flex; gap: 6px; }
.pro-pagination nav > div > span,
.pro-pagination nav > div > a { padding: 8px 14px; border-radius: 10px; font-size: 13px; font-weight: 600; transition: all 0.2s; }
.pro-pagination nav > div > span[aria-current="page"] { background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; box-shadow: 0 4px 12px rgba(20,184,166,0.25); }
.pro-pagination nav > div > a { color: #64748b; background: #fff; border: 1px solid #e2e8f0; text-decoration: none; }
.pro-pagination nav > div > a:hover { border-color: #14b8a6; color: #0f766e; }

/* Empty */
.pro-empty { text-align: center; padding: 80px 20px; background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); border: 1px solid rgba(226,232,240,0.6); border-radius: 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.pro-empty i { font-size: 56px; color: #cbd5e1; margin-bottom: 20px; display: block; opacity: 0.5; }
.pro-empty h3 { font-size: 20px; font-weight: 800; color: #0f172a; margin: 0 0 8px; }
.pro-empty p { font-size: 15px; color: #94a3b8; margin: 0 0 24px; }

@media (max-width: 768px) {
    .pro-section { padding: 80px 0 60px; }
    .pro-title { font-size: 26px; }
    .pro-filter-form { flex-direction: column; align-items: stretch; }
    .pro-filter-group, .pro-filter-group.small { min-width: auto; width: 100%; }
    .pro-filter-actions { width: 100%; }
    .pro-filter-btn { flex: 1; justify-content: center; }
    .pro-grid { grid-template-columns: 1fr; }
}

/* Credit Warning on Service Request Detail */
.sr-credit-warning { display: flex; align-items: center; gap: 20px; background: linear-gradient(135deg, #dc2626, #b91c1c); border-radius: 20px; padding: 28px 32px; margin-bottom: 24px; color: #fff; box-shadow: 0 12px 40px rgba(220,38,38,0.25); flex-wrap: wrap; }
.sr-credit-warning-icon { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, #fca5a5, #f87171); color: #991b1b; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; box-shadow: 0 8px 24px rgba(248,113,113,0.35); }
.sr-credit-warning-body { flex: 1; min-width: 0; }
.sr-credit-warning-body h4 { font-size: 18px; font-weight: 800; margin: 0 0 4px; }
.sr-credit-warning-body p { font-size: 14px; color: #94a3b8; margin: 0; }
.sr-credit-warning-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; font-size: 14px; font-weight: 700; border-radius: 14px; text-decoration: none; transition: all 0.2s; box-shadow: 0 4px 16px rgba(20,184,166,0.25); flex-shrink: 0; }
.sr-credit-warning-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20,184,166,0.35); }

@media (max-width: 640px) {
    .sr-credit-warning { flex-direction: column; text-align: center; padding: 24px; }
    .sr-credit-warning-btn { width: 100%; justify-content: center; }
}

/* Premium Credit Badge on Offer Form */
.sr-credit-badge-small { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: linear-gradient(135deg, #fef3c7, #fde68a); border: 1.5px solid #f59e0b; border-radius: 12px; font-size: 13px; font-weight: 800; color: #92400e; box-shadow: 0 4px 12px rgba(245,158,11,0.2); }
.sr-credit-badge-small i { font-size: 14px; color: #d97706; }

/* Phone Card on Service Request Detail */
.sr-info-card.phone-card { transition: all 0.3s ease; }
.sr-info-card.phone-card.revealed { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border-color: #86efac; }
.sr-info-card.phone-card.phone-locked {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.sr-info-card.phone-card.phone-locked:hover {
    border-color: #f59e0b;
    box-shadow: 0 8px 32px rgba(245,158,11,0.15);
    transform: translateY(-2px);
}
.sr-info-card.phone-card.phone-locked::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(135deg, rgba(254,243,199,0.1), rgba(253,230,138,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.sr-info-card.phone-card.phone-locked:hover::after {
    opacity: 1;
}
.phone-lock-hint {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #d97706;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 3px 10px;
    border-radius: 999px;
    vertical-align: middle;
    transition: all 0.2s ease;
}
.sr-info-card.phone-card.phone-locked:hover .phone-lock-hint {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    box-shadow: 0 4px 12px rgba(245,158,11,0.25);
}
.sr-phone-link { color: #0f766e; font-weight: 700; text-decoration: none; transition: color 0.2s; }
.sr-phone-link:hover { color: #047857; text-decoration: underline; }
.sr-phone-masked { color: #94a3b8; font-weight: 600; letter-spacing: 0.05em; }
