/* ===================================================
   OtoYıkamaBul - Ana Stil Dosyası
   Renk Kuralı 60/30/10:
   60% → Koyu lacivert/gri arka plan (#0f172a, #1e293b)
   30% → Mavi tonları (#0ea5e9, #38bdf8)
   10% → Canlı aksan (#f59e0b amber, #10b981 yeşil)
=================================================== */

:root {
    /* 60% Dominant */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #1e293b;
    --bg-card-hover: #263548;
    --surface: #334155;

    /* 30% Secondary */
    --primary: #0ea5e9;
    --primary-light: #38bdf8;
    --primary-dark: #0284c7;
    --primary-glow: rgba(14,165,233,0.3);
    --gradient-primary: linear-gradient(135deg, #0ea5e9, #6366f1);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0c1525 100%);

    /* 10% Accent */
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #06b6d4;

    /* Text */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Misc */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 9999px;
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 30px rgba(14,165,233,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a { text-decoration: none; color: var(--primary-light); transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

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

/* ============ ANIMATED BACKGROUND ============ */
.bg-bubbles {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0; overflow: hidden;
}
.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow), transparent);
    animation: floatBubble 20s infinite ease-in-out;
    opacity: 0.15;
}
.bubble:nth-child(1) { width: 400px; height: 400px; top: -10%; left: -5%; animation-duration: 25s; }
.bubble:nth-child(2) { width: 300px; height: 300px; top: 40%; right: -8%; animation-duration: 20s; animation-delay: -5s; }
.bubble:nth-child(3) { width: 200px; height: 200px; bottom: 10%; left: 30%; animation-duration: 18s; animation-delay: -10s; }
.bubble:nth-child(4) { width: 150px; height: 150px; top: 20%; left: 50%; animation-duration: 22s; animation-delay: -3s; background: radial-gradient(circle, rgba(245,158,11,0.2), transparent); }
.bubble:nth-child(5) { width: 250px; height: 250px; bottom: 30%; right: 20%; animation-duration: 28s; animation-delay: -7s; }
.bubble:nth-child(6) { width: 180px; height: 180px; top: 60%; left: 10%; animation-duration: 15s; animation-delay: -12s; background: radial-gradient(circle, rgba(99,102,241,0.2), transparent); }

@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 30px) scale(1.02); }
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar .container {
    display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.4rem; color: var(--text-primary); font-weight: 700;
}
.logo:hover { color: var(--text-primary); }
.logo strong { color: var(--primary); }
.logo-icon {
    position: relative;
    width: 42px; height: 42px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff;
    box-shadow: 0 4px 15px rgba(14,165,233,0.3);
}
.logo-drop {
    position: absolute; top: -4px; right: -2px;
    font-size: 0.6rem; color: var(--primary-light);
    animation: dropBounce 2s infinite;
}
@keyframes dropBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Nav Links */
.nav-links {
    display: flex; align-items: center; gap: 8px;
}
.nav-link {
    padding: 8px 16px; border-radius: var(--radius-sm);
    color: var(--text-secondary); font-size: 0.9rem; font-weight: 500;
    transition: var(--transition);
}
.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-link i { margin-right: 6px; }

.btn-nav-outline {
    border: 1px solid var(--primary); color: var(--primary) !important;
    border-radius: var(--radius-full);
}
.btn-nav-outline:hover { background: var(--primary); color: #fff !important; }

.btn-nav-primary {
    background: var(--gradient-primary); color: #fff !important;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(14,165,233,0.3);
}
.btn-nav-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(14,165,233,0.4); }

/* User Menu */
.nav-user { position: relative; }
.nav-user-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 12px; border-radius: var(--radius-full);
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary); font-size: 0.85rem;
}
.nav-user-btn:hover { background: rgba(255,255,255,0.1); }
.avatar-sm {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700; color: #fff;
}
.points-badge {
    background: rgba(245,158,11,0.15); color: var(--accent);
    padding: 2px 8px; border-radius: var(--radius-full);
    font-size: 0.75rem; font-weight: 600;
}
.dropdown-menu {
    position: absolute; top: calc(100% + 8px); right: 0;
    min-width: 200px; background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm); padding: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}
.dropdown-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 8px;
    color: var(--text-secondary); font-size: 0.85rem;
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: var(--text-primary); }
.dropdown-menu hr { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 4px 0; }
.text-danger { color: var(--danger) !important; }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; padding: 8px;
}
.hamburger span {
    width: 24px; height: 2px; background: var(--text-primary);
    border-radius: 2px; transition: var(--transition);
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative; z-index: 1;
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='%23ffffff' stroke-opacity='0.02'/%3E%3C/svg%3E");
    z-index: -1;
}
.hero-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem; font-weight: 900;
    line-height: 1.1; margin-bottom: 20px;
}
.hero-text h1 .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text h1 .text-accent { color: var(--accent); }
.hero-text p {
    font-size: 1.15rem; color: var(--text-secondary);
    margin-bottom: 32px; max-width: 500px;
}

/* Search Box */
.search-box {
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 8px; display: flex; gap: 8px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}
.search-box input, .search-box select {
    flex: 1; padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: none; border-radius: var(--radius-sm);
    color: var(--text-primary); font-size: 0.95rem;
    outline: none;
}
.search-box input::placeholder { color: var(--text-muted); }
.search-box select { max-width: 160px; cursor: pointer; }
.search-box select option { background: var(--bg-secondary); }

.btn-search {
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: #fff; border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem; font-weight: 600;
    display: flex; align-items: center; gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-search:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(14,165,233,0.4); }

.hero-stats {
    display: flex; gap: 32px; margin-top: 40px;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem; font-weight: 800; color: var(--primary-light);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Hero Visual */
.hero-visual {
    position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-card-stack {
    position: relative; width: 100%; max-width: 420px;
}
.hero-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    animation: cardFloat 6s ease-in-out infinite;
}
.hero-card:nth-child(2) {
    position: absolute; top: -30px; right: -30px;
    width: 200px; padding: 16px;
    animation-delay: -2s;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    z-index: 2;
}
.hero-card:nth-child(3) {
    position: absolute; bottom: -20px; left: -20px;
    width: 180px; padding: 14px;
    animation-delay: -4s;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    z-index: 2;
}
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-card .card-header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.hero-card .card-avatar {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #fff;
}
.hero-card .card-name { font-weight: 600; font-size: 0.95rem; }
.hero-card .card-location { font-size: 0.8rem; color: var(--text-muted); }
.hero-card .card-rating { color: var(--accent); font-size: 0.85rem; }
.hero-card .card-rating i { margin-right: 2px; }
.hero-card .card-services {
    display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px;
}
.hero-card .card-services span {
    padding: 4px 10px; border-radius: var(--radius-full);
    background: rgba(255,255,255,0.08); font-size: 0.75rem;
    color: var(--text-secondary);
}
.mini-stat { font-size: 1.8rem; font-weight: 800; color: #fff; }
.mini-label { font-size: 0.75rem; color: rgba(255,255,255,0.8); }

/* ============ SECTIONS ============ */
section { position: relative; z-index: 1; padding: 80px 0; }

.section-header {
    text-align: center; margin-bottom: 48px;
}
.section-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 16px; border-radius: var(--radius-full);
    background: rgba(14,165,233,0.1);
    color: var(--primary-light); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 12px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem; font-weight: 800;
    margin-bottom: 12px;
}
.section-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ============ FEATURE CARDS ============ */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gradient-primary);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-glow); border-color: rgba(14,165,233,0.2); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 20px;
}
.feature-icon.blue { background: rgba(14,165,233,0.15); color: var(--primary); }
.feature-icon.amber { background: rgba(245,158,11,0.15); color: var(--accent); }
.feature-icon.green { background: rgba(16,185,129,0.15); color: var(--success); }
.feature-icon.purple { background: rgba(99,102,241,0.15); color: #818cf8; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ============ LISTING CARDS ============ */
.listings-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.listing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden; transition: var(--transition);
}
.listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.listing-img {
    height: 200px; background: var(--surface);
    position: relative; overflow: hidden;
}
.listing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.listing-card:hover .listing-img img { transform: scale(1.05); }
.listing-badge {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 12px; border-radius: var(--radius-full);
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
}
.listing-badge.featured { background: var(--accent); color: #000; }
.listing-badge.verified { background: var(--success); color: #fff; }
.listing-fav {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(10px);
    border: none; color: #fff; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.listing-fav:hover, .listing-fav.active { background: var(--danger); }
.listing-body { padding: 20px; }
.listing-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.listing-location { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 10px; }
.listing-location i { color: var(--primary); margin-right: 4px; }
.listing-meta {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.06);
}
.listing-rating { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.listing-rating i { margin-right: 4px; }
.listing-price { color: var(--text-muted); font-size: 0.85rem; }
.listing-price strong { color: var(--primary-light); font-size: 1rem; }

/* ============ PRICING / PACKAGES ============ */
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    align-items: start;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}
.pricing-card.popular::before {
    content: 'En Popüler';
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    padding: 4px 20px; border-radius: var(--radius-full);
    background: var(--gradient-primary); color: #fff;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.popular:hover { transform: scale(1.05) translateY(-6px); }
.pricing-icon {
    width: 64px; height: 64px; border-radius: 50%;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.pricing-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.pricing-amount {
    font-family: var(--font-heading);
    font-size: 2.8rem; font-weight: 900;
    color: var(--primary-light); margin: 16px 0;
}
.pricing-amount span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-features { list-style: none; margin: 24px 0; text-align: left; }
.pricing-features li {
    padding: 8px 0; font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex; align-items: center; gap: 10px;
}
.pricing-features li i.fa-check { color: var(--success); }
.pricing-features li i.fa-times { color: var(--text-muted); }

/* ============ HOW IT WORKS ============ */
.steps-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute; top: 40px; left: 12%; right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--success), #818cf8);
    z-index: 0;
}
.step-item {
    text-align: center; position: relative; z-index: 1;
}
.step-number {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 3px solid var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem; font-weight: 800; color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}
.step-item:hover .step-number {
    background: var(--gradient-primary);
    color: #fff; border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(14,165,233,0.4);
}
.step-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step-item p { color: var(--text-secondary); font-size: 0.85rem; }

/* ============ CTA ============ */
.cta-section {
    background: var(--gradient-primary);
    border-radius: var(--radius);
    padding: 60px;
    text-align: center;
    margin: 0 24px;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; top: -50%; right: -20%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.cta-section h2 { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 28px; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-full);
    font-size: 0.95rem; font-weight: 600;
    border: none; transition: var(--transition);
    cursor: pointer; text-align: center;
}
.btn-primary { background: var(--gradient-primary); color: #fff; box-shadow: 0 4px 15px rgba(14,165,233,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(14,165,233,0.4); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--bg-primary); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,255,255,0.2); color: var(--bg-primary); }
.btn-accent { background: var(--accent); color: #000; font-weight: 700; }
.btn-accent:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ============ FORMS ============ */
.form-group { margin-bottom: 20px; }
.form-label {
    display: block; margin-bottom: 6px;
    font-size: 0.85rem; font-weight: 600; color: var(--text-secondary);
}
.form-control {
    width: 100%; padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem; font-family: inherit;
    transition: var(--transition);
}
.form-control:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }

.form-check { display: flex; align-items: center; gap: 8px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary); }

/* ============ AUTH PAGES ============ */
.auth-container {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 120px 24px 60px;
}
.auth-card {
    width: 100%; max-width: 480px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.auth-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem; font-weight: 800;
    margin-bottom: 8px;
}
.auth-card .subtitle { color: var(--text-secondary); margin-bottom: 28px; font-size: 0.95rem; }
.auth-tabs {
    display: flex; gap: 4px; margin-bottom: 28px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm); padding: 4px;
}
.auth-tab {
    flex: 1; padding: 10px; text-align: center;
    border-radius: 8px; border: none;
    background: transparent; color: var(--text-muted);
    font-weight: 600; font-size: 0.9rem;
    transition: var(--transition);
}
.auth-tab.active { background: var(--primary); color: #fff; }
.auth-tab:hover:not(.active) { color: var(--text-primary); }

.auth-divider {
    display: flex; align-items: center; gap: 16px;
    margin: 24px 0; color: var(--text-muted); font-size: 0.85rem;
}
.auth-divider::before, .auth-divider::after {
    content: ''; flex: 1; height: 1px;
    background: rgba(255,255,255,0.08);
}

/* ============ ALERTS ============ */
.alert {
    position: fixed; top: 80px; left: 50%; transform: translateX(-50%);
    z-index: 9999; padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem; font-weight: 500;
    display: flex; align-items: center; gap: 10px;
    min-width: 300px;
    box-shadow: var(--shadow-lg);
}
.alert-success { background: var(--success); color: #fff; }
.alert-danger { background: var(--danger); color: #fff; }
.alert-warning { background: var(--warning); color: #000; }

/* ============ ANIMATIONS ============ */
.animate-slide-down {
    animation: slideDown 0.4s ease, fadeOut 0.4s ease 3s forwards;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children */
.stagger-children > * { opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease, transform 0.4s ease; }
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }

/* Pulse */
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.animate-pulse { animation: pulse 2s infinite; }

/* Shimmer loading */
.shimmer {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--surface) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Counter animation */
.counter { display: inline-block; }

/* ============ MAP ============ */
.map-container {
    width: 100%; height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

/* ============ DASHBOARD / PANEL ============ */
.dashboard { padding-top: 100px; }
.dashboard-grid {
    display: grid; grid-template-columns: 260px 1fr; gap: 24px;
    min-height: calc(100vh - 100px);
}
.sidebar {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 24px 16px; height: fit-content;
    position: sticky; top: 100px;
}
.sidebar-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-radius: var(--radius-sm);
    color: var(--text-secondary); font-size: 0.9rem; font-weight: 500;
    margin-bottom: 4px; transition: var(--transition);
}
.sidebar-nav a:hover, .sidebar-nav a.active {
    background: rgba(14,165,233,0.1); color: var(--primary);
}
.sidebar-nav a.active { font-weight: 600; }

.dash-cards {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    margin-bottom: 24px;
}
.dash-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}
.dash-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dash-card-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: 12px;
}
.dash-card h4 { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.dash-card .dash-value { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; }

/* Data Table */
.data-table {
    width: 100%; border-collapse: collapse;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
}
.data-table th {
    padding: 14px 16px; text-align: left;
    font-size: 0.8rem; font-weight: 600;
    color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.data-table td {
    padding: 14px 16px; font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.data-table tr:hover td { background: rgba(255,255,255,0.02); }

.badge {
    display: inline-flex; padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.72rem; font-weight: 600;
}
.badge-success { background: rgba(16,185,129,0.15); color: var(--success); }
.badge-warning { background: rgba(245,158,11,0.15); color: var(--warning); }
.badge-danger { background: rgba(239,68,68,0.15); color: var(--danger); }
.badge-info { background: rgba(14,165,233,0.15); color: var(--primary); }
.badge-premium { background: linear-gradient(135deg, #f59e0b, #d97706); color: #000; }

/* Pagination */
.pagination {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    margin-top: 24px;
}
.pagination a, .pagination span {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.85rem; font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.pagination a:hover, .pagination span.active {
    background: var(--primary); color: #fff; border-color: var(--primary);
}

/* ============ FOOTER ============ */
.footer {
    position: relative; z-index: 1;
    background: var(--bg-secondary);
    padding: 60px 0 24px;
    margin-top: 60px;
}
.footer-wave {
    position: absolute; top: -60px; left: 0; right: 0;
    color: var(--bg-secondary);
}
.footer-wave svg { width: 100%; height: 60px; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p { color: var(--text-secondary); margin: 16px 0; font-size: 0.9rem; line-height: 1.7; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); font-size: 1rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-links h4 {
    font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--text-primary);
}
.footer-links a {
    display: block; padding: 6px 0;
    color: var(--text-secondary); font-size: 0.9rem;
}
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-bottom {
    text-align: center; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--text-muted); font-size: 0.85rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin: 0 auto 32px; }
    .hero-visual { display: none; }
    .hero-stats { justify-content: center; }
    .features-grid, .listings-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .dash-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.2rem; }
    .section-header h2 { font-size: 1.8rem; }
    .search-box { flex-direction: column; }
    .search-box select { max-width: 100%; }
    .features-grid, .listings-grid, .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-6px); }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .cta-section { padding: 40px 24px; margin: 0; border-radius: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px;
        height: 100vh; background: var(--bg-secondary);
        flex-direction: column; align-items: stretch;
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 999;
    }
    .nav-links.active { right: 0; }
    .hamburger { display: flex; z-index: 1001; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .dash-cards { grid-template-columns: 1fr; }
}
