* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --bg-dark: #121214;
    --bg-card: #1c1c1f;
    --primary: #ffb703;
    --primary-hover: #fb8500;
    --text-light: #f8f9fa;
    --text-muted: #adb5bd;
    --success: #2a9d8f;
    --danger: #e63946;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    padding-top: 70px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(28, 28, 31, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #2a2a30;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 1000;
}

.logo {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.admin-login-btn {
    background: none;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}

.admin-login-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary);
    color: #000;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px;
    background-color: #222226;
    border: 1px solid #3a3a42;
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #2a2a30;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

footer {
    text-align: center;
    padding: 30px;
    color: #6c757d;
    font-size: 0.85rem;
    background-color: #0b0b0c;
    border-top: 1px solid #2a2a30;
    margin-top: 50px;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #2a2a30;
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 6px;
}

.tab-btn:hover {
    color: var(--primary);
    background-color: rgba(255, 183, 3, 0.05);
}

.tab-btn.active {
    color: #000;
    background-color: var(--primary);
    box-shadow: 0 4px 12px rgba(255, 183, 3, 0.2);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.approved-reviews-list {
    margin-top: 20px;
}

.approved-review-item {
    background-color: #1c1c1f;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #2a2a30;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* NOWE PROFILE DRAG AND DROP DLA PRZESUWANIA PLIKÓW */
.drop-zone {
    width: 100%;
    height: 150px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    cursor: pointer;
    color: var(--text-muted);
    border: 2px dashed #3a3a42;
    border-radius: 8px;
    background-color: #1c1c1f;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.drop-zone:hover, .drop-zone.drag-over {
    border-color: var(--primary);
    background-color: rgba(255, 183, 3, 0.02);
    color: var(--primary);
}

.drop-zone-thumb {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    background-color: #222;
    background-size: cover;
    background-position: center;
    position: relative;
}

.review-img, .service-img-loaded {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid #2a2a30;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .cta-button { width: 100%; justify-content: center; }
}
