@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --orange: #FF6B1A;
    --orange-light: #FF8C4A;
    --orange-glow: rgba(255, 107, 26, 0.25);
    --dark: #0F0F0F;
    --dark2: #1A1A1A;
    --dark3: #242424;
    --dark4: #2E2E2E;
    --gray: #888;
    --gray-light: #555;
    --white: #FFFFFF;
    --text: #E8E8E8;
    --green: #22C55E;
    --yellow: #F59E0B;
    --red: #EF4444;
    --blue: #3B82F6;
    --violet: #A855F7;
    --gold: #F59E0B;
    --primary: #FF6B1A;
    --light: #2E2E2E;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body { height: 100%; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    display: flex;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    overscroll-behavior-y: none;
}

.app-container {
    width: 100%;
    max-width: 450px;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: var(--dark2);
    margin: 0 auto;
}

.app-header { display: none; }

.content {
    padding: 0;
    flex: 1;
    width: 100%;
    background: transparent;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 80px;
}

/* ===== BOTTOM NAV ===== */
.bottom-nav {
    background: rgba(26,26,26,0.97);
    position: absolute;
    bottom: 0; left: 0; right: 0;
    width: 100%;
    display: flex;
    padding: 10px 0 22px;
    border-top: 1px solid rgba(255,255,255,0.06);
    z-index: 1000;
    backdrop-filter: blur(20px);
}
.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--gray);
    font-size: 9px;
    font-weight: 600;
    font-family: 'Syne', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
}
.nav-item.active { color: var(--orange); }
.nav-item.active i { filter: drop-shadow(0 0 6px var(--orange)); }
.nav-item i { font-size: 22px; margin-bottom: 1px; }
.nav-badge {
    position: absolute;
    top: -4px; right: 18%;
    min-width: 17px; height: 17px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    border: 2px solid var(--dark2);
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 9px;
    font-weight: bold;
    padding: 2px;
}
.nav-badge.visible { display: flex; }

/* ===== LOGIN SCREEN ===== */
.login-screen {
    min-height: 100vh;
    padding: 60px 24px 40px;
    display: flex;
    flex-direction: column;
}
.login-logo {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 8px;
}
.login-logo span { color: var(--orange); }
.login-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 40px;
}
.login-title {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
}

/* ===== INPUTS ===== */
input, textarea, select {
    width: 100%;
    padding: 15px 16px;
    margin-bottom: 10px;
    background: var(--dark3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-glow);
}
input::placeholder, textarea::placeholder { color: var(--gray); }
select option { background: var(--dark3); color: var(--white); }

input[type="datetime-local"] {
    color: var(--orange);
    font-weight: 600;
    background: var(--dark3);
    appearance: none;
    -webkit-appearance: none;
}
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.5);
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    width: 100%;
    margin-top: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(255,107,26,0.35);
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:active { transform: scale(0.98); box-shadow: 0 3px 10px rgba(255,107,26,0.3); }

.btn-google {
    background: var(--dark3);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px;
    border-radius: 14px;
    width: 100%;
    margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.btn-google:active { background: var(--dark4); }
.google-icon { width: 20px; height: 20px; }

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text);
    padding: 14px;
    border-radius: 14px;
    width: 100%;
    margin-top: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: block;
    text-align: center;
    transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-show-contacts { background: var(--green); color: white; border: none; padding: 15px; border-radius: 12px; width: 100%; font-weight: bold; margin-top: 10px; cursor: pointer; }
.btn-chat { background: var(--blue); color: white; border: none; padding: 12px; border-radius: 12px; width: 100%; font-weight: bold; margin-top: 5px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 5px; }
.btn-rate { background: var(--gold); color: #111; border: none; padding: 12px; border-radius: 12px; width: 100%; font-weight: bold; margin-top: 10px; cursor: pointer; }
.btn-complete { background: var(--violet); color: white; border: none; padding: 12px; border-radius: 12px; width: 100%; font-weight: bold; margin-top: 10px; cursor: pointer; }
.btn-delete { color: var(--red); cursor: pointer; padding: 5px; background: none; border: none; }
.btn-invite { background: var(--dark3); color: white; border: 1px solid rgba(255,255,255,0.1); padding: 10px; border-radius: 10px; width: 100%; font-weight: bold; cursor: pointer; margin-top: 10px; }
.btn-halturke { background: var(--orange); color: white; font-weight: bold; border: none; padding: 12px; border-radius: 10px; width: 100%; cursor: pointer; margin-top: 10px; }

/* ===== CARDS ===== */
.card {
    background: var(--dark3);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    width: 100%;
}
.card.status-open { border-left: 4px solid var(--gray-light); }
.card.status-pending { border-left: 4px solid var(--red); background: rgba(239,68,68,0.06); }
.card.status-sent { border-left: 4px solid var(--blue); background: rgba(59,130,246,0.06); }
.card.status-accepted { border-left: 4px solid var(--green); background: rgba(34,197,94,0.06); }
.card.status-completed { border-left: 4px solid var(--violet); background: rgba(168,85,247,0.06); }
.card.status-reviewed { border-left: 4px solid var(--gold); background: rgba(245,158,11,0.06); }
.card.status-rejected { border-left: 4px solid var(--red); opacity: 0.5; }

.card-header { display: flex; justify-content: space-between; align-items: flex-start; width: 100%; }
.badge { padding: 4px 8px; border-radius: 6px; font-size: 10px; font-weight: 800; text-transform: uppercase; background: var(--dark4); color: var(--gray); }
.status-msg { font-size: 13px; color: var(--gray); margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.06); }

/* ===== HOME SCREEN ===== */
.home-header {
    padding: 52px 20px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home-logo {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}
.home-logo span { color: var(--orange); }
.notif-btn {
    width: 40px; height: 40px;
    background: var(--dark3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.06);
}
.notif-dot {
    position: absolute;
    top: 8px; right: 8px;
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    border: 2px solid var(--dark2);
}
.home-greeting { padding: 0 20px; font-size: 13px; color: var(--gray); margin-bottom: 6px; }
.home-title {
    padding: 0 20px;
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
}
.home-title .hl { color: var(--orange); }

/* VOICE BUTTON */
.voice-container {
    margin: 0 16px 24px;
    background: linear-gradient(135deg, var(--dark3), #1e1e1e);
    border-radius: 24px;
    padding: 28px 20px;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.voice-container::before {
    content: '';
    position: absolute;
    top: -40px; left: 50%;
    transform: translateX(-50%);
    width: 180px; height: 180px;
    background: radial-gradient(circle, var(--orange-glow), transparent 70%);
    pointer-events: none;
}
.voice-btn {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 14px;
    position: relative;
    box-shadow: 0 0 30px var(--orange-glow), 0 6px 20px rgba(255,107,26,0.4);
    animation: voicePulse 2s ease-in-out infinite;
}
@keyframes voicePulse {
    0%, 100% { box-shadow: 0 0 30px var(--orange-glow), 0 6px 20px rgba(255,107,26,0.4); transform: scale(1); }
    50% { box-shadow: 0 0 50px var(--orange-glow), 0 6px 28px rgba(255,107,26,0.5); transform: scale(1.05); }
}
.voice-rings { position: absolute; width: 72px; height: 72px; border-radius: 50%; }
.voice-rings::before, .voice-rings::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255,107,26,0.2);
    animation: voiceRing 2s ease-out infinite;
}
.voice-rings::before { top: -14px; left: -14px; right: -14px; bottom: -14px; animation-delay: 0s; }
.voice-rings::after { top: -28px; left: -28px; right: -28px; bottom: -28px; animation-delay: 0.5s; }
@keyframes voiceRing {
    0% { opacity: 0.5; transform: scale(0.9); }
    100% { opacity: 0; transform: scale(1.3); }
}
.voice-label {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.voice-sub { font-size: 12px; color: var(--gray); }

/* SECTION */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}
.section-link { font-size: 12px; color: var(--orange); cursor: pointer; }

/* QUICK CATEGORIES GRID */
.quick-cats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 0 16px;
    margin-bottom: 24px;
}
.quick-cat-item {
    background: var(--dark3);
    border-radius: 14px;
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: all 0.2s;
}
.quick-cat-item:active { border-color: var(--orange); background: rgba(255,107,26,0.08); transform: scale(0.97); }
.quick-cat-item i { font-size: 22px; color: var(--orange); }
.quick-cat-item span { font-size: 10px; color: var(--gray); text-align: center; font-weight: 500; }

/* NEARBY MASTERS SCROLL */
.masters-scroll {
    display: flex;
    gap: 12px;
    padding: 0 16px;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 20px;
}
.masters-scroll::-webkit-scrollbar { display: none; }
.master-card-h {
    min-width: 150px;
    background: var(--dark3);
    border-radius: 18px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0;
    cursor: pointer;
    transition: border-color 0.2s;
}
.master-card-h:active { border-color: rgba(255,107,26,0.4); }
.master-avatar-h {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), #ff9955);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 10px;
    position: relative;
}
.status-dot {
    position: absolute;
    bottom: -2px; right: -2px;
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid var(--dark3);
}
.status-dot.green { background: var(--green); }
.status-dot.yellow { background: var(--yellow); }
.status-dot.red { background: var(--red); }
.mh-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.mh-spec { font-size: 11px; color: var(--gray); margin-bottom: 8px; }
.mh-meta { display: flex; justify-content: space-between; }
.mh-rating { font-size: 11px; color: var(--yellow); font-weight: 600; }
.mh-dist { font-size: 10px; color: var(--gray); }
.mh-price { font-size: 11px; color: var(--orange); font-weight: 600; margin-top: 5px; }

/* PROMO BANNER */
.promo-banner {
    background: linear-gradient(135deg, var(--dark3), var(--dark4));
    color: white;
    border-radius: 16px;
    padding: 14px 16px;
    margin: 0 16px 16px;
    cursor: pointer;
    border: 1px solid rgba(255,107,26,0.3);
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    gap: 14px;
}
.promo-banner:active { transform: scale(0.98); }
.promo-logo-img { width: 60px; height: 60px; object-fit: contain; flex-shrink: 0; }
.promo-content { flex: 1; }
.promo-content p { margin: 0 0 8px; font-size: 13px; opacity: 0.9; line-height: 1.4; }

/* ===== ROLE CARDS ===== */
.big-role-card {
    padding: 24px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    text-align: center;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--dark3);
    color: var(--white);
}
.big-role-card:active { transform: scale(0.98); border-color: var(--orange); }
.big-role-card i { font-size: 40px; margin-bottom: 10px; display: block; color: var(--orange); }
.big-role-card h3 { margin: 0; font-size: 18px; font-family: 'Syne', sans-serif; }
.big-role-card p { opacity: 0.6; margin: 5px 0 0; font-size: 13px; }
.card-client { border-color: rgba(255,107,26,0.3); }
.card-master { border-color: rgba(59,130,246,0.3); }

.role-selector { display: flex; gap: 10px; margin-bottom: 15px; }
.role-card {
    flex: 1;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    transition: all 0.2s;
    background: var(--dark3);
    color: var(--gray);
}
.role-card.selected { border-color: var(--orange); background: rgba(255,107,26,0.1); color: var(--orange); }

/* ===== CATALOG CARDS ===== */
.master-card {
    background: var(--dark3);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
.master-card-header { display: flex; align-items: center; gap: 12px; width: 100%; margin-bottom: 12px; text-align: left; cursor: pointer; }
.master-avatar { width: 56px; height: 56px; border-radius: 14px; object-fit: cover; border: 2px solid var(--orange); }
.master-info h4 { margin: 0; font-size: 15px; font-family: 'Syne', sans-serif; color: var(--white); }
.master-info p { margin: 2px 0 0; font-size: 12px; color: var(--gray); }
.master-rating { color: var(--yellow); font-weight: bold; font-size: 13px; }

/* PORTFOLIO */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 10px; width: 100%; }
.portfolio-item { position: relative; width: 100%; padding-top: 100%; }
.portfolio-item img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 10px; cursor: pointer; }
.delete-img { position: absolute; top: 4px; right: 4px; background: rgba(239,68,68,0.9); color: white; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; cursor: pointer; }

.modal-portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-bottom: 20px; }
.modal-portfolio-item { position: relative; width: 100%; padding-top: 100%; }
.modal-portfolio-item img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 10px; cursor: pointer; }

/* ===== HALTURKES ===== */
.halturke-card { border: 1px solid rgba(59,130,246,0.3); background: rgba(59,130,246,0.06); padding: 15px; border-radius: 14px; margin-bottom: 14px; position: relative; }
.halturke-time { background: var(--blue); color: white; padding: 4px 10px; border-radius: 8px; font-size: 12px; font-weight: bold; display: inline-block; margin-bottom: 6px; }
.halturke-desc { font-weight: bold; font-size: 15px; margin: 5px 0; color: var(--white); }

/* ===== OFFER / JOB ITEMS ===== */
.offer-item { border: 1px solid rgba(255,255,255,0.07); padding: 14px; border-radius: 14px; margin-top: 10px; background: var(--dark3); }
.offer-row { display: flex; justify-content: space-between; align-items: center; }
.master-profile-click { display: flex; align-items: center; gap: 10px; cursor: pointer; flex: 1; }
.contact-box { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.3); padding: 14px; border-radius: 12px; margin-top: 10px; color: var(--white); }

/* ===== CHAT ===== */
.chat-bubble { background: var(--dark3); padding: 10px 14px; border-radius: 14px; margin-bottom: 6px; font-size: 14px; color: var(--text); }
.chat-bubble.master { background: rgba(59,130,246,0.12); border-left: 3px solid var(--blue); }
.chat-bubble.client { background: rgba(255,107,26,0.1); border-right: 3px solid var(--orange); text-align: right; }
.chat-option { padding: 12px; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; margin-bottom: 6px; cursor: pointer; text-align: left; background: var(--dark3); color: var(--text); transition: 0.2s; }
.chat-option:hover { border-color: var(--orange); }
.chat-warning { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); color: var(--yellow); padding: 10px; font-size: 12px; border-radius: 10px; margin-bottom: 10px; }
#chatInput { background: var(--dark3); border: 1px solid rgba(255,255,255,0.08); color: var(--white); border-radius: 12px; resize: none; }

/* ===== FILTERS ===== */
.filter-section { background: var(--dark3); border: 1px solid rgba(255,255,255,0.06); padding: 14px; border-radius: 14px; margin-bottom: 12px; }
.filter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.filter-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text); }
.section-header { font-size: 14px; font-weight: bold; margin: 14px 0 10px; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 8px; color: var(--text); font-family: 'Syne', sans-serif; }

/* ===== REVIEWS ===== */
.review-card { background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.2); padding: 12px; border-radius: 12px; margin-bottom: 10px; font-size: 14px; color: var(--text); }
.profile-pic { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--orange); display: block; margin: 0 auto 12px auto; }
.reviewer-info { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; font-weight: bold; font-size: 12px; color: var(--text); }
.reviewer-img { width: 38px !important; height: 38px !important; min-width: 38px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,0.1); margin-right: 8px; }
.reviews-list-container { margin-top: 16px; max-height: 400px; overflow-y: auto; }
.reviews-title { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 16px; margin-top: 16px; font-size: 17px; font-weight: bold; color: var(--white); font-family: 'Syne', sans-serif; }

/* ===== MODAL ===== */
.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); display: none; justify-content: center; align-items: center; z-index: 2000; }
.modal-content { background: var(--dark2); width: 90%; max-width: 360px; padding: 24px; border-radius: 20px; max-height: 80vh; overflow-y: auto; border: 1px solid rgba(255,255,255,0.08); }

/* ===== TOAST ===== */
.toast { position: fixed; top: -100px; left: 50%; transform: translateX(-50%); background: var(--dark3); color: var(--white); padding: 12px 24px; border-radius: 50px; box-shadow: 0 8px 24px rgba(0,0,0,0.4); z-index: 3000; font-weight: bold; transition: top 0.3s; width: 85%; text-align: center; border: 1px solid rgba(255,255,255,0.1); font-size: 14px; }
.toast.visible { top: 20px; }

/* ===== RATING ===== */
.rating-stars { display: flex; justify-content: center; font-size: 35px; color: var(--dark4); margin: 15px 0; cursor: pointer; }
.rating-stars span.active { color: var(--gold); }

/* ===== CAT GRID (old) ===== */
.cat-section-title { font-size: 15px; font-weight: 700; margin: 16px 0 12px; color: var(--white); font-family: 'Syne', sans-serif; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.cat-item { background: var(--dark3); padding: 14px 6px; border-radius: 14px; text-align: center; cursor: pointer; transition: all 0.15s; border: 1px solid rgba(255,255,255,0.05); }
.cat-item:active { transform: scale(0.95); border-color: var(--orange); }
.cat-item i { font-size: 24px; color: var(--orange); margin-bottom: 6px; display: block; }
.cat-item span { font-size: 11px; font-weight: 600; color: var(--gray); display: block; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.96); z-index: 9999; display: none; justify-content: center; align-items: center; flex-direction: column; }
.lightbox img { max-width: 95%; max-height: 80%; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 20px; color: white; font-size: 28px; cursor: pointer; background: rgba(255,255,255,0.12); width: 40px; height: 40px; border-radius: 50%; display: flex; justify-content: center; align-items: center; }

/* ===== PHOTO GALLERY ===== */
.photo-gallery { display: flex; gap: 8px; overflow-x: auto; margin-top: 10px; }
.gallery-img { height: 90px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.08); cursor: pointer; transition: transform 0.2s; }
.gallery-img:active { transform: scale(0.95); }

/* ===== JOB SELECT ===== */
.job-select-item { padding: 14px; border: 1px solid rgba(255,107,26,0.25); border-radius: 12px; margin-bottom: 10px; cursor: pointer; transition: 0.2s; background: var(--dark3); display: flex; justify-content: space-between; align-items: center; color: var(--text); }
.job-select-item:hover { background: rgba(255,107,26,0.08); border-color: var(--orange); }
.job-select-item i { color: var(--orange); }

/* ===== PICKER / MULTI-PICKER ===== */
.picker-list { max-height: 60vh; overflow-y: auto; }
.picker-header { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); padding: 10px 4px 6px; }
.picker-item { padding: 12px 8px; border-radius: 10px; cursor: pointer; display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 14px; transition: background 0.15s; }
.picker-item:hover, .picker-item:active { background: rgba(255,107,26,0.08); }
.picker-item i { color: var(--orange); font-size: 18px; }
.multi-select-btn { background: var(--dark3); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; color: var(--text); margin-bottom: 10px; }
.multi-item { padding: 12px; border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; margin-bottom: 6px; cursor: pointer; display: flex; align-items: center; gap: 10px; color: var(--text); transition: 0.15s; }
.multi-item.selected { background: rgba(255,107,26,0.1); border-color: var(--orange); color: var(--orange); }

/* ===== DATE INPUT ===== */
.date-input-group { background: var(--dark3); padding: 12px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); margin-bottom: 10px; display: flex; flex-direction: column; }
.date-input-label { font-size: 11px; font-weight: 700; color: var(--gray); text-transform: uppercase; margin-bottom: 5px; }

/* ===== CALC ===== */
.calc-result-box { background: rgba(59,130,246,0.08); padding: 20px; border-radius: 14px; margin-top: 14px; text-align: center; border: 1px solid rgba(59,130,246,0.25); }
.calc-price { font-size: 28px; font-weight: bold; color: var(--blue); display: block; margin: 10px 0; font-family: 'Syne', sans-serif; }

/* ===== ADMIN ===== */
.admin-zone { background: rgba(245,158,11,0.06); color: var(--white); padding: 16px; border-radius: 14px; margin-bottom: 16px; border: 1px solid rgba(245,158,11,0.3); }

/* ===== UI DIALOG ===== */
.ui-dialog { background: var(--dark2); border-radius: 18px; padding: 20px; max-width: 420px; width: 92%; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.08); }
.ui-title { font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 8px; font-family: 'Syne', sans-serif; }
.ui-msg { font-size: 14px; color: var(--gray); margin-bottom: 14px; line-height: 1.4; }
.ui-input { width: 100%; padding: 12px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); background: var(--dark3); color: var(--white); outline: none; font-size: 14px; margin-bottom: 14px; }
.ui-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow); }
.ui-actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ===== GENERAL CONTENT PADDING ===== */
.content-pad { padding: 0 16px; }

@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.02); } 100% { transform: scale(1); } }
