/* ===== TeklifYolla.com - Premium Dark Mode CSS ===== */
:root {
    --bg-primary: #0b0f19;
    --bg-secondary: #111827;
    --bg-card: rgba(17, 24, 39, 0.85);
    --bg-glass: rgba(22, 33, 62, 0.6);
    --border-color: rgba(56, 189, 248, 0.12);
    --border-glass: rgba(56, 189, 248, 0.18);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-blue: #0ea5e9;
    --accent-purple: #06b6d4;
    --accent-gradient: linear-gradient(135deg, #0ea5e9, #06b6d4);
    --accent-gradient-hover: linear-gradient(135deg, #0284c7, #0891b2);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.45);
    --glow: 0 0 20px rgba(14, 165, 233, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.35);
}
.btn-primary:hover {
    background: var(--accent-gradient-hover);
    box-shadow: 0 6px 25px rgba(14, 165, 233, 0.45);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}
.btn-outline:hover {
    border-color: var(--accent-blue);
    background: rgba(14, 165, 233, 0.1);
}

.btn-ghost { background: transparent; color: var(--text-secondary); }
.btn-ghost:hover { color: var(--text-primary); }

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

.btn-success { background: var(--success); color: white; }
.btn-danger { background: var(--danger); color: white; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo { display: flex; align-items: baseline; font-size: 22px; font-weight: 800; }
.logo-teklif { color: #f1f5f9; }
.logo-yolla { background: linear-gradient(135deg, #0ea5e9, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-dot { color: var(--text-muted); font-size: 16px; }

.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-secondary); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text-primary); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.mobile-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 20px; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; padding: 16px 24px; gap: 12px; background: var(--bg-secondary); border-bottom: 1px solid var(--border-color); }
.mobile-menu a { color: var(--text-secondary); padding: 8px 0; font-size: 15px; }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 8px; padding-top: 12px; border-top: 1px solid var(--border-color); }

/* ===== HERO SECTION ===== */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.hero-badge::before { content: '✦'; }

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-search {
    display: flex;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 6px;
    box-shadow: var(--shadow);
}

.hero-search input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: 15px;
    outline: none;
}
.hero-search input::placeholder { color: var(--text-muted); }

.hero-search .btn { border-radius: var(--radius-sm); }

.hero-features {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}
.hero-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}
.hero-features span::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

/* ===== OFFER DEMO PANEL ===== */
.offer-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.offer-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.offer-panel-header h3 { font-size: 16px; font-weight: 600; }
.offer-panel-header .badge-count {
    background: rgba(14, 165, 233, 0.2);
    color: var(--accent-blue);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.offer-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(15, 20, 40, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    transition: var(--transition);
}
.offer-card:hover { border-color: var(--accent-blue); box-shadow: var(--glow); }

.offer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
}

.offer-info { flex: 1; min-width: 0; }
.offer-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.offer-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.offer-meta .star { color: var(--warning); }
.offer-meta .verified { color: var(--success); font-size: 11px; background: rgba(16, 185, 129, 0.1); padding: 2px 6px; border-radius: 4px; }
.offer-desc { font-size: 12px; color: var(--text-secondary); margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.offer-price { text-align: right; flex-shrink: 0; }
.offer-price .amount { font-size: 16px; font-weight: 700; color: var(--text-primary); }
.offer-price .days { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.offer-price .btn { margin-top: 8px; font-size: 11px; padding: 5px 12px; }

.offer-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
.offer-summary-item { text-align: center; }
.offer-summary-item .label { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.offer-summary-item .value { font-size: 16px; font-weight: 700; color: var(--accent-blue); }

/* ===== HOW IT WORKS ===== */
.section { padding: 80px 0; }
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.step-card:hover { border-color: var(--accent-blue); transform: translateY(-4px); box-shadow: var(--glow); }

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-blue);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card h3 { font-size: 18px; margin-bottom: 10px; }
.step-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

/* ===== CATEGORIES ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}
.category-card:hover { border-color: var(--accent-blue); transform: translateY(-4px); box-shadow: var(--glow); }

.category-icon {
    width: 56px;
    height: 56px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent-blue);
}

.category-card h3 { font-size: 14px; font-weight: 600; }

/* ===== CARDS GRID ===== */
.cards-section { padding: 60px 0; }
.cards-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.cards-header h2 { font-size: 20px; font-weight: 700; }
.cards-header a { color: var(--accent-blue); font-size: 14px; font-weight: 500; }
.cards-header a:hover { text-decoration: underline; }

.request-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    transition: var(--transition);
}
.request-card:hover { border-color: var(--accent-blue); }

.request-card .req-icon {
    width: 40px;
    height: 40px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.request-card .req-info { flex: 1; }
.request-card .req-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.request-card .req-info p { font-size: 12px; color: var(--text-muted); }
.request-card .req-time { font-size: 11px; color: var(--text-muted); white-space: nowrap; }

.provider-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    transition: var(--transition);
}
.provider-card:hover { border-color: var(--accent-blue); }

.provider-card .prov-logo {
    width: 44px;
    height: 44px;
    background: var(--accent-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: white;
    flex-shrink: 0;
}

.provider-card .prov-info { flex: 1; }
.provider-card .prov-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.provider-card .prov-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.provider-card .prov-city { font-size: 12px; color: var(--text-muted); }

.review-card {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
}
.review-card .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-card .review-avatar { width: 36px; height: 36px; background: var(--accent-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
.review-card .review-name { font-size: 14px; font-weight: 600; }
.review-card .review-stars { color: var(--warning); font-size: 12px; }
.review-card .review-text { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
}
.cta-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(6, 182, 212, 0.05));
    pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }
.cta-content .cta-label { color: var(--accent-blue); font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.cta-content h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.cta-content h2 .gradient-text { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-content p { color: var(--text-secondary); margin-bottom: 24px; font-size: 15px; }
.cta-features { list-style: none; margin-bottom: 28px; }
.cta-features li { display: flex; align-items: center; gap: 10px; padding: 6px 0; color: var(--text-secondary); font-size: 14px; }
.cta-features li i { color: var(--accent-blue); }
.cta-actions { display: flex; gap: 12px; }

.cta-image { position: relative; z-index: 1; }
.cta-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ===== STATS ===== */
.stats-section { padding: 60px 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-item .stat-value { font-size: 32px; font-weight: 800; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-item .stat-label { font-size: 14px; color: var(--text-secondary); margin-top: 4px; }

/* ===== TRUST BAR ===== */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}
.trust-bar span { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.trust-bar span i { color: var(--accent-blue); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--text-secondary); }
.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    font-family: var(--font);
    transition: var(--transition);
    outline: none;
}
.form-control:focus { border-color: var(--accent-blue); box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { min-height: 100px; resize: vertical; }
select.form-control { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== AUTH PAGES ===== */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
}
.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.auth-card h1 { font-size: 24px; font-weight: 700; margin-bottom: 8px; text-align: center; }
.auth-card .auth-subtitle { text-align: center; color: var(--text-secondary); margin-bottom: 30px; font-size: 14px; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-secondary); }
.auth-footer a { color: var(--accent-blue); font-weight: 500; }

/* ===== ALERTS ===== */
.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    margin: 80px auto 0;
    max-width: 1280px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    animation: slideDown 0.3s ease;
}
.alert-success { background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.3); color: var(--success); }
.alert-error { background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.3); color: var(--danger); }

@keyframes slideDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p { color: var(--text-secondary); font-size: 14px; margin-top: 12px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; background: rgba(14, 165, 233, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); font-size: 14px; }
.footer-social a:hover { background: var(--accent-blue); color: white; }

.footer-links h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer-links a { display: block; color: var(--text-secondary); font-size: 13px; padding: 4px 0; }
.footer-links a:hover { color: var(--accent-blue); }

.footer-bottom { padding-top: 30px; border-top: 1px solid var(--border-color); text-align: center; }
.footer-trust { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-trust span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.footer-trust span i { color: var(--accent-blue); }
.footer-payments { display: flex; justify-content: center; gap: 16px; margin-bottom: 16px; align-items: center; }
.footer-payments img { opacity: 0.6; height: 24px; }
.footer-copyright { color: var(--text-muted); font-size: 13px; }

/* ===== DASHBOARD ===== */
.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    padding-top: 72px;
}

.sidebar {
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    padding: 24px 16px;
    position: sticky;
    top: 72px;
    height: calc(100vh - 72px);
    overflow-y: auto;
}

.sidebar-menu { list-style: none; }
.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.sidebar-menu li a:hover { background: rgba(14, 165, 233, 0.1); color: var(--text-primary); }
.sidebar-menu li a.active { background: rgba(14, 165, 233, 0.15); color: var(--accent-blue); }
.sidebar-menu li a i { width: 20px; text-align: center; }

.dashboard-content { padding: 30px; }

.dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dash-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
}
.dash-stat-card .stat-label { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.dash-stat-card .stat-value { font-size: 28px; font-weight: 700; }
.dash-stat-card .stat-icon { float: right; width: 40px; height: 40px; background: rgba(14, 165, 233, 0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--accent-blue); }

/* ===== TABLE ===== */
.table-container { overflow-x: auto; }
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.data-table th { padding: 12px 16px; text-align: left; font-weight: 600; color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid var(--border-color); }
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); }
.data-table tr:hover td { background: rgba(14, 165, 233, 0.03); }

/* ===== BADGES ===== */
.badge { display: inline-flex; align-items: center; padding: 3px 8px; border-radius: 4px; font-size: 11px; 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(--accent-blue); }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 24px; }
.pagination a, .pagination span { padding: 8px 14px; border-radius: var(--radius-sm); font-size: 14px; border: 1px solid var(--border-color); color: var(--text-secondary); }
.pagination a:hover { border-color: var(--accent-blue); color: var(--accent-blue); }
.pagination .active { background: var(--accent-gradient); color: white; border-color: transparent; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .offer-panel { display: none; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .three-col-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .cta-box { grid-template-columns: 1fr; padding: 40px; }
    .cta-image { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .dash-stats { grid-template-columns: repeat(2, 1fr); }
    .dashboard-layout { grid-template-columns: 1fr; }
    .sidebar { display: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .mobile-toggle { display: block; }
    .mobile-menu.active { display: flex; }

    .hero { padding: 110px 0 50px; }
    .hero h1 { font-size: 32px; }
    .hero-desc { font-size: 15px; }
    .hero-search { flex-direction: column; }
    .hero-features { flex-direction: column; gap: 8px; }
    
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .three-col-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 24px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .trust-bar { flex-wrap: wrap; gap: 20px; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .dash-stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 28px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .category-card { padding: 20px 12px; }
}
