/* assets/style.css */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: #f4f7f6;
    color: #333;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header { background: #2c3e50; color: white; padding: 15px 0; }
.header__container { display: flex; justify-content: space-between; align-items: center; }
.logo-link { color: #f39c12; font-size: 1.5rem; font-weight: bold; text-decoration: none; }
.header__nav { display: flex; gap: 20px; align-items: center; }
.header__link { color: white; text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.header__link:hover { opacity: 0.8; }
.header__link--btn { padding: 8px 15px; background: #f39c12; color: #2c3e50; border-radius: 5px; font-weight: bold; }

/* Цветные иконки навигации */
.nav-icon { margin-right: 6px; }
.link-orders { color: #2ecc71 !important; }   /* Зеленый */
.link-services { color: #3498db !important; } /* Синий */
.link-users { color: #f39c12 !important; }    /* Оранжевый */

/* Hero */
.hero {
    height: 400px;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), 
                url('/assets/img/hero-bg.jpg') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center; color: white;
}
.hero__title { font-size: 3rem; margin-bottom: 10px; }

/* Современные таблицы */
.modern-table { 
    width: 100%; border-collapse: separate; border-spacing: 0; 
    background: white; border-radius: 12px; overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin: 30px 0; 
}
.modern-table th { background: #2c3e50; color: white; padding: 15px; text-align: left; font-size: 0.9rem; }
.modern-table td { padding: 15px; border-bottom: 1px solid #eee; }
.modern-table tr:hover { background: #f9f9f9; }

/* Бейджи */
.badge { padding: 5px 12px; border-radius: 50px; font-size: 0.8rem; font-weight: bold; }
.badge-pending { background: #fff3cd; color: #856404; }
.badge-completed { background: #d4edda; color: #155724; }
.badge-new { background: #cce5ff; color: #004085; }

/* Сетки и карточки */
.services__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; padding: 50px 0; }
.card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.card__img { width: 100%; height: 200px; object-fit: cover; }
.card__body { padding: 20px; }

/* Кнопки */
.btn { display: inline-block; padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: bold; border: none; cursor: pointer; text-align: center; transition: 0.3s; }
.btn--order { background: #27ae60; color: white; width: 100%; }
.btn--add { background: #3498db; color: white; }
.btn--auth { background: #f39c12; color: white; width: 100%; padding: 14px; margin-top: 10px; font-size: 1.1rem; }
.btn--auth:hover { background: #e67e22; transform: translateY(-2px); }
.btn-small { padding: 5px 10px; font-size: 0.85rem; }

/* Формы */
.auth-body { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    min-height: 100vh; 
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); 
}

.auth-box { 
    background: white; 
    padding: 40px; 
    border-radius: 15px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.2); 
    width: 100%; 
    max-width: 420px; 
    text-align: center;
}

.auth-group {
    text-align: left;
    margin-bottom: 20px;
    position: relative;
}

.auth-group i {
    position: absolute;
    left: 12px;
    top: 40px;
    color: #95a5a6;
}

.auth-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.auth-input { 
    width: 100%; 
    padding: 12px 12px 12px 35px;
    border: 2px solid #ecf0f1; 
    border-radius: 8px; 
    font-size: 1rem;
    transition: 0.3s;
}

.auth-input:focus {
    border-color: #f39c12;
    outline: none;
}

/* Callback */
.callback-section { background: #2c3e50; color: white; padding: 60px 0; text-align: center; }
.callback-form { margin-top: 25px; display: flex; justify-content: center; gap: 10px; }
.callback-form input { padding: 12px; border-radius: 5px; border: none; width: 300px; }