/* page-hero stili style.css'te */

/* ===== DRIVER SECTION ===== */
.driver-section {
    padding: 60px 0 80px;
    background: var(--light) !important;
}

.driver-category {
    margin-bottom: 30px;
    padding: 30px;
    border: 1px solid var(--light-2);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-light);
}

.driver-category:last-child {
    margin-bottom: 0;
}

.dc-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
}

.dc-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.dc-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.dc-header p {
    font-size: 14px;
    color: var(--gray);
}

.dc-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--light);
    border: 1px solid var(--light-2);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 20px;
}

/* Split Layout */
.dc-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dc-half {
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dc-half h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dc-driver {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.dc-driver h5 {
    color: #dc2626;
}

.dc-program {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.dc-program h5 {
    color: #2563eb;
}

.dc-empty {
    font-size: 13px;
    color: var(--gray);
    font-style: italic;
    padding: 12px 0;
}

/* Driver Card */

.driver-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--light);
    border: 1px solid var(--light-2);
    border-radius: 12px;
    transition: var(--transition);
}

.driver-card:hover {
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.drv-icon {
    width: 42px;
    height: 42px;
    background: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 17px;
    flex-shrink: 0;
}

.drv-info {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.drv-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    white-space: nowrap;
}

.drv-meta {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.drv-meta i {
    font-size: 10px;
}

.drv-btn {
    padding: 8px 16px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0, 102, 255, 0.2);
    transition: var(--transition);
    flex-shrink: 0;
}

.drv-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .dc-split { grid-template-columns: 1fr; }
    .dc-header h2 { font-size: 20px; }
    .driver-card { flex-wrap: wrap; }
    .drv-btn { width: 100%; justify-content: center; }
}
